:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --dark-bg: #0f172a;
            --light-text: #f8fafc;
            --card-bg: #1e293b;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
            color: var(--light-text);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .navbar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-color);
            padding: 1rem 0;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
        }
        .nav-link {
            color: var(--light-text) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.8)), url('https://via.placeholder.com/1600x900') center/cover;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        .content-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .highlight-text {
            color: var(--accent-color);
            font-weight: 700;
        }
        .game-image {
            border-radius: 10px;
            width: 100%;
            height: auto;
            margin: 1.5rem 0;
            border: 2px solid var(--primary-color);
        }
        .ability-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary-color);
        }
        footer {
            background: rgba(15, 23, 42, 0.95);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 2px solid var(--primary-color);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-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(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .logo-text {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
