:root {
    --pink: #FF1493;
    --pink-glow: rgba(255, 20, 147, 0.6);
    --cyan: #00FFFF;
    --cyan-glow: rgba(0, 255, 255, 0.6);
    --bg-dark: #09050F;
    --card-bg: rgba(20, 10, 30, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --orange: #FF8C00;
    --purple: #9D00FF;
    --red: #FF3333;
    --green: #32CD32;
    
    --text-light: #F8F8F8;
    --text-muted: #B0A8B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}


.text-pink { 
    color: var(--pink); 
    text-shadow: 0 0 10px var(--pink-glow);
}
.text-cyan { 
    color: var(--cyan); 
    text-shadow: 0 0 10px var(--cyan-glow);
}
.justify-center { justify-content: center !important; }
.mt-4 { margin-top: 2rem; }


.main-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.05) 0%, rgba(9,5,15,0.5) 100%);
}


.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(9, 5, 15, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255,20,147,0.5));
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a.active {
    color: var(--text-light);
    border-bottom: 2px solid var(--pink);
    padding-bottom: 4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-light);
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    border-color: var(--pink);
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 20px var(--pink-glow);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FF1493, #D00070);
    color: white;
    box-shadow: 0 8px 25px var(--pink-glow);
    border: 1px solid rgba(255, 20, 147, 0.5);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px var(--pink-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1050px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.main-card {
    padding: 5rem 3.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('card-hero.png') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
    border-radius: 24px;
    pointer-events: none;
}

.main-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 40px var(--pink-glow);
    opacity: 0.15;
    pointer-events: none;
    border-radius: 24px;
}

.hero-app-icon {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 25px rgba(255, 20, 147, 0.4);
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.hero-app-icon:hover {
    transform: scale(1.08) rotate(-5deg);
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    line-height: 1.1;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
    z-index: 10;
}

.store-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 10;
}


.game-modes {
    padding: 8rem 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 5rem;
    font-size: 1.2rem;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mode-card {
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.05);
}

.mode-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    background: rgba(30, 15, 45, 0.6);
}

.mode-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.mode-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #FFF;
}

.mode-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}


.download-section {
    padding: 4rem 0 10rem;
}

.download-content {
    text-align: center;
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(20,10,30,0.4) 0%, rgba(10,5,15,0.8) 100%);
}

.app-icon-large {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease;
}

.download-content:hover .app-icon-large {
    transform: scale(1.05) rotate(2deg);
}

.download-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #FFF, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


footer {
    background: #040208;
    padding: 4rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 2.5rem;
    opacity: 0.8;
}

.footer-content p {
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
}


.contacto-section {
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.contacto-card {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-light);
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    width: 140px;
}

.social-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

.social-svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.social-card:hover .instagram { color: #E1306C; filter: drop-shadow(0 0 10px rgba(225,48,108,0.6)); }
.social-card:hover .facebook { color: #1877F2; filter: drop-shadow(0 0 10px rgba(24,119,242,0.6)); }
.social-card:hover .tiktok { color: #FFF; filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); }
.social-card:hover .discord { color: #5865F2; filter: drop-shadow(0 0 10px rgba(88,101,242,0.6)); }

.social-card:hover .social-svg {
    transform: scale(1.1);
}

.social-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}


@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .main-card {
        padding: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .download-content h2 {
        font-size: 2.2rem;
    }
    
    .mode-card {
        padding: 2rem 1.5rem;
    }
}
