:root {
            --primary-dark: #0c0c14;
            --primary-accent: #f5c518;
            --secondary-accent: #8b0000;
            --text-light: #e0e0e0;
            --text-muted: #aaa;
            --bg-card: #1a1a24;
            --bg-hover: #252535;
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffdb4d;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000000, var(--primary-dark));
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-accent);
            text-shadow: 3px 3px 0 var(--secondary-accent);
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #ffdb4d;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
            width: 100%;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-accent);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: var(--bg-hover);
            text-decoration: none;
        }
        .hero {
            background: linear-gradient(rgba(12, 12, 20, 0.8), rgba(12, 12, 20, 0.9)), url('https://images.unsplash.com/photo-1531259683007-016a7b628fc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            padding: 4rem 1rem;
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 1px solid #333;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: var(--primary-accent);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary-accent);
            border-radius: 6px 0 0 6px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-button {
            padding: 1rem 1.5rem;
            background-color: var(--primary-accent);
            color: var(--primary-dark);
            border: none;
            border-radius: 0 6px 6px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-button:hover {
            background-color: #ffdb4d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: var(--primary-accent);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary-accent);
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-muted);
            font-style: italic;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--primary-accent);
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            padding: 0.5rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            display: inline-block;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-accent);
        }
        .widget h3 {
            color: var(--primary-accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #333;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .link-list a:hover {
            background-color: var(--bg-hover);
            text-decoration: none;
        }
        .comment-section, .rating-section {
            background-color: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .comment-section h2, .rating-section h2 {
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #444;
            background-color: rgba(255,255,255,0.08);
            color: white;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary-accent);
            color: var(--primary-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .submit-button:hover {
            background-color: #ffdb4d;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #555;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--primary-accent);
        }
        .site-footer {
            background-color: #05050a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--primary-accent);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-widget {
            flex: 1;
            min-width: 250px;
        }
        .footer-widget h3 {
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: background-color var(--transition-speed);
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: var(--text-muted);
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--bg-card);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #333;
            }
            .nav-menu.active {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
