/* Home View Styles */
.home-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.home-header {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    -webkit-text-fill-color: initial;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.create-room-card, .join-room-card {
    width: 100%;
}

.create-room-card h2, .join-room-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.spinner-center {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.spinner-center .spinner {
    position: static;
    width: 30px;
    height: 30px;
}
