@import './common.css';

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px 20px;
}

.hero .subline {
    font-size: 1.1em;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto var(--gap-lg);
}

/* ENnie Badge */
.ennie-badge {
    text-align: center;
    padding: var(--gap-md) 20px var(--gap-lg);
    color: var(--color-accent);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1em;
}

.ennie-badge .categories {
    font-family: var(--font-body);
    font-size: 0.85em;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Evolve Spotlight (temporary campaign section) */
.evolve-spotlight {
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-surface-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.evolve-spotlight .evolve-image {
    max-width: 400px;
    margin: 0 auto var(--gap-lg);
    display: block;
}

.evolve-spotlight .cta-row {
    display: flex;
    justify-content: center;
    gap: var(--gap-md);
    flex-wrap: wrap;
    margin-top: var(--gap-md);
}

/* Newsletter */
.newsletter {
    text-align: center;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: var(--gap-sm);
    margin-top: var(--gap-md);
    flex-wrap: wrap;
}

.newsletter input[type="email"] {
    padding: 10px 16px;
    border: 1px solid var(--color-surface-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
    min-width: 250px;
}

.newsletter input[type="email"]::placeholder {
    color: var(--color-text-muted);
}

.newsletter-confirmation {
    margin-top: var(--gap-md);
    color: var(--color-text-muted);
    font-style: italic;
}

/* Latest News */
.latest-news .news-entry {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--gap-sm) 0;
    border-bottom: 1px solid var(--color-surface-border);
    max-width: 500px;
    margin: 0 auto;
}

.latest-news .news-date {
    color: var(--color-text-muted);
    font-size: 0.9em;
    white-space: nowrap;
    margin-left: var(--gap-md);
}

.latest-news .see-all {
    display: block;
    text-align: center;
    margin-top: var(--gap-md);
}

/* Game card tint borders — moved to common.css */

/* Coming soon badge */
.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75em;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    background: var(--color-accent-transparent);
    color: var(--color-accent);
    margin-left: var(--gap-sm);
    vertical-align: middle;
}

@media (max-width: 767px) {
    .hero {
        padding: 40px 20px 10px;
    }

    .evolve-spotlight {
        padding: 30px 20px;
    }

    .evolve-spotlight .evolve-image {
        max-width: 280px;
    }

    .evolve-spotlight .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .evolve-spotlight .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
