/**
 * KnowYaKind - Homepage Specific Styles
 * Styles specific to index.html
 */

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
    width: 100%;
}

.hero-logo {
    height: 300px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.badge {
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.badge:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Players List */
.players-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.player-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.player-item:hover {
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.1);
}

.player-name {
    font-weight: 500;
    color: var(--text-primary);
}

.player-score {
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Countdown */
.countdown-display {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 2rem;
    animation: pulse 1s ease-in-out infinite;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 3rem 0 2rem;
    }

    .hero-logo {
        height: 140px;
        max-width: 90%;
        margin: 0 auto 1rem;
    }

    .countdown-display {
        font-size: 2rem;
    }
}
