        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --primary-blue: #0066cc;
            --accent-gold: #ffb700;
            --accent-red: #cc3333;
            --neutral-gray: #2a2a3a;
            --neutral-light: #f4f4f8;
            --text-primary: #e0e0f0;
            --text-secondary: #b0b0c8;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(180deg, rgba(10,10,18,0.95) 70%, transparent 100%);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neutral-gray);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--accent-gold);
            text-shadow: 0 0 15px rgba(255, 183, 0, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: var(--primary-blue);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--neutral-gray);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: inherit;
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--primary-dark) 70%);
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: var(--neutral-light);
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        .search-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #0052a3;
        }
        .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: rgba(42, 42, 58, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 1px solid var(--neutral-gray);
        }
        .article-section {
            margin-bottom: 3.5rem;
        }
        .article-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-red);
            color: #fff;
        }
        .article-section h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--accent-gold);
        }
        .article-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 183, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            margin: 2.5rem auto;
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
            border: 2px solid var(--neutral-gray);
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar-widget {
            background: rgba(42, 42, 58, 0.7);
            padding: 1.8rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 1px solid var(--neutral-gray);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 10px 0;
        }
        .star {
            color: var(--neutral-gray);
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--neutral-gray);
            background: var(--neutral-light);
            color: var(--primary-dark);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .submit-btn:hover {
            background: #0052a3;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 1px solid var(--neutral-gray);
            border-bottom: 1px solid var(--neutral-gray);
            margin-top: 4rem;
        }
        .web-link {
            background: rgba(42, 42, 58, 0.5);
            padding: 1.2rem;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(42, 42, 58, 0.9);
        }
        .web-link a {
            color: var(--text-primary);
            font-weight: 600;
            display: block;
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                padding: 2rem;
                border-top: 1px solid var(--neutral-gray);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .content-wrapper {
                padding: 1rem 0;
            }
            .main-article {
                padding: 1.8rem;
            }
            .article-section h2 {
                font-size: 1.9rem;
            }
        }
