.weo-shell {
    max-width: 1100px;
    margin: 0 auto;
    color: #f6f0e6;
}

.weo-hero {
    background: linear-gradient(135deg, #1a1717, #2a2020);
    border: 1px solid #7e1f28;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.weo-mode-switch {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    border: 1px solid rgba(216, 161, 90, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.weo-mode-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    color: #f8e2c3;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.weo-mode-link:hover,
.weo-mode-link:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.weo-mode-link-active {
    background: #c3202d;
    color: #ffffff;
}

.weo-kicker {
    margin: 0 0 8px;
    color: #d8a15a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.weo-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
}

.weo-copy {
    margin: 12px 0 0;
    color: #f4d8ba;
    font-size: 1rem;
    line-height: 1.6;
}

.weo-location-pill {
    display: inline-block;
    margin: 14px 0 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(216, 161, 90, 0.12);
    border: 1px solid rgba(216, 161, 90, 0.28);
    color: #f8e2c3;
    font-size: 0.95rem;
}

.weo-card,
.weo-choice-card {
    background: #231f1f;
    border: 1px solid #473737;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.weo-card {
    margin-top: 24px;
    padding: 28px 32px;
}

.weo-booked-league-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.weo-booked-league-card h2 {
    margin: 0;
    color: #ffffff;
}

.weo-booked-league-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.weo-booked-league-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 220px;
}

.weo-quick-picker {
    margin-top: 24px;
}

.weo-picker-label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.weo-picker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.weo-picker-row .weo-input {
    flex: 1 1 340px;
}

.weo-picker-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.weo-form {
    display: block;
}

.weo-grid,
.weo-choice-grid {
    display: grid;
    gap: 20px;
}

.weo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.weo-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    align-items: start;
}

.weo-field label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.weo-input {
    width: 100%;
    border: 1px solid #5a4545;
    border-radius: 10px;
    background: #141212;
    color: #ffffff;
    padding: 12px 14px;
}

.weo-input:focus {
    outline: none;
    border-color: #c3202d;
    box-shadow: 0 0 0 3px rgba(195, 32, 45, 0.22);
}

.weo-inline-link {
    color: #f8e2c3;
    font-weight: 700;
}

.weo-inline-link:hover,
.weo-inline-link:focus {
    color: #ffffff;
}

.weo-field-full {
    grid-column: 1 / -1;
}

.weo-actions {
    margin-top: 24px;
}

.weo-button {
    display: inline-block;
    border: none;
    border-radius: 999px;
    background: #c3202d;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 22px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.weo-button:hover,
.weo-button:focus {
    background: #a91b26;
    color: #ffffff;
}

.weo-button-secondary {
    background: #3a2e2e;
}

.weo-button-secondary:hover,
.weo-button-secondary:focus {
    background: #524141;
}

.weo-choice-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weo-choice-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.weo-choice-card p {
    color: #f4d8ba;
    line-height: 1.6;
    margin: 0;
}

.weo-validation,
.weo-field-error {
    color: #ff8b93;
}

.weo-validation {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .weo-booked-league-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .weo-booked-league-actions {
        width: 100%;
    }

    .weo-picker-row {
        align-items: stretch;
    }

    .weo-grid,
    .weo-choice-grid {
        grid-template-columns: 1fr;
    }
}
