* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
        }

        nav ul {
            display: none;
            list-style: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: #00d4ff;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: #1a1a2e;
            padding: 20px;
            position: absolute;
            top: 60px;
            right: 0;
            width: 100%;
            list-style: none;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu li {
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }

        .mobile-menu a {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #00d4ff;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .hero p {
            font-size: 16px;
            color: #b0b0b0;
            margin-bottom: 20px;
        }

        .cta-button {
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            color: #000;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
        }

        /* Services Section */
        .services {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: #00d4ff;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #00d4ff;
            margin: 10px auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .service-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #00d4ff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #00d4ff;
        }

        .service-card p {
            color: #b0b0b0;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Gaming Stations Section */
        .gaming-stations {
            background: #1a1a2e;
            padding: 40px 20px;
            margin-bottom: 40px;
        }

        .station-item {
            background: #0f0f0f;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #333;
        }

        .station-specs {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .spec-badge {
            background: rgba(0, 212, 255, 0.1);
            color: #00d4ff;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            border: 1px solid #00d4ff;
        }

        /* Pricing Section */
        .pricing {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .pricing-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid #333;
            transition: border-color 0.3s ease;
        }

        .pricing-card.featured {
            border-color: #00d4ff;
            transform: scale(1.05);
        }

        .pricing-card h3 {
            font-size: 22px;
            color: #00d4ff;
            margin-bottom: 15px;
        }

        .price {
            font-size: 36px;
            color: #00d4ff;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .price-period {
            color: #b0b0b0;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .features {
            text-align: left;
            margin-bottom: 20px;
        }

        .features li {
            list-style: none;
            padding: 8px 0;
            color: #b0b0b0;
            border-bottom: 1px solid #333;
        }

        .features li:before {
            content: '✓ ';
            color: #00d4ff;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Contact Section */
        .contact {
            background: #1a1a2e;
            padding: 40px 20px;
            text-align: center;
        }

        .contact-info {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-item {
            margin-bottom: 20px;
        }

        .contact-item strong {
            color: #00d4ff;
            display: block;
            margin-bottom: 5px;
        }

        .contact-item a {
            color: #b0b0b0;
            text-decoration: none;
        }

        /* Footer */
        footer {
            background: #0f0f0f;
            padding: 20px;
            text-align: center;
            color: #666;
            border-top: 1px solid #333;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            nav ul {
                display: flex;
                gap: 30px;
            }

            .menu-toggle {
                display: none;
            }

            nav a {
                color: #00d4ff;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            nav a:hover {
                color: #00ffff;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    