:root {
            --primary-dark: #0a0a16;
            --primary-blue: #0066cc;
            --primary-gold: #d4af37;
            --accent-red: #cc0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-card: #1a1a2e;
            --border-color: #333355;
            --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-blue);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(to bottom, #000022, var(--primary-dark));
            border-bottom: 2px solid var(--primary-gold);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--primary-blue), var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            padding: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:last-child {
            color: var(--primary-gold);
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--primary-gold);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px #000;
        }
        h1 span {
            color: var(--primary-gold);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #4d9fff;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            background: rgba(0, 50, 100, 0.2);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-blue);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2a3a, #0a1a2a);
            border: 1px solid var(--primary-blue);
            border-radius: 8px;
            padding: 1.8rem;
            margin: 2rem 0;
            box-shadow: inset 0 0 10px rgba(0, 60, 120, 0.3);
        }
        .highlight-box h3 {
            margin-top: 0;
            color: var(--primary-gold);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform var(--transition-speed);
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        strong {
            color: var(--primary-gold);
            font-weight: 700;
        }
        em {
            color: #aadcff;
        }
        blockquote {
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-gray);
            background-color: rgba(204, 0, 0, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .content-link {
            background-color: rgba(0, 102, 204, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            border-bottom: 1px dashed var(--primary-blue);
        }
        .content-link:hover {
            background-color: rgba(212, 175, 55, 0.15);
            border-bottom-style: solid;
        }
        .last-updated {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 1rem;
            border-radius: 6px;
            margin: 2rem 0;
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-gray);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            margin-top: 0;
            color: var(--primary-gold);
            font-size: 1.4rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: #111122;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: #0052a3;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            background-color: #111122;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(to right, var(--primary-blue), #004799);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-speed);
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #0052a3, #003366);
            box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--primary-gold);
        }
        .related-links {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .related-links i {
            color: var(--primary-gold);
        }
        .site-footer {
            background: #000011;
            border-top: 2px solid var(--primary-gold);
            margin-top: 4rem;
            padding: 3rem 2rem 1.5rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h4 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.6rem;
            background-color: rgba(255,255,255,0.03);
            border-radius: 4px;
            transition: background-color var(--transition-speed);
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .site-header, .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }
