/* Gaming Theme CSS */

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

:root {
    /* Gaming Color Palette */
    --primary-neon: #00f5ff;
    --secondary-neon: #8a2be2;
    --accent-green: #32ff32;
    --accent-pink: #ff1493;
    --warning-orange: #ff6600;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(15, 15, 25, 0.8);
    --border-glow: rgba(0, 245, 255, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #808080;
    
    /* Gaming Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.1) 0%, transparent 25%),
        linear-gradient(45deg, transparent 49%, rgba(50, 255, 50, 0.05) 50%, transparent 51%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Background Effects */
.gaming-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

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

@keyframes grid-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-neon);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-neon);
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--primary-neon);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 50px rgba(0, 245, 255, 0.3),
        inset 0 0 50px rgba(0, 245, 255, 0.1);
    max-width: 500px;
    width: 90%;
}

.gaming-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gaming-particles::before,
.gaming-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-green);
}

.gaming-particles::before {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.gaming-particles::after {
    bottom: 10%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(10px, -10px) scale(1.2); opacity: 0.7; }
}

.gaming-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 245, 255, 0.1);
}

.circle-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

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

.age-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.gaming-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    margin: 0 auto 20px;
    box-shadow: 0 0 10px var(--primary-neon);
}

.age-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.age-btn {
    position: relative;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
}

.btn-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.age-btn:hover {
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
}

.age-btn.confirm:hover {
    background: var(--primary-neon);
}

.age-btn.deny {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.age-btn.deny:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.age-btn:hover .btn-glow-effect {
    left: 100%;
}

.age-footer {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Main Content */
.main-content {
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    letter-spacing: 2px;
}

.logo-bracket {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-text:hover .logo-glow {
    opacity: 0.3;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-item {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-green));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon);
}

.nav-item:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-item:hover .nav-glow {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-neon);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--primary-neon);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(50, 255, 50, 0.05) 0%, transparent 40%);
    animation: circuit-glow 6s ease-in-out infinite alternate;
}

@keyframes circuit-glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-neon);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-neon);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particle-move 8s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: particle-move 6s ease-in-out infinite 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation: particle-move 10s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation: particle-move 7s ease-in-out infinite 3s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 20%;
    animation: particle-move 9s ease-in-out infinite 4s;
}

@keyframes particle-move {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-10px, -50px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(30px, -20px) scale(1.1); opacity: 0.9; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.gaming-gradient {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
    animation: title-pulse 3s ease-in-out infinite;
}

@keyframes title-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--text-primary);
    padding: 18px 40px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.btn-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.gaming-cta-button:hover .btn-energy {
    left: 100%;
}

.gaming-cta-button:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    transform: translateY(-3px);
}

.btn-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent-green);
}

.corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.btn-arrow {
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.gaming-cta-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* Overview Section */
.overview {
    padding: 100px 0;
    position: relative;
}

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

.gaming-image-container {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-neon);
    background: var(--card-bg);
}

.gaming-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gaming-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 245, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gaming-image-container:hover .image-overlay {
    opacity: 1;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 245, 255, 0.1) 2px,
        rgba(0, 245, 255, 0.1) 4px
    );
    animation: scan-move 2s linear infinite;
}

@keyframes scan-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.corner-borders {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.corner-border {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-green);
}

.corner-border.corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner-border.corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner-border.corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner-border.corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
}

.title-glow-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-green));
    box-shadow: 0 0 15px var(--primary-neon);
}

.section-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgba(5, 5, 8, 0.8));
}

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

.gaming-feature-card {
    position: relative;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}

.border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-green));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gaming-feature-card:hover .border-glow {
    opacity: 0.7;
}

.gaming-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--primary-neon);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Game Preview Section */
.game-preview {
    padding: 100px 0;
}

.game-showcase {
    margin-bottom: 60px;
}

.game-showcase:last-child {
    margin-bottom: 0;
}

.gaming-screen {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 2px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.screen-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.corner-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    position: absolute;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.line-tl {
    top: 15px;
    left: 15px;
    width: 30px;
    height: 2px;
}

.line-tl::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 30px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.line-tr {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 2px;
}

.line-tr::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 30px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.line-bl {
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 2px;
}

.line-bl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 30px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.line-br {
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 2px;
}

.line-br::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 30px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.gaming-screen img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gaming-screen:hover .play-overlay {
    opacity: 1;
}

.gaming-screen:hover img {
    transform: scale(1.05);
}

.gaming-play-btn {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--text-primary);
    padding: 20px 40px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.play-icon {
    position: relative;
    color: var(--accent-green);
}

.play-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(50, 255, 50, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.gaming-play-btn:hover .btn-pulse {
    left: 100%;
}

.gaming-play-btn:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.8), rgba(10, 10, 15, 0.8));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gaming-about-card {
    position: relative;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.card-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 10px;
}

.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.frame-corner.frame-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.frame-tr {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.frame-bl {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.frame-corner.frame-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.gaming-about-card:hover .frame-corner {
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon);
}

.gaming-about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.card-header {
    margin-bottom: 25px;
}

.card-header h2 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.header-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-green));
    box-shadow: 0 0 10px var(--primary-neon);
}

.gaming-about-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gaming-link {
    color: var(--primary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.gaming-link:hover {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green);
}

.gaming-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

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

/* Disclaimer Section */
.disclaimer {
    padding: 100px 0;
}

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

.disclaimer-points {
    margin-top: 30px;
}

.disclaimer-point {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    color: var(--primary-neon);
    font-weight: bold;
    margin-top: 2px;
    text-shadow: 0 0 10px var(--primary-neon);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgba(5, 5, 8, 0.8));
}

.gaming-contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.gaming-contact-form {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
}

.form-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 5px;
    padding: 15px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.input-glow {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(10px);
}

.form-group input:focus + .input-glow,
.form-group textarea:focus + .input-glow {
    opacity: 0.3;
}

.gaming-submit-btn {
    grid-column: span 2;
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--text-primary);
    padding: 18px 40px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 20px;
}

.gaming-submit-btn:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    transform: translateY(-3px);
}

/* Badges Section */
.badges {
    padding: 80px 0;
    background: rgba(5, 5, 8, 0.5);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gaming-badge {
    position: relative;
    display: block;
    padding: 10px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gaming-badge img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: filter 0.3s ease;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(5px);
}

.gaming-badge:hover .badge-glow {
    opacity: 0.5;
}

.gaming-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 245, 255, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 245, 255, 0.3);
}

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

.footer-logo .logo-text {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-disclaimer {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.newsletter {
    margin-bottom: 30px;
}

.newsletter h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 5px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.newsletter-btn {
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--text-primary);
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-neon);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    position: relative;
}

.footer-border {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    box-shadow: 0 0 20px var(--primary-neon);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .hero-description {
        font-size: 16px;
    }

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

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

    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .gaming-submit-btn {
        grid-column: span 1;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }

    .badges-grid {
        gap: 20px;
    }

    .gaming-badge img {
        width: 60px;
        height: 60px;
    }

    .age-buttons {
        flex-direction: column;
        align-items: center;
    }

    .age-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .gaming-contact-form {
        padding: 30px 20px;
    }

    .gaming-about-card,
    .gaming-feature-card {
        padding: 30px 20px;
    }

    .age-gate-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .hero {
        padding-top: 100px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Performance Optimizations */
.gaming-feature-card,
.gaming-about-card,
.gaming-screen,
.gaming-badge {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-particles,
    .energy-particles,
    .gaming-particles,
    .scan-lines,
    .grid-overlay {
        animation: none !important;
    }
}

.content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #ffffff;
}

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

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

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