.wellball-pickem-app {
    width: 100%;
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 16px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.wellball-pickem-card {
    width: 100%;
    max-width: 480px;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 24px;
    box-sizing: border-box;
}

.wellball-pickem-card h1 {
    font-size: 30px;
    line-height: 1.05;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.wellball-subtitle {
    color: #cfcfcf;
    font-size: 15px;
    margin-bottom: 24px;
}

.wellball-pickem-card label {
    display: block;
    margin: 14px 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bdbdbd;
}

.wellball-pickem-card input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #333333;
    background: #050505;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
}

.wellball-pickem-card button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.wellball-status-pill {
    display: inline-block;
    padding: 7px 12px;
    background: #ffffff;
    color: #000000;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

#wellball-question-text {
    font-size: 24px;
    line-height: 1.15;
    margin: 8px 0 20px;
}

.wellball-option-button {
    width: 100%;
    display: block;
    margin: 10px 0;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #3a3a3a;
    background: #1b1b1b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.wellball-option-button:hover {
    background: #2a2a2a;
}

#wellball-confirmation {
    color: #00ff99;
    font-weight: 700;
    min-height: 24px;
}

.wellball-score-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 14px;
    background: #050505;
    border: 1px solid #2a2a2a;
    font-size: 18px;
    font-weight: 800;
}

.wellball-leader-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.wellball-option-button:disabled,
.wellball-pickem-card button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#wellball-leaderboard-screen {
    margin-top: 28px;
}

#wellball-leaderboard-screen h2 {
    margin-bottom: 10px;
}