@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');
        
        :root {
            --primary-yellow: #FDB913;
            --primary-blue: #003087;
            --dark-bg: #0A0E27;
            --card-bg: #1a1f3a;
            --accent-pink: #E91E63;
            --accent-green: #00FF41;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite;
        }
        
        .shape.circle { background: var(--accent-pink); }
        .shape.triangle { 
            background: transparent;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-bottom: 52px solid var(--accent-green);
            border-radius: 0;
        }
        .shape.square { 
            background: var(--primary-yellow);
            border-radius: 5px;
            transform: rotate(45deg);
        }
        .shape.cross {
            background: var(--primary-blue);
            width: 40px;
            height: 10px;
            position: relative;
        }
        .shape.cross::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 40px;
            background: var(--primary-blue);
            left: 15px;
            top: -15px;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, 100px) rotate(90deg); }
            50% { transform: translate(200px, -50px) rotate(180deg); }
            75% { transform: translate(-100px, 150px) rotate(270deg); }
        }
        
        /* Navbar */
        .navbar {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(253, 185, 19, 0.3);
        }
        
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary-yellow) !important;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .navbar-brand img {
            width: 40px;
            margin-right: 10px;
        }
        
        .nav-link {
            color: #fff !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-yellow) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-yellow);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-yellow), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-transform: uppercase;
            animation: glow 2s ease-in-out infinite;
        }
        
        @keyframes glow {
            0%, 100% { text-shadow: 0 0 20px rgba(253, 185, 19, 0.5); }
            50% { text-shadow: 0 0 40px rgba(253, 185, 19, 0.8); }
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ddd;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-yellow), #ff9800);
            border: none;
            color: #000;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(253, 185, 19, 0.5);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(253, 185, 19, 0.7);
        }
        
        /* Promo Section */
        .promo-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(0, 255, 65, 0.1));
        }
        
        .promo-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--primary-yellow);
            box-shadow: 0 10px 30px rgba(253, 185, 19, 0.3);
            transition: all 0.3s;
        }
        
        .promo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(253, 185, 19, 0.5);
        }
        
        .promo-card h3 {
            color: var(--primary-yellow);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        /* PS Cards */
        .ps-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-yellow);
        }
        
        .ps-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .ps-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary-yellow), var(--accent-pink), var(--accent-green), var(--primary-blue));
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .ps-card:hover::before {
            opacity: 1;
        }
        
        .ps-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(253, 185, 19, 0.4);
        }
        
        .ps-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ps-title {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-yellow);
        }
        
        .ps-number {
            background: var(--primary-yellow);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
        }
        
        .ps-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .info-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }
        
        .info-label {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-yellow);
        }
        
        .status-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .status-available {
            background: var(--accent-green);
            color: #000;
        }
        
        .status-rented {
            background: var(--accent-pink);
            color: #fff;
        }
        
        .status-maintenance {
            background: #ff9800;
            color: #000;
        }
        
        .btn-detail {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary-blue), #0066cc);
            border: none;
            color: #fff;
            font-weight: 700;
            border-radius: 10px;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .btn-detail:hover {
            background: linear-gradient(135deg, #0066cc, var(--primary-blue));
            transform: scale(1.05);
        }
        
        /* Modal */
        .modal-content {
            background: var(--card-bg);
            border: 2px solid var(--primary-yellow);
            border-radius: 20px;
        }
        
        .modal-header {
            border-bottom: 2px solid var(--primary-yellow);
        }
        
        .modal-title {
            color: var(--primary-yellow);
            font-weight: 900;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .game-list {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .game-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 15px;
            margin-bottom: 10px;
            border-radius: 10px;
            border-left: 3px solid var(--primary-yellow);
        }
        
        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 10px;
            padding: 12px;
        }
        
        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-yellow);
            color: #fff;
            box-shadow: 0 0 0 0.2rem rgba(253, 185, 19, 0.25);
        }
        
        .form-label {
            color: #ddd;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(253, 185, 19, 0.1));
        }
        
        .contact-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            border: 2px solid var(--primary-yellow);
            margin-bottom: 30px;
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }
        
        .contact-card h4 {
            color: var(--primary-yellow);
            margin-bottom: 15px;
        }
        
        .contact-card p {
            color: #ddd;
            font-size: 1.1rem;
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--primary-yellow);
            height: 400px;
        }
        
        /* Footer */
        .footer {
            background: rgba(10, 14, 39, 0.95);
            padding: 40px 0 20px;
            border-top: 2px solid var(--primary-yellow);
        }
        
        .footer-content {
            text-align: center;
        }
        
        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            margin: 0 15px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary-yellow);
            transform: scale(1.2);
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-yellow);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #ff9800;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .ps-info {
                grid-template-columns: 1fr;
            }
        }