:root {
            --primary-purple: #6a0dad;
            --secondary-gold: #ffd700;
            --accent-blue: #4a00e0;
            --dark-bg: #1a0033;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2d0066 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--secondary-gold), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--secondary-gold);
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hero-section {
            background: linear-gradient(rgba(106, 13, 173, 0.8), rgba(74, 0, 224, 0.9)), url('https://via.placeholder.com/1920x1080') center/cover;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
        }
        h1, h2, h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--primary-purple);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(255, 215, 0, 0.2) 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--primary-purple);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .content-section { padding: 25px; }
            .hero-section { padding: 60px 0; }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-purple);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--secondary-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
