.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    text-align: center;
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 62, 62, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-play {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 18px 48px;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.4);
}

.btn-play:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ff5252;
    box-shadow: 0 15px 35px rgba(255, 62, 62, 0.6);
    color: white;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: btnGlow 3s infinite linear;
    pointer-events: none;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 1);
    animation: pulse 2s infinite;
}

/* Elementos flutuantes (Pokémons) */
.float-poke {
    position: absolute;
    width: clamp(60px, 10vw, 100px);
    pointer-events: none;
}

.poke-1 {
    top: 20%;
    left: 10%;
    animation: floating 6s infinite ease-in-out;
}

.poke-2 {
    bottom: 20%;
    right: 15%;
    animation: floating 8s infinite ease-in-out reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes btnGlow {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(-30%, -30%) rotate(360deg); }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-container {
        padding-top: 100px;
    }
    .poke-1, .poke-2 {
        opacity: 0.5;
        width: 60px;
    }
}