:root {
            --primary-navy: #0a1a2d;
            --secondary-steel: #2a4a6c;
            --accent-gold: #d4af37;
            --accent-ember: #c44d34;
            --text-light: #e8f1f8;
            --text-dim: #a3b8cc;
            --bg-dark: #050e17;
            --card-bg: #111f2d;
            --border-color: #1e3a5c;
            --success-green: #3a9b6d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(42, 74, 108, 0.15) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #ffdb70;
            border-bottom: 1px solid var(--accent-gold);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            border-bottom: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-dim);
            font-weight: 500;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: var(--accent-gold);
            border-bottom: 2px solid var(--accent-gold);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-navy);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            z-index: 999;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--text-light);
            line-height: 1.2;
            border-left: 5px solid var(--accent-ember);
            padding-left: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-steel);
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 18px;
            color: #b8d4f0;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--text-dim);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--accent-gold);
            font-weight: 300;
            margin-bottom: 35px;
            line-height: 1.6;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(42, 74, 108, 0.2));
            border-left: 4px solid var(--accent-gold);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 2px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 14px;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-ember);
            color: white;
            border: none;
            padding: 0 22px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #d85a3a;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--text-dim);
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 14px;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: var(--secondary-steel);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #365f8f;
        }
        .site-footer {
            background-color: var(--primary-navy);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: var(--text-dim);
        }
        friend-link a {
            color: var(--text-dim);
        }
        friend-link a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-style: italic;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed var(--border-color);
            text-align: right;
        }
        .tag {
            display: inline-block;
            background-color: var(--secondary-steel);
            color: var(--text-light);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .tag:hover {
            transform: translateY(-3px);
            background-color: var(--accent-ember);
        }
        .interactive-link {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--accent-gold);
            transition: background 0.3s, transform 0.3s;
        }
        .interactive-link:hover {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2));
            transform: translateX(5px);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
