body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f0f0f0;
        }
        .navbar {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00d4ff;
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-overlay {
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .section-title {
            color: #00d4ff;
            border-left: 5px solid #ff0055;
            padding-left: 15px;
            margin-bottom: 30px;
        }
        .card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(5px);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
        }
        .btn-primary {
            background: linear-gradient(90deg, #00d4ff, #0099ff);
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: linear-gradient(90deg, #0099ff, #00d4ff);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
        }
        .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #00d4ff;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: #00d4ff;
            transform: scale(1.05);
        }
        footer {
            background: rgba(15, 12, 41, 0.95);
            border-top: 2px solid #ff0055;
        }
        .contact-icon {
            color: #00d4ff;
            margin-right: 10px;
        }
        .game-showcase {
            border-radius: 20px;
            overflow: hidden;
            border: 3px solid #00d4ff;
        }
        .testimonial {
            background: rgba(255, 255, 255, 0.05);
            border-left: 5px solid #ff0055;
            padding: 20px;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
