:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-bg: #0d1b2a;
            --text-light: #e0f7fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1b263b 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            color: var(--text-light) !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: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .content-section {
            background: rgba(13, 27, 42, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            border: 1px solid rgba(79, 195, 247, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        }
        .highlight {
            background: linear-gradient(135deg, rgba(255,111,0,0.15) 0%, rgba(79,195,247,0.15) 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .keyword {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            margin: 2rem 0;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .img-fluid {
            border-radius: 12px;
        }
        footer {
            background: rgba(13, 27, 42, 0.95);
            border-top: 1px solid rgba(79, 195, 247, 0.2);
            padding: 2.5rem 0;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary-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 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--accent-color);
            color: white;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
