        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a5276;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2874a6;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #3498db;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            color: #555;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Courier New', monospace;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #e74c3c;
        }
        .main-nav ul {
            display: flex;
            gap: 1.5rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .main-nav a:hover {
            background-color: #f1c40f;
            color: #1a5276;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f1c40f;
        }
        .breadcrumb {
            background-color: #e8f4fc;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d1d8e0;
        }
        .breadcrumb a {
            color: #3498db;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1590080667306-eb444a5c5c8a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            color: #f1c40f;
            border-bottom: none;
            font-size: 3rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 1rem auto 2rem;
            color: #ecf0f1;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            margin-bottom: 1rem;
            color: #1a5276;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2c3e50;
        }
        .form-control {
            padding: 0.8rem;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #2980b9, #1f618d);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-warning {
            background: linear-gradient(to right, #f1c40f, #f39c12);
        }
        .btn-warning:hover {
            background: linear-gradient(to right, #f39c12, #e67e22);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f39c12;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background: #f8f9fa;
            color: #7f8c8d;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: #e8f4fc;
            padding: 1rem;
            border-radius: 5px;
            border-left: 4px solid #3498db;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: #d6eaf8;
        }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: #f1c40f;
            padding-left: 5px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6572;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a5276;
                padding: 1rem;
                display: none;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-content, .widget {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 1.5rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .emoji {
            font-size: 1.2em;
        }
