@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --cyber-pink: #ff0080;
    --cyber-blue: #00f0ff;
    --cyber-purple: #b000ff;
    --cyber-green: #00ff88;
    --cyber-yellow: #ffff00;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --border-glow: rgba(0, 240, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.has-scroll-smooth {
    overflow: hidden;
    height: 100%;
}

html.has-scroll-dragging {
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
    height: 100%;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-container] {
    position: relative;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(0, 240, 255, 0.05) 25%, rgba(0, 240, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 128, 0.05) 75%, rgba(255, 0, 128, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 240, 255, 0.05) 25%, rgba(0, 240, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 128, 0.05) 75%, rgba(255, 0, 128, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Three.js Canvas - Mobile Optimized */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* Custom Cursor - Desktop Only */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* Hide cursor on mobile/tablet */
@media (max-width: 1024px), (hover: none) {
    .cursor {
        display: none !important;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cyber-blue);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--cyber-blue);
    transition: all 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cyber-blue);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor-trail {
    width: 20px;
    height: 20px;
    background: var(--cyber-pink);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    filter: blur(5px);
    transition: all 0.2s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

.glitch-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 60px;
    position: relative;
    color: var(--cyber-blue);
    text-shadow: 
        0 0 10px var(--cyber-blue),
        0 0 20px var(--cyber-blue),
        0 0 40px var(--cyber-blue);
    animation: glitch 2s infinite;
}

.glitch-logo::before,
.glitch-logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-logo::before {
    left: 2px;
    text-shadow: -2px 0 var(--cyber-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-logo::after {
    left: -2px;
    text-shadow: -2px 0 var(--cyber-green);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(80px, 9999px, 24px, 0); }
    40% { clip: rect(10px, 9999px, 85px, 0); }
    60% { clip: rect(65px, 9999px, 40px, 0); }
    80% { clip: rect(20px, 9999px, 70px, 0); }
    100% { clip: rect(50px, 9999px, 30px, 0); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.loading-bar-container {
    width: 400px;
    max-width: 90vw;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink));
    transition: width 0.3s ease;
    box-shadow: 0 0 20px var(--cyber-blue);
}

.loading-text {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.loading-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(-50%, -50%) translateY(0); }
    100% { transform: translate(-50%, -50%) translateY(50px); }
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

#nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 10px 50px rgba(0, 240, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 4px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 20px var(--cyber-blue);
    transition: all 0.3s ease;
}

.logo-icon {
    color: var(--cyber-pink);
    font-size: 24px;
}

.logo-text:hover {
    color: var(--cyber-blue);
    text-shadow: 0 0 30px var(--cyber-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cyber-blue);
    overflow: hidden;
    width: 0%;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-blue);
    box-shadow: 0 0 10px var(--cyber-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-scanline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Menu Toggle */
.menu-toggle {
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: 2px solid var(--cyber-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cyber-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--cyber-blue);
}

.menu-toggle:hover {
    border-color: var(--cyber-pink);
    box-shadow: 0 0 20px var(--cyber-pink);
}

.menu-toggle:hover span {
    background: var(--cyber-pink);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.mobile-menu-close {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid var(--cyber-pink);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close span {
    width: 28px;
    height: 2px;
    background: var(--cyber-pink);
    box-shadow: 0 0 10px var(--cyber-pink);
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg) translateY(4px);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg) translateY(-4px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-link span {
    font-size: 16px;
    color: var(--text-secondary);
}

.mobile-nav-link:hover {
    color: var(--cyber-blue);
    padding-left: 20px;
    text-shadow: 0 0 20px var(--cyber-blue);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 150px 40px 100px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.terminal-text::before {
    content: '> ';
    color: var(--cyber-pink);
}

.hero-title {
    margin-bottom: 40px;
}

.title-line {
    display: block;
    overflow: hidden;
    line-height: 1;
}

.word {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -2px;
    display: inline-block;
    text-transform: uppercase;
    animation: slideUp 1s ease both;
}

.word:nth-child(1) { animation-delay: 0.5s; }
.word:nth-child(2) { animation-delay: 0.7s; }
.word:nth-child(3) { animation-delay: 0.9s; }

.cyber-gradient {
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--cyber-blue);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--cyber-blue);
    transform: translateY(-3px);
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary.large {
    padding: 22px 50px;
    font-size: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--cyber-pink);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-secondary:hover {
    background: rgba(255, 0, 128, 0.2);
    box-shadow: 0 0 30px var(--cyber-pink);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 80px;
    animation: fadeInUp 1s ease 1.5s both;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--cyber-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--cyber-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.5); }
}

/* Sections */
section {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 100px;
    max-width: 800px;
}

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-title .line {
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.service-card:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-bg {
    opacity: 0.1;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-pink);
    margin-bottom: 20px;
}

.service-icon {
    font-size: 56px;
    color: var(--cyber-blue);
    margin-bottom: 30px;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--cyber-pink);
}

.service-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-tech {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-tech span {
    padding: 8px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-size: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.game-card {
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.game-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 240, 255, 0.4);
    border-color: var(--cyber-pink);
}

.game-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.8), rgba(255, 0, 128, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--cyber-blue);
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
}

.game-card:hover .game-play-btn {
    transform: scale(1);
}

.game-info {
    padding: 40px;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.game-genre {
    padding: 8px 20px;
    background: rgba(255, 0, 128, 0.2);
    border: 1px solid var(--cyber-pink);
    font-size: 11px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyber-pink);
}

.game-platform {
    font-size: 11px;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.game-stats {
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-stats i {
    color: var(--cyber-blue);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.tech-card {
    padding: 40px 30px;
    text-align: center;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.tech-card:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--cyber-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.tech-icon {
    font-size: 48px;
    color: var(--cyber-blue);
    margin-bottom: 20px;
}

.tech-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 200px 40px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.1), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 0, 128, 0.1), transparent 50%);
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.contact-title .line {
    display: block;
}

.contact-cta {
    margin-top: 60px;
}

/* Footer */
footer {
    background: rgba(5, 5, 8, 0.95);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}

.footer-main .logo-text {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-link:hover {
    background: var(--cyber-blue);
    border-color: var(--cyber-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--cyber-blue);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--cyber-blue);
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--cyber-blue);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
    font-family: 'Orbitron', sans-serif;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    section {
        padding: 100px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 120px 20px 80px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    #contact {
        padding: 150px 20px;
    }
    
    .footer-content {
        gap: 50px;
    }
    
    .mobile-menu-content {
        padding: 30px 20px;
    }
    
    .mobile-menu-header {
        margin-bottom: 60px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .loading-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .loading-status {
        display: none;
    }
    
    .game-image {
        height: 250px;
    }
    
    .service-card,
    .game-card {
        padding: 30px 20px;
    }
    
    .game-info {
        padding: 30px 20px;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
}

/* Mobile landscape adjustments */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        margin-top: 40px;
    }
    
    section {
        padding: 80px 0;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .cursor {
        display: none !important;
    }
    
    .btn-primary:active {
        transform: scale(0.95);
    }
    
    .btn-secondary:active {
        transform: scale(0.95);
    }
    
    .service-card:active {
        transform: translateY(-5px);
    }
    
    .game-card:active {
        transform: translateY(-10px);
    }
}
