:root {
    --primary-green: #00ff88;
    --primary-green-hover: #00cc66;
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-gray: #374151;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0, 255, 136, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 136, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

section {
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

footer {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gray);
}

@supports not (backdrop-filter: blur(10px)) {
    footer {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

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

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.gap-8 {
    gap: 2rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.min-h-screen {
    min-height: 100vh;
}

.aspect-414\/233 {
    aspect-ratio: 414 / 233;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.lg\:p-6 {
    padding: 1.5rem;
}

.lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.w-8 {
    width: 2rem;
    height: 2rem;
}

.w-12 {
    width: 3rem;
    height: 3rem;
}

.w-16 {
    width: 4rem;
    height: 4rem;
}

.h-8 {
    height: 2rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.333;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.333;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.333;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.333;
}

.max-w-6xl {
    max-width: 72rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-3 {
    gap: 0.75rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-x-12 > * + * {
    margin-left: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.1);
}

.border {
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-gray);
}

.border-gray-700 {
    border-color: #374151;
}

.bg-black\/80 {
    background-color: rgba(0, 0, 0, 0.8);
}

.text-green-400 {
    color: #00ff88;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.border-t {
    border-top: 1px solid var(--border-gray);
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--primary-green), var(--primary-green-hover));
}

.flex items-center justify-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-bold {
    font-weight: 700;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.333;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.333;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.333;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.375rem;
    line-height: 1;
}

.font-['Orbitron'] {
    font-family: 'Orbitron', monospace;
}

.font-['Inter'] {
    font-family: 'Inter', sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-colors {
    transition: color 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:translate-y-\-4px:hover {
    transform: translateY(-4px);
}

.bg-black {
    background-color: #000000;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.overflow-hidden {
    overflow: hidden;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.pointer-events-none {
    pointer-events: none;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black\/90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    
    .lg\:hidden {
        display: none;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:items-center {
        align-items: center;
    }
    
    .lg\:justify-between {
        justify-content: space-between;
    }
    
    .lg\:space-y-0 > * + * {
        margin-left: 3rem;
        margin-top: 0;
    }
    
    .lg\:p-6 {
        padding: 1.5rem;
    }
    
    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 1.333;
    }
    
    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 1.333;
    }
    
    .lg\:mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .lg\:mb-16 {
        margin-bottom: 4rem;
    }
    
    .lg\:gap-8 {
        gap: 2rem;
    }
    
    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.333;
    }
}

@media (max-width: 1024px) {
    .lg\:hidden {
        display: none;
    }
}

@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .text-4xl {
        font-size: 2.25rem;
        line-height: 1;
    }
    
    .text-5xl {
        font-size: 3rem;
        line-height: 1.333;
    }
    
    .text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .text-7xl {
        font-size: 4.375rem;
        line-height: 1;
    }
    
    .lg\:text-6xl {
        font-size: 2.25rem;
    }
    
    .lg\:text-2xl {
        font-size: 1.25rem;
    }
    
    .lg\:text-3xl {
        font-size: 1.5rem;
    }
    
    .lg\:text-5xl {
        font-size: 2.5rem;
    }
    
    .lg\:text-7xl {
        font-size: 3rem;
    }
    
    .grid {
        display: grid;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.pointer-events-auto {
    pointer-events: auto;
}

.pointer-events-none {
    pointer-events: none;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.font-Orbitron {
    font-family: 'Orbitron', monospace;
}

.font-Inter {
    font-family: 'Inter', sans-serif;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.333;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.333;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.333;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.333;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.375rem;
    line-height: 1;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top: 1px solid var(--border-gray);
}

.border-white {
    border-color: #ffffff;
}

.border-gray-800 {
    border-color: #1f2937;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.text-white,
.text-gray,
.text-xl,
.text-lg,
.text-4xl,
.text-6xl,
.text-7xl {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.text-gray-300 {
    color: #d1d5db;
}

.bg-black\/25 {
    background-color: rgba(0, 0, 0, 0.25);
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:border-green-400:hover {
    border-color: #00ff88;
}

.hover\:text-green-400:hover {
    color: #00ff88;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
}

@supports not (backdrop-filter: blur(4px)) {
    .backdrop-blur-sm {
        background: rgba(0, 0, 0, 0.5);
    }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/studio-bg.svg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease;
}

nav:hover,
nav.nav-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

@supports not (backdrop-filter: blur(10px)) {
    nav {
        background-color: rgba(0, 0, 0, 0.95);
    }
}

.logo-gradient {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-hover));
}

.nav-logo {
    width: 64px;
    height: 64px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-right-logos {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 3000;
    transition: all 0.3s ease;
}

.logo-link {
    display: block;
    transition: all 0.3s ease;
    opacity: 0.8;
    touch-action: manipulation;
}

.logo-link:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: grayscale(0%) drop-shadow(0 0 12px rgba(0, 255, 136, 0.6));
}

.top-right-social {
    position: fixed;
    top: 6rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 3000;
    flex-direction: column;
    align-items: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    touch-action: manipulation;
}

@supports not (backdrop-filter: blur(10px)) {
    .social-icon {
        background: rgba(0, 0, 0, 0.6);
    }
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary-green);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.social-icon:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.social-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
}

.social-icon.youtube:hover {
    background: rgba(234, 67, 53, 0.2);
    color: #EA4335;
}

.social-icon.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    color: #E1306C;
}

.social-icon.discord:hover {
    background: rgba(114, 137, 218, 0.2);
    color: #7289DA;
}

.social-icon.tiktok:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #000000;
}

.action-button {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--text-white);
    border-radius: 0.375rem;
    padding: 1rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    touch-action: manipulation;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.action-button.enhanced {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: rgba(0, 0, 0, 0.656);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--text-white);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 200px;
}

.action-button.enhanced .button-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.action-button.enhanced:hover .button-icon {
    transform: scale(1.2);
}

.action-button.enhanced:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    text-decoration: none;
}

.action-button.enhanced:active {
    transform: scale(0.98);
}

.action-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    width: 100%;
    max-width: 800px;
}

.action-button.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.action-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

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

.social-link:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    contain: layout style;
    will-change: transform, box-shadow;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.1);
}

.game-image img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    contain: layout style;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
    contain: content;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    color: var(--primary-green);
}

.team-member:active {
    transform: translateY(-2px) scale(0.98);
}

.team-avatar {
    transition: transform 0.3s ease;
    contain: layout style;
}

.team-member:hover .team-avatar {
    transform: scale(1.05);
}

.nav-link,
.mobile-nav-link {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link::after,
.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.mobile-nav-link:hover::after {
    width: 100%;
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card,
.game-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.about-card::before,
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.about-card:hover::before,
.game-card:hover::before {
    left: 100%;
}

.about-card:active,
.game-card:active {
    transform: translateY(-2px) scale(0.98);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.loading-spinner {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--border-gray);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button,
a {
    touch-action: manipulation;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-hover);
}

@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

.drop-shadow-glow-green {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
}

.drop-shadow-glow-white {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.content-area {
    z-index: 1000 !important;
    pointer-events: auto !important;
}

.background-fallback {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: -10 !important;
    display: none !important;
}

.background-video {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    z-index: -10 !important;
    will-change: transform !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    contain: strict !important;
}

.background-overlay {
    display: none;
}

#mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    max-height: 500px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.contact-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-green);
    animation: spin 1s ease-in-out infinite;
}

.form-success {
    border-color: var(--primary-green) !important;
    background: rgba(0, 255, 136, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2) !important;
}

.form-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.active {
    display: flex !important;
}

img {
    contain: layout style paint;
    will-change: transform;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

.animated {
    contain: layout style paint;
    will-change: transform, opacity;
}

.nav-scrolled {
    will-change: background-color;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:max-h-64 {
        max-height: 16rem;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 1.333;
    }

    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .lg\:mb-6 {
        margin-bottom: 1.5rem;
    }

    .lg\:mb-16 {
        margin-bottom: 4rem;
    }

    .lg\:gap-8 {
        gap: 2rem;
    }

    .lg\:p-6 {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .action-button {
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
    }

    .action-buttons-container {
        gap: 0.75rem;
    }

    .lg\:px-12 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

#about,
#games {
    text-align: center;
}

#about > div,
#games > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#about .about-card,
#games .game-card {
    max-width: 400px;
    margin: 0 auto;
}

#about .text-lg,
#about .text-xl,
#games .text-gray-300 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#games .flex.gap-4 {
    justify-content: center;
}

@media (min-width: 1280px) {
    .text-4xl.lg\:text-6xl.xl\:text-7xl.font-Orbitron.font-bold.mb-4.lg\:mb-6 {
        font-size: 4.375rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .action-button {
        padding: 0.875rem 1.5rem;
        font-size: 1.125rem;
    }

    .action-buttons-container {
        gap: 0.75rem;
    }

    .lg\:px-12 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .lg\:py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .bottom-right-logos {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .top-right-social {
        top: 5rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-svg {
        width: 18px;
        height: 18px;
    }

    nav {
        padding: 1rem;
    }

    #home {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem;
    }

    #home > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 100%;
    }

    #home img {
        max-width: 200px;
        height: auto;
    }

    #home h1 {
        font-size: 1.75rem;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
    }

    #home p {
        text-align: center;
        max-width: 100%;
    }

    .action-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    #home > div > div {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .about-card,
    .game-card,
    .contact-form {
        padding: 1.5rem;
        text-align: center;
    }

    #about > div,
    #games > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #about .grid,
    #games .grid {
        display: grid;
        width: 100%;
    }

    #about .about-card,
    #games .game-card {
        max-width: 400px;
        margin: 0 auto;
    }

    #about .text-lg,
    #about .text-xl,
    #games .text-gray-300 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #games .flex.gap-4 {
        justify-content: center;
    }

    .team-avatar img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .bottom-right-logos {
        bottom: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        align-items: flex-end;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .top-right-social {
        top: 4rem;
        right: 0.5rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-svg {
        width: 16px;
        height: 16px;
    }

    .text-4xl.lg\:text-6xl.xl\:text-7xl.font-Orbitron.font-bold.mb-4.lg\:mb-6 {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

    .text-xl.lg\:text-2xl.mb-12.lg\:mb-16.font-light.max-w-3xl.mx-auto {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .bg-black\/25.backdrop-blur-sm.border-2.border-white.rounded-sm.px-8.py-4.lg\:px-12.lg\:py-6.text-white.font-bold.text-lg.lg\:text-xl.uppercase.tracking-wide.transition-all {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }

    .nav-logo {
        width: 48px;
        height: 48px;
    }

    .footer-logo {
        width: 28px;
        height: 28px;
    }

    .about-card,
    .game-card,
    .contact-form {
        padding: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    #about .text-lg,
    #about .text-xl {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}