/* =============================================
   Playvora Arena — Landing Page
   ============================================= */

/* Hero */
.pv-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% -10%, rgba(108, 99, 255, 0.3) 0%, transparent 60%),
                var(--pv-dark);
}

.pv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--pv-primary-glow);
    border: 1px solid rgba(108, 99, 255, 0.4);
    color: var(--pv-primary);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: var(--pv-primary);
    position: relative;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--pv-text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 320px;
    margin: 0 auto;
}

.game-cell {
    aspect-ratio: 1;
    background: var(--pv-card);
    border: 1px solid var(--pv-card-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
    animation: float-cell 4s ease-in-out infinite;
}

.game-cell:nth-child(2) { animation-delay: 0.3s; }
.game-cell:nth-child(3) { animation-delay: 0.6s; }
.game-cell:nth-child(4) { animation-delay: 0.9s; }
.game-cell:nth-child(5) { animation-delay: 1.2s; }
.game-cell:nth-child(6) { animation-delay: 1.5s; }
.game-cell:nth-child(7) { animation-delay: 1.8s; }
.game-cell:nth-child(8) { animation-delay: 2.1s; }
.game-cell:nth-child(9) { animation-delay: 2.4s; }

@keyframes float-cell {
    0%, 100% { transform: translateY(0); box-shadow: none; }
    50%       { transform: translateY(-6px); box-shadow: 0 8px 25px var(--pv-primary-glow); }
}

/* Stats bar */
.pv-stats {
    background: var(--pv-dark-2);
    border-top: 1px solid var(--pv-card-border);
    border-bottom: 1px solid var(--pv-card-border);
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pv-primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--pv-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.pv-section {
    padding: 5rem 0;
}

.section-tag {
    color: var(--pv-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--pv-text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Feature cards */
.feature-card {
    background: var(--pv-card);
    border: 1px solid var(--pv-card-border);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--pv-primary-glow);
    border-color: var(--pv-primary);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--pv-primary-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pv-primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--pv-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Games showcase */
.game-card {
    background: var(--pv-card);
    border: 1px solid var(--pv-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--pv-primary-glow);
}

.game-card-preview {
    aspect-ratio: 16/9;
    background: var(--pv-dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid var(--pv-card-border);
}

.game-card-body {
    padding: 1.25rem;
}

.game-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.game-badge.available {
    background: rgba(81, 207, 102, 0.1);
    color: var(--pv-success);
    border: 1px solid rgba(81, 207, 102, 0.3);
}

.game-badge.coming {
    background: rgba(108, 99, 255, 0.1);
    color: var(--pv-text-muted);
    border: 1px solid var(--pv-card-border);
}

/* CTA Section */
.pv-cta {
    background: linear-gradient(135deg, var(--pv-dark-2) 0%, rgba(108, 99, 255, 0.05) 100%);
    border-top: 1px solid var(--pv-card-border);
    border-bottom: 1px solid var(--pv-card-border);
    padding: 5rem 0;
    text-align: center;
}
