:root {
            --primary-blue: #0033a0;
            --accent-yellow: #ffcc00;
            --secondary-gold: #d4af37;
            --dark-bg: #0a1f2e;
            --light-bg: #f8f9fa;
            --text-dark: #222;
            --text-light: #f5f5f5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 10px;
            --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.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-yellow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), var(--primary-blue));
            color: var(--text-light);
            padding: 1rem 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-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-gold);
        }
        .breadcrumb {
            font-size: 0.9rem;
            padding: 1rem 0;
            background-color: #e9ecef;
            color: #666;
        }
        .breadcrumb a {
            color: var(--primary-blue);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--accent-yellow);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .hero {
            background: linear-gradient(rgba(10,31,46,0.85), rgba(10,31,46,0.9)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            color: var(--text-light);
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--accent-yellow);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent-yellow);
            color: var(--text-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1, h2, h3 {
            color: var(--primary-blue);
            margin: 1.8rem 0 1rem;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            background: linear-gradient(to right, var(--primary-blue), transparent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px 0 0 5px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-gold);
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            border-left: 5px solid var(--accent-yellow);
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .quote {
            border-left: 4px solid var(--secondary-gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-size: 1.1rem;
            color: #555;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            background-color: var(--dark-bg);
            color: white;
            padding: 0.8rem;
            border-radius: 5px;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .draw-schedule {
            list-style: none;
        }
        .draw-schedule li {
            padding: 0.8rem;
            border-bottom: 1px dashed #ddd;
            display: flex;
            justify-content: space-between;
        }
        .draw-schedule li:hover {
            background-color: #f0f8ff;
        }
        .interactive-section {
            background: linear-gradient(to bottom right, #e6f2ff, #ffffff);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border: 1px solid #cce5ff;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary-gold);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        button[type="submit"] {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background: var(--accent-yellow);
            color: var(--text-dark);
            transform: translateY(-3px);
        }
        .footer-links {
            background-color: #eef2f7;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--accent-yellow);
            transform: translateY(-3px);
        }
        .site-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.8rem;
        }
        .footer-links-list a {
            color: #ccc;
        }
        .footer-links-list a:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: var(--border-radius);
                margin-bottom: 0.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .interactive-section {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
