:root {
            --primary-dark: #0a0a1a;
            --secondary-dark: #1a1a2e;
            --accent-red: #c72c41;
            --accent-gold: #d4af37;
            --accent-blue: #2a9d8f;
            --text-light: #f5f5f5;
            --text-gray: #b0b0c0;
            --border-color: #33334d;
            --shadow-glow: 0 0 15px rgba(199, 44, 65, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(26, 26, 46, 0.9) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(42, 157, 143, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo span {
            color: var(--accent-gold);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-red);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 20px;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: var(--text-light);
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(199, 44, 65, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            min-height: 150vh;
        }
        article {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-red);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-blue);
            margin: 30px 0 15px;
        }
        .article-meta {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(199, 44, 65, 0.1), transparent);
            border-left: 4px solid var(--accent-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-glow);
            border: 2px solid var(--accent-red);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-box {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        .feature-box h3 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            background-color: rgba(245, 245, 245, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-blue);
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--accent-red), #9c1b2e);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(135deg, #d93a50, var(--accent-red));
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .rating i {
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.2s;
            font-size: 1.5rem;
        }
        .rating i:hover,
        .rating i.active {
            color: var(--accent-gold);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background-color: rgba(10, 10, 26, 0.9);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .web-link {
            background-color: rgba(42, 157, 143, 0.1);
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(42, 157, 143, 0.25);
            transform: translateX(5px);
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 40px 0 20px;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            width: 100%;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-content {
                padding: 0 10px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px;
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            article {
                padding: 20px;
            }
            .feature-box {
                padding: 20px;
            }
        }
