:root {
            --primary: #1a365d; 
            --secondary: #d32f2f; 
            --accent: #ffc107; 
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
            color: var(--light);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #999;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .countdown {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .countdown-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            min-width: 90px;
            backdrop-filter: blur(5px);
        }
        .countdown-box span {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: var(--light);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1, h2, h3 {
            color: var(--primary);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-left: 1rem;
            border-left: 5px solid var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--primary);
            background-color: #f0f8ff;
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid #ffeaa7;
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--secondary);
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: #f8f9fa;
            color: var(--gray);
            font-size: 0.95rem;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: var(--light);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--accent);
            margin-bottom: 1.5rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.15);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            background: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(211, 47, 47, 0.2);
        }
        .btn-primary {
            background: var(--primary);
        }
        .btn-primary:hover {
            background: #0d284c;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
            border-left-color: var(--secondary);
        }
        .web-link a {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .web-link a i {
            color: var(--gray);
            transition: var(--transition);
        }
        .web-link:hover a i {
            color: var(--secondary);
            transform: translateX(3px);
        }
        .site-footer {
            background: var(--primary);
            color: var(--light);
            padding-top: 3rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 3rem;
        }
        .footer-widget h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-widget h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #adb5bd;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.4s ease;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: var(--border-radius);
            }
            .countdown-box {
                min-width: 70px;
                padding: 1rem;
            }
            .countdown-box span {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            main article {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .countdown {
                gap: 0.8rem;
            }
            .countdown-box {
                min-width: 60px;
                padding: 0.8rem;
            }
            .countdown-box span {
                font-size: 1.7rem;
            }
        }
