:root {
            --primary-dark: #0a0a14;
            --primary-red: #c92a2a;
            --primary-blue: #1e40af;
            --accent-gold: #f59e0b;
            --text-light: #f8fafc;
            --text-gray: #cbd5e1;
            --bg-section: #111827;
            --border-color: #334155;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(180deg, rgba(10,10,20,0.95) 0%, rgba(10,10,20,0.85) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-section);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 10px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-light);
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: var(--bg-section);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: var(--accent-gold);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--primary-dark);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(135deg, var(--primary-red), #9c1c1c);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #d64545, var(--primary-red));
            transform: translateY(-2px);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--bg-section);
            border-radius: 16px;
            padding: 35px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        article h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--text-light);
            background: linear-gradient(90deg, #f8fafc, var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary-red);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin: 30px 0 15px;
        }
        article h4 {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        article strong {
            color: var(--text-light);
            font-weight: 700;
        }
        article em {
            color: var(--accent-gold);
            font-style: italic;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 25px 0;
            border: 3px solid var(--border-color);
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-left: 5px solid var(--primary-red);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: rgba(30, 64, 175, 0.2);
            color: #60a5fa;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(96, 165, 250, 0.3);
        }
        aside {
            background: var(--bg-section);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
        }
        .sidebar-links a:hover {
            color: var(--primary-red);
        }
        .sidebar-links i {
            color: var(--primary-red);
        }
        .interactive-section {
            background: var(--bg-section);
            border-radius: 16px;
            padding: 35px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .interactive-section h2 {
            color: var(--accent-gold);
            margin-bottom: 25px;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 8px;
        }
        .stars i {
            color: var(--text-gray);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-light);
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--primary-dark);
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 16px 30px;
            background: linear-gradient(135deg, var(--primary-blue), #1c3aa9);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #2563eb, var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }
        footer {
            background: #05050a;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
            color: var(--text-gray);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .main-content {
                gap: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .submit-btn {
                align-self: stretch;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .interactive-section {
            animation: fadeIn 0.6s ease-out;
        }
        .last-updated {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
