        .hero-gradient {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3a86ff;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            padding: 10px 20px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #3a86ff;
            transform: scale(1.05);
        }
        .game-card {
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
        }
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.5), transparent);
            margin: 60px auto;
            width: 80%;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
            .hero-text {
                font-size: 2.5rem !important;
            }
        }
