:root {
            --primary-color: #1a5fb4;
            --secondary-color: #c64600;
            --dark-bg: #0c0c0c;
            --medium-bg: #1a1a1a;
            --light-bg: #2d2d2d;
            --text-light: #f5f5f5;
            --text-gray: #b0b0b0;
            --accent-green: #26a269;
            --accent-gold: #f5c211;
            --spartan-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --border-radius: 8px;
            --shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--spartan-font);
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary-color);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: var(--primary-color);
            text-decoration: none;
        }
        .nav-desktop a.active {
            background-color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--medium-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--light-bg);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 15px 0;
            border-bottom: 1px solid var(--light-bg);
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--medium-bg);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--medium-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--text-light);
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.4rem;
            margin: 50px 0 25px;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 20px;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: var(--text-gray);
        }
        .lead {
            font-size: 1.4rem;
            color: var(--text-light);
            font-weight: 300;
            background-color: rgba(26, 95, 180, 0.1);
            padding: 25px;
            border-left: 5px solid var(--primary-color);
            border-radius: var(--border-radius);
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(198, 70, 0, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary-color);
            margin: 30px 0;
        }
        .highlight strong {
            color: var(--accent-gold);
        }
        .infobox {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border: 1px solid var(--primary-color);
        }
        .infobox h3 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
        }
        .featured-image img {
            box-shadow: 0 12px 24px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .featured-image img:hover {
            transform: scale(1.01);
            box-shadow: 0 16px 32px rgba(0,0,0,0.8);
        }
        .caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
            text-align: center;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
            color: var(--text-gray);
        }
        li {
            margin-bottom: 10px;
        }
        strong, b {
            color: var(--text-light);
            font-weight: 700;
        }
        em {
            color: var(--accent-gold);
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid var(--secondary-color);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--text-light);
            background-color: rgba(198, 70, 0, 0.05);
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        aside {
            background-color: var(--medium-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-bg);
        }
        .search-form {
            display: flex;
            margin-bottom: 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            background-color: var(--light-bg);
            border: 1px solid var(--primary-color);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: var(--text-light);
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
            color: #ffdd00;
        }
        .rating-form button {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #1d864d;
        }
        .link-list a {
            display: block;
            padding: 12px 15px;
            background-color: var(--light-bg);
            margin-bottom: 10px;
            border-radius: var(--border-radius);
            color: var(--text-light);
            transition: var(--transition);
        }
        .link-list a:hover {
            background-color: var(--primary-color);
            padding-left: 20px;
            text-decoration: none;
        }
        .comments-section {
            background-color: var(--medium-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 20px;
            background-color: var(--light-bg);
            border: 1px solid var(--primary-color);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
            font-family: var(--spartan-font);
            margin-bottom: 20px;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 15px;
            background-color: var(--light-bg);
            border: 1px solid var(--primary-color);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .comment-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #a83a00;
        }
        .comment {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: var(--dark-bg);
            padding: 60px 0 30px;
            margin-top: 60px;
            border-top: 2px solid var(--secondary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        .footer-links a {
            display: block;
            color: var(--text-gray);
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--text-light);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-bg);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .emoji {
            font-size: 1.3em;
            margin: 0 3px;
        }
        .last-updated {
            background-color: var(--light-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            border: 1px dashed var(--primary-color);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article, aside, .comments-section {
                padding: 25px;
            }
            .header-container {
                padding: 0 15px;
            }
        }
