:root {
            --primary-bg: #0a0a12;
            --secondary-bg: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-blue: #2a75bb;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --border-color: #33334d;
            --hover-glow: rgba(212, 175, 55, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-bg);
            border-bottom: 2px solid var(--accent-gold);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 0 0 10px var(--hover-glow);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 15px var(--accent-gold);
        }
        .my-logo span {
            color: var(--accent-blue);
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: var(--hover-glow);
            color: var(--accent-gold);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 15px 10px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .mobile-nav a:hover {
            color: var(--accent-gold);
            padding-left: 20px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.7);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--accent-gold);
        }
        .breadcrumb a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 30px 0;
            min-height: 150vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .article-meta span i {
            margin-right: 5px;
            color: var(--accent-blue);
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--accent-gold);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--accent-gold);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-dim);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 3px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            color: var(--text-dim);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .interactive-section {
            background-color: var(--secondary-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            color: var(--accent-gold);
        }
        .section-title i {
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: var(--text-light);
        }
        input, textarea, select {
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(42, 117, 187, 0.3);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--accent-blue), #1a5a9c);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
        }
        .btn:hover {
            background: linear-gradient(135deg, var(--accent-gold), #b8941f);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: var(--text-dim);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent-gold);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background-color: var(--secondary-bg);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        .link-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
        }
        .link-card h4 {
            color: var(--accent-blue);
            margin-bottom: 10px;
            border: none;
            padding: 0;
        }
        .link-card p {
            color: var(--text-dim);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        footer {
            background-color: var(--secondary-bg);
            padding: 40px 0 20px;
            border-top: 2px solid var(--accent-gold);
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            border: none;
            padding: 0;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(212, 175, 55, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            margin: 5px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        friend-link a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: 800;
            color: var(--accent-gold);
        }
        .text-italic {
            font-style: italic;
        }
        .emoji {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .interactive-section {
                padding: 20px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
        }
