:root {
            --primary-dark: #0a0e17;
            --primary-purple: #6a11cb;
            --secondary-purple: #2575fc;
            --accent-gold: #ffd700;
            --text-light: #f0f8ff;
            --text-gray: #b0b8d0;
            --card-bg: #141a2d;
            --hover-bg: #1e2438;
            --border-color: #2a3455;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(106, 17, 203, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-gold), #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent-gold);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(20, 26, 45, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.2s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(to right, var(--accent-gold), #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            color: var(--accent-gold);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            color: var(--text-light);
            margin: 1.5rem 0 1rem;
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            border: 3px solid var(--primary-purple);
        }
        p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }
        .highlight {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .info-box {
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
            border-left: 4px solid var(--primary-purple);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: var(--hover-bg);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .user-interaction {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.25rem;
        }
        .star {
            color: var(--text-gray);
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        textarea, input[type="text"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: var(--hover-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-family: inherit;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--secondary-purple), var(--primary-purple));
            box-shadow: 0 0 15px rgba(106, 17, 203, 0.5);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: var(--hover-bg);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(106, 17, 203, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
        }
        footer {
            background-color: #070b14;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
        }
