/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --red-primary: #8b0000;
    --red-secondary: #a00000;
    --red-accent: #c00000;
    --red-bright: #ff1a1a;
    --red-glow: rgba(200, 0, 0, 0.6);
    --red-light: rgba(200, 0, 0, 0.15);
    --red-dark: rgba(139, 0, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --glass-bg: rgba(15, 15, 15, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(200, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    cursor: none; /* Hide default cursor */
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(200, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--red-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    box-shadow: 0 0 20px var(--red-glow);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--red-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s ease;
    box-shadow: 0 0 10px var(--red-glow);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--red-bright);
    background: rgba(200, 0, 0, 0.1);
}

/* Interactive Background Circles */
.interactive-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.interactive-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 0, 0, 0.25) 0%, rgba(139, 0, 0, 0.08) 70%, transparent 100%);
    border: 1px solid rgba(200, 0, 0, 0.4);
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 60px rgba(200, 0, 0, 0.3), inset 0 0 40px rgba(200, 0, 0, 0.1);
    will-change: transform;
    animation: circlePulse 4s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.interactive-circle.repelling {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 80px rgba(200, 0, 0, 0.5), inset 0 0 50px rgba(200, 0, 0, 0.2);
    border-color: rgba(200, 0, 0, 0.6);
}

.interactive-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--red-primary), var(--red-accent), var(--red-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.interactive-circle.repelling::before {
    opacity: 0.5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    backdrop-filter: blur(30px);
    background: rgba(10, 10, 10, 0.6);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 4px 40px rgba(200, 0, 0, 0.15);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px var(--red-glow);
}

.logo-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.logo:hover .logo-box::before {
    opacity: 0.6;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-full {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-accent));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--red-glow);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    z-index: 2;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 0, 0, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(200, 0, 0, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
    height: 1px;
    opacity: 0.3;
    animation: lineMove 15s linear infinite;
}

.line-1 {
    top: 20%;
    width: 100%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    width: 100%;
    animation-delay: 5s;
}

.line-3 {
    top: 80%;
    width: 100%;
    animation-delay: 10s;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--red-accent);
    border: 1px solid var(--red-accent);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.title-word {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--red-accent) 50%, var(--red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleReveal 1.2s ease-out;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.tagline-line {
    color: var(--text-secondary);
}

.tagline-line.highlight {
    color: var(--red-accent);
    font-weight: 700;
    position: relative;
}

.tagline-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red-accent);
    box-shadow: 0 0 10px var(--red-glow);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--red-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-family: 'Exo 2', sans-serif;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    color: var(--text-primary);
    box-shadow: 0 4px 25px var(--red-glow);
}

.btn-shine {
    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.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--red-accent);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.main-card {
    width: 320px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.side-card-1 {
    width: 200px;
    height: 250px;
    top: 10%;
    right: 10%;
    z-index: 2;
}

.side-card-2 {
    width: 180px;
    height: 220px;
    bottom: 10%;
    left: 5%;
    z-index: 1;
}

.card-pattern {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(200, 0, 0, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(200, 0, 0, 0.1) 50%, transparent 70%);
    background-size: 40px 40px;
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-glow-effect {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.hero-card:hover {
    transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
}

.main-card:hover .card-glow-effect {
    opacity: 0.6;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    color: var(--red-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: scrollHintFloat 3s ease-in-out infinite;
}

@keyframes scrollHintFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
        opacity: 1;
    }
}

.scroll-text {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--red-accent);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    box-shadow: 0 0 20px rgba(200, 0, 0, 0.3);
    animation: mousePulse 2s ease-in-out infinite;
}

@keyframes mousePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(200, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(200, 0, 0, 0.6);
    }
}

.mouse-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--red-accent);
    border-radius: 2px;
    margin: 0 auto;
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(200, 0, 0, 0.8);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-arrow {
    animation: arrowBounce 2s ease-in-out infinite;
    color: var(--red-accent);
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 0, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 0, 0, 0.3);
    box-shadow: 0 25px 70px rgba(200, 0, 0, 0.25);
    background: rgba(15, 15, 15, 0.5);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Tropicalypse Card Custom Styling */
.tropicalypse-card {
    background: rgba(26, 45, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tropicalypse-card::before {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(30, 74, 74, 0.1) 50%, transparent 100%);
}

.tropicalypse-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2), 0 0 40px rgba(30, 74, 74, 0.3);
    background: rgba(26, 45, 38, 0.6);
}

.tropicalypse-card:hover::before {
    opacity: 1;
}

.tropicalypse-card .game-showcase-content {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 74, 74, 0.05) 100%);
}

/* 0x13 Card Custom Styling */
.ox13-card {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.ox13-card::before {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.15) 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
}

.ox13-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2), 0 0 40px rgba(255, 0, 64, 0.3);
    background: rgba(10, 10, 15, 0.7);
}

.ox13-card:hover::before {
    opacity: 1;
}

.ox13-card .game-showcase-content {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Coming Soon Card Styling */
.coming-soon-card {
    opacity: 0.8;
}

.coming-soon-card .game-gradient {
    opacity: 0.4;
}

.coming-soon-card .game-title {
    color: var(--text-muted);
}

.coming-soon-card .game-category {
    color: var(--text-muted);
}

.coming-soon-card .game-description {
    color: var(--text-muted);
}

.coming-soon-card .tag {
    background: rgba(136, 136, 136, 0.2);
    border: 1px solid rgba(136, 136, 136, 0.3);
    color: var(--text-muted);
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--red-light);
    border: 1px solid var(--red-accent);
    border-radius: 50px;
    color: var(--red-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--red-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(160, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: aboutGradientMove 15s ease-in-out infinite;
}

@keyframes aboutGradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(5%, -3%) scale(1.1);
        opacity: 0.9;
    }
    66% {
        transform: translate(-3%, 5%) scale(0.95);
        opacity: 0.95;
    }
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.about-feature {
    padding: 3rem;
    position: relative;
}

.feature-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(200, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--red-accent);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-accent));
    transition: width 0.6s ease;
}

.about-feature:hover .feature-line {
    width: 100%;
}

/* Games Section */
.games {
    position: relative;
    overflow: hidden;
}

.games-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(160, 0, 0, 0.1) 0%, transparent 40%);
    z-index: 0;
    animation: gamesGradientMove 20s ease-in-out infinite;
}

@keyframes gamesGradientMove {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.15) rotate(2deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(0.9) rotate(-2deg);
        opacity: 0.95;
    }
    75% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.92;
    }
}

.games-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(200, 0, 0, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 0, 0, 0.05) 50%, transparent 70%);
    background-size: 100px 100px;
    animation: gamesPatternMove 25s linear infinite;
    opacity: 0.6;
}

@keyframes gamesPatternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.game-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 0;
    overflow: hidden;
}

.game-showcase-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.game-showcase-item:nth-child(even) .game-showcase-image {
    order: 2;
}

.game-showcase-item:nth-child(even) .game-showcase-content {
    order: 1;
}

.game-showcase-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: comingSoonPulse 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes comingSoonPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.coming-soon-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(200, 0, 0, 0.5);
}

.game-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.tropicalypse-card .game-gradient {
    opacity: 0;
}

.ox13-card .game-gradient {
    opacity: 0;
}

.game-gradient-1 {
    background: linear-gradient(135deg, #8b0000, #c00000);
}

.game-gradient-2 {
    background: linear-gradient(135deg, #6b0000, #a00000);
}

.game-gradient-3 {
    background: linear-gradient(135deg, #9b0000, #d00000);
}

.game-gradient-4 {
    background: linear-gradient(135deg, #7b0000, #b00000);
}

.game-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: var(--red-accent);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 0 20px var(--red-glow);
}

.tropicalypse-card .game-badge {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.ox13-card .game-badge {
    background: linear-gradient(135deg, #ff0040, #c00030);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.8);
}

.game-showcase-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-category {
    color: var(--red-accent);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tropicalypse-card .game-category {
    color: #d4a574;
}

.ox13-card .game-category {
    color: #00ffff;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tropicalypse-card .game-title {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.ox13-card .game-title {
    color: #ff0040;
    text-shadow: 0 0 25px rgba(255, 0, 64, 0.8), 0 0 50px rgba(255, 0, 64, 0.4);
}

.game-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tropicalypse-card .game-description {
    color: #b0b8a0;
}

.ox13-card .game-description {
    color: #b0b0b0;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1.2rem;
    background: rgba(200, 0, 0, 0.1);
    border: 1px solid rgba(200, 0, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--red-accent);
    font-weight: 600;
}

.tropicalypse-card .tag {
    background: rgba(45, 74, 58, 0.3);
    border: 1px solid rgba(212, 165, 116, 0.4);
    color: #d4a574;
}

.ox13-card .tag {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #00ffff;
}

.game-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tropicalypse-card .game-cta {
    color: #d4af37;
}

.tropicalypse-card .game-cta:hover {
    color: #d4a574;
}

.ox13-card .game-cta {
    color: #00ffff;
}

.ox13-card .game-cta:hover {
    color: #ff0040;
}

.game-cta svg {
    transition: transform 0.3s ease;
}

.game-cta:hover {
    gap: 1.2rem;
    color: var(--text-primary);
}

.game-cta:hover svg {
    transform: translateX(5px);
}

/* Team Section */
.team {
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(200, 0, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(160, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: teamGradientMove 18s ease-in-out infinite;
}

@keyframes teamGradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(-4%, 4%) scale(1.08);
        opacity: 0.88;
    }
    66% {
        transform: translate(4%, -4%) scale(0.92);
        opacity: 0.92;
    }
}

.team::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(200, 0, 0, 0.03) 90deg, 
            transparent 180deg, 
            rgba(139, 0, 0, 0.03) 270deg, 
            transparent 360deg);
    z-index: 0;
    animation: teamConicRotate 30s linear infinite;
    opacity: 0.7;
}

@keyframes teamConicRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team .container {
    position: relative;
    z-index: 1;
}

.team-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    padding: 0;
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
}

.member-image {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
    opacity: 0.3;
}

.member-avatar {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(200, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--red-accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 0, 0, 0.1);
    border: 1px solid rgba(200, 0, 0, 0.3);
    border-radius: 10px;
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--red-accent);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--red-glow);
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(200, 0, 0, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(160, 0, 0, 0.12) 0%, transparent 60%);
    z-index: 0;
    animation: contactGradientMove 22s ease-in-out infinite;
}

@keyframes contactGradientMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(1.2) translate(3%, -3%);
        opacity: 0.85;
    }
    50% {
        transform: scale(0.85) translate(-3%, 3%);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.1) translate(2%, 2%);
        opacity: 0.88;
    }
}

.contact-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(200, 0, 0, 0.03) 2px,
            rgba(200, 0, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(139, 0, 0, 0.03) 2px,
            rgba(139, 0, 0, 0.03) 4px
        );
    z-index: 1;
    animation: contactGridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes contactGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.contact-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(200, 0, 0, 0.05) 40%, transparent 70%);
    z-index: 1;
    animation: contactPulse 8s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 3rem;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--red-accent);
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 0, 0, 0.1);
    border: 1px solid rgba(200, 0, 0, 0.3);
    border-radius: 16px;
    font-size: 1.5rem;
}

.method-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.method-details p {
    color: var(--text-secondary);
}

.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--red-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 25px var(--red-glow);
    background: rgba(20, 20, 20, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-accent);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--red-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        height: 400px;
    }

    .game-showcase-item {
        grid-template-columns: 1fr !important;
    }

    .game-showcase-item:nth-child(even) .game-showcase-image,
    .game-showcase-item:nth-child(even) .game-showcase-content {
        order: initial;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        padding: 3rem 0;
        gap: 2rem;
        backdrop-filter: blur(30px);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-grid,
    .team-showcase {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-card {
        width: 280px;
        height: 350px;
    }
}

/* Show default cursor on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
