 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Gaming Background */
        .gaming-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 50%, rgba(120, 0, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(255, 0, 120, 0.1) 0%, transparent 50%),
                        linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
        }

        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridPulse 4s ease-in-out infinite alternate;
        }

        @keyframes gridPulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.1; }
        }

        .particles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: linear-gradient(45deg, #00ffff, #ff0080);
            border-radius: 50%;
            animation: float 6s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 1;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }

        /* Age Gate Modal */
        .age-gate-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(10px);
        }

        .age-gate-modal {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border: 2px solid #00ffff;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .age-gate-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .age-gate-content {
            position: relative;
            z-index: 1;
        }

        .age-gate-content h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .age-gate-content p {
            color: #cccccc;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .age-gate-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .gaming-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gaming-btn.primary {
            background: linear-gradient(135deg, #00ffff, #0080ff);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        }

        .gaming-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6);
        }

        .gaming-btn.secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ff0080;
        }

        .gaming-btn.secondary:hover {
            background: #ff0080;
            color: #000;
        }

        /* Navigation */
        .gaming-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            padding: 20px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .brand-logo {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            font-weight: 900;
            color: #00ffff;
            text-decoration: none;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .gaming-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Orbitron', monospace;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
        }

        .gaming-link:hover {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .gaming-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ffff, #ff0080);
            transition: width 0.3s ease;
        }

        .gaming-link:hover::after {
            width: 100%;
        }

        .contact-gaming-btn {
            background: linear-gradient(135deg, #ff0080, #ff4080);
            color: #ffffff;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
        }

        .contact-gaming-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 30px rgba(255, 0, 128, 0.6);
        }

        /* Hero Section */
        .hero-gaming-zone {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .hero-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .gaming-badge-strip {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            font-size: 0.9rem;
            color: #00ffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .badge-item {
            background: rgba(0, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .hero-gaming-title {
            font-family: 'Orbitron', monospace;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 30px;
        }

        .title-word {
            display: block;
            background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .cyber-gradient {
            background: linear-gradient(135deg, #00ffff 0%, #ff0080 50%, #8000ff 100%) !important;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
            animation: colorShift 3s ease-in-out infinite alternate;
        }

        @keyframes colorShift {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(30deg); }
        }

        .hero-gaming-desc {
            font-size: 1.2rem;
            color: #cccccc;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .hero-gaming-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .primary-gaming-btn {
            background: linear-gradient(135deg, #00ffff, #0080ff);
            color: #000000;
            border: none;
            padding: 18px 35px;
            border-radius: 12px;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .primary-gaming-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(0, 255, 255, 0.6);
        }

        .secondary-gaming-btn {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ff0080;
            padding: 16px 35px;
            border-radius: 12px;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .secondary-gaming-btn:hover {
            background: #ff0080;
            color: #000;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }

        /* Game Preview */
        .hero-game-display {
            position: relative;
        }

        .game-terminal-frame {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border: 2px solid #00ffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
        }

        .terminal-header-bar {
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }

        .terminal-controls {
            display: flex;
            gap: 8px;
        }

        .control-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .control-dot.red { background: #ff4757; }
        .control-dot.yellow { background: #ffa502; }
        .control-dot.green { background: #2ed573; }

        .terminal-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Orbitron', monospace;
            font-size: 0.9rem;
            color: #00ffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: #00ffff;
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        .game-screen-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .game-preview-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .screen-cyber-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(0, 255, 255, 0.1) 0%,
                transparent 50%,
                rgba(255, 0, 128, 0.1) 100%
            );
            pointer-events: none;
        }

        .screen-scan-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 255, 0.03) 2px,
                rgba(0, 255, 255, 0.03) 4px
            );
            pointer-events: none;
            animation: scanlines 2s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(20px); }
        }

        /* Features Section */
        .features-gaming-section {
            padding: 100px 0;
            position: relative;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header-gaming {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-gaming-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ff0080 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        }

        .section-gaming-subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-cyber-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .feature-gaming-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-gaming-card:hover {
            transform: translateY(-5px);
            border-color: #00ffff;
            box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
        }

        .feature-gaming-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(128, 0, 255, 0.1) 100%);
            border-color: #ff0080;
        }

        .feature-gaming-card.wide {
            grid-column: span 2;
        }

        .card-cyber-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-gaming-card:hover .card-cyber-border {
            opacity: 1;
        }

        .card-header-gaming {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            font-size: 2rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            border-radius: 15px;
            color: #000;
        }

        .feature-gaming-card h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            color: #ffffff;
            margin: 0;
        }

        .feature-gaming-card p {
            color: #cccccc;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* About Section */
        .about-gaming-section {
            padding: 100px 0;
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-gaming-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-gaming-panel.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .about-content-box {
            padding: 40px;
        }

        .about-content-box h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: #00ffff;
            margin-bottom: 25px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .about-content-box p {
            color: #cccccc;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-visual-frame {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
        }

        .visual-cyber-container {
            width: 100%;
            height: 100%;
            position: relative;
            border: 2px solid #00ffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        }

        .visual-cyber-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 128, 0.2) 100%);
            mix-blend-mode: overlay;
        }

        /* Disclaimer Section */
        .disclaimer-gaming-section {
            padding: 100px 0;
            position: relative;
        }

        .disclaimer-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .disclaimer-cyber-panel {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
            border: 2px solid #ff0080;
            border-radius: 25px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 0, 128, 0.3);
        }

        .panel-header-gaming {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .warning-cyber-icon {
            font-size: 3rem;
            animation: warning 2s ease-in-out infinite alternate;
        }

        @keyframes warning {
            0% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1.1) rotate(5deg); }
        }

        .panel-header-gaming h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            color: #ff0080;
            text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }

        .disclaimer-grid-gaming {
            display: grid;
            gap: 25px;
            margin-bottom: 40px;
        }

        .disclaimer-cyber-point {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 128, 0.3);
            border-radius: 15px;
            padding: 25px;
            position: relative;
            color: #cccccc;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .disclaimer-cyber-point strong {
            color: #ff0080;
            font-family: 'Orbitron', monospace;
        }

        .disclaimer-visual-gaming {
            text-align: center;
            margin-top: 30px;
        }

        .disclaimer-gaming-img {
            max-width: 400px;
            width: 100%;
            border-radius: 15px;
            border: 2px solid #00ffff;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        }

        /* Contact Section */
        .contact-gaming-section {
            padding: 100px 0;
            position: relative;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-header-gaming {
            text-align: center;
            margin-bottom: 80px;
        }

        .contact-gaming-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            color: #00ffff;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        .contact-gaming-subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-gaming-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-panel {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-gaming-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .info-gaming-card:hover {
            border-color: #00ffff;
            box-shadow: 0 5px 30px rgba(0, 255, 255, 0.2);
        }

        .info-cyber-icon {
            font-size: 2rem;
        }

        .info-content h4 {
            font-family: 'Orbitron', monospace;
            color: #00ffff;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #cccccc;
        }

        .contact-gaming-message {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 128, 0.3);
            border-radius: 15px;
            padding: 25px;
        }

        .contact-gaming-message h4 {
            font-family: 'Orbitron', monospace;
            color: #ff0080;
            margin-bottom: 15px;
        }

        .contact-gaming-message ul {
            color: #cccccc;
            padding-left: 20px;
        }

        .contact-gaming-message li {
            margin-bottom: 8px;
        }

        /* Contact Form */
        .contact-gaming-form {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-header-gaming {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header-gaming h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            color: #00ffff;
            margin-bottom: 10px;
        }

        .form-header-gaming p {
            color: #cccccc;
        }

        .form-row-gaming {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group-gaming {
            margin-bottom: 20px;
        }

        .form-group-gaming label {
            display: block;
            color: #00ffff;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group-gaming input,
        .form-group-gaming textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-radius: 10px;
            padding: 15px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group-gaming input:focus,
        .form-group-gaming textarea:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .form-group-gaming input::placeholder,
        .form-group-gaming textarea::placeholder {
            color: #888;
        }

        .submit-gaming-btn {
            background: linear-gradient(135deg, #ff0080, #8000ff);
            color: #ffffff;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-gaming-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 40px rgba(255, 0, 128, 0.6);
        }

        /* Badges Section */
        .badges-gaming-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .badges-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 0 20px;
        }

        .badge-gaming-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .badge-gaming-item:hover {
            opacity: 1;
            transform: translateY(-5px);
        }

        .badge-gaming-item img {
            width: 152px;
            height: 90px;
            border-radius: 15px;
            border: 2px solid rgba(0, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .badge-gaming-item:hover img {
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .badge-gaming-label {
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            color: #00ffff;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .gaming-footer {
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
            border-top: 2px solid rgba(0, 255, 255, 0.2);
            padding: 80px 0 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main-gaming {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand-gaming h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            color: #00ffff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            font-size: 2.5rem;
            animation: pulse 2s infinite;
        }

        .footer-brand-gaming p {
            color: #cccccc;
            line-height: 1.7;
            font-size: 1rem;
        }

        .footer-newsletter-gaming h4 {
            font-family: 'Orbitron', monospace;
            color: #ff0080;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .newsletter-gaming-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-gaming-form input {
            flex: 1;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-radius: 10px;
            padding: 12px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-gaming-form input:focus {
            outline: none;
            border-color: #00ffff;
        }

        .newsletter-gaming-form button {
            background: linear-gradient(135deg, #00ffff, #0080ff);
            color: #000;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
        }

        .footer-links-gaming {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            padding: 30px 0;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .footer-links-gaming a {
            color: #cccccc;
            text-decoration: none;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .footer-links-gaming a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .footer-bottom-gaming {
            text-align: center;
        }

        .footer-bottom-gaming p {
            color: #888;
            font-family: 'Inter', sans-serif;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-gaming-title {
                font-size: 3rem;
            }

            .features-cyber-grid {
                grid-template-columns: 1fr;
            }

            .feature-gaming-card.featured,
            .feature-gaming-card.wide {
                grid-column: span 1;
            }

            .about-gaming-panel {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-gaming-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-row-gaming {
                grid-template-columns: 1fr;
            }

            .footer-main-gaming {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .badges-container {
                flex-wrap: wrap;
                gap: 20px;
            }

            .nav-menu {
                display: none;
            }
        }

        /* Hide age gate when confirmed */
        .age-gate-hidden {
            display: none !important;
        }

        
.content {
    padding: 40px 10%;
}

.content-block {}

.content-block h2 {
    color: #5610b9;
}

.content-block p,
ul {
    color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}