:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00b0ff;
            --dark-space: #0a0a2a;
            --star-gold: #ffd700;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-space) 0%, #1a237e 100%);
            color: #e0e0e0;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--star-gold), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 176, 255, 0.3);
        }
        .nav-custom {
            background: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
        }
        .nav-link {
            color: #e0e0e0 !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 42, 0.8), rgba(26, 35, 126, 0.9)), url('https://via.placeholder.com/1600x900');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3 {
            color: var(--star-gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 111, 0, 0.2), transparent);
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .keyword {
            color: var(--star-gold);
            font-weight: 700;
            font-size: 1.1em;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin: 25px 0;
            border: 2px solid var(--accent-color);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        .strategy-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        footer {
            background: rgba(10, 10, 42, 0.95);
            border-top: 2px solid var(--secondary-color);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 176, 255, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 176, 255, 0.6);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
