:root {
    /* Colors */
    --c-primary: #020617;
    --c-secondary: #06121c;
    --c-neon-aqua: #00f5ff;
    --c-deep-blue: #0077ff;
    --c-lime: #39ff14;
    --c-purple: #7b61ff;
    --c-coral: #ff6b6b;
    
    --c-text-main: #e2e8f0;
    --c-text-muted: #94a3b8;
    
    --glass-bg: rgba(2, 6, 23, 0.4);
    --glass-border: rgba(0, 245, 255, 0.15);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Gradients */
    --grad-ocean: linear-gradient(135deg, #00f5ff, #0077ff);
    --grad-bio: linear-gradient(135deg, #39ff14, #00f5ff);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-primary);
    color: var(--c-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,245,255,0.4) 0%, rgba(0,245,255,0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-glow.active {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(57,255,20,0.4) 0%, rgba(57,255,20,0) 70%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.neon-text {
    color: var(--c-neon-aqua);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5), 0 0 20px rgba(0, 245, 255, 0.3);
}

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

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -20px;
    background: rgba(0, 245, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.1);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Header & Nav */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.glass-nav.scrolled {
    padding: 10px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text-main);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--c-neon-aqua);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--c-neon-aqua);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.btn-glow {
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--c-neon-aqua);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2), inset 0 0 10px rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-glow:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5), inset 0 0 15px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

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

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

.hero-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.overlay-vignette {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--c-primary) 100%);
    opacity: 0.9;
}

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

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    margin-bottom: 40px;
}

.hero-legal-box {
    padding: 15px 25px;
    display: inline-block;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.glow-border {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 16px;
    border: 1px solid transparent;
    box-shadow: inset 0 0 20px rgba(0, 245, 255, 0.1);
    pointer-events: none;
}

/* Ocean World Split */
.split-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, var(--c-secondary), transparent);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.split-content p {
    color: var(--c-text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.glass-frame {
    padding: 10px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 12px;
}

.hover-float {
    transition: transform 0.5s ease;
}
.hover-float:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Game Showcase */
.game-showcase {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.subtitle {
    color: var(--c-text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.game-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.game-aura {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 105%; height: 105%;
    background: radial-gradient(circle, rgba(0,245,255,0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseAura 4s infinite alternate;
}

@keyframes pulseAura {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.iframe-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid var(--c-neon-aqua);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    background: #000;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-neon-aqua);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

.icon-glow {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.icon-glow svg {
    width: 30px; height: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

/* Parallax Depth Section */
.parallax-depth {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.parallax-img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--c-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.trust-card {
    padding: 25px;
    text-align: center;
    border-color: rgba(255,255,255,0.05);
}

.trust-card h4 {
    color: var(--c-neon-aqua);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* Footer */
.glass-footer {
    background: rgba(2, 6, 23, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--c-text-muted);
    margin-top: 15px;
    font-size: 0.9rem;
}

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

.link-col h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.link-col a {
    display: block;
    color: var(--c-text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-col a:hover {
    color: var(--c-neon-aqua);
}

.footer-legal-box {
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-legal-box p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.footer-bottom a {
    color: var(--c-text-muted);
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--c-neon-aqua);
}

/* Internal Pages Layout */
.page-body {
    padding-top: 100px;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, var(--c-secondary) 0%, var(--c-primary) 100%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--c-text-muted);
    font-size: 1.2rem;
}

.content-section {
    padding: 60px 0 100px;
}

.text-content {
    padding: 40px;
}

.text-content h2 {
    color: var(--c-neon-aqua);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    margin-bottom: 15px;
    color: var(--c-text-main);
}

.text-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--c-text-main);
}

.text-content li {
    margin-bottom: 10px;
}

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

/* Contact Form */
.contact-container {
    max-width: 600px;
}

.contact-form-wrapper {
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.glass-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s;
    outline: none;
}

.glass-input:focus {
    border-color: var(--c-neon-aqua);
    box-shadow: 0 0 10px rgba(0,245,255,0.1);
}

.w-100 { width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* In a real app, implement a hamburger menu */
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .text-content {
        padding: 20px;
    }
}