body.football-app {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #eef4ff 0%, #dfe7fb 100%);
    color: #1b2440;
}

.football-shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 32px 20px 56px;
}

.football-card {
    background: #ffffff;
    border: 1px solid #d8e0f0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 45, 91, 0.12);
}

.football-auth {
    max-width: 680px;
    margin: 32px auto;
    overflow: hidden;
}

.football-auth__hero,
.football-panel__hero {
    background: linear-gradient(135deg, #102b74 0%, #2c57b8 100%);
    color: #ffffff;
    padding: 28px 32px;
}

.football-auth__hero h1,
.football-panel__hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
}

.football-auth__hero p,
.football-panel__hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.football-auth__body,
.football-panel__body {
    padding: 28px 32px 32px;
}

.football-form-grid {
    display: grid;
    gap: 18px;
}

.football-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.football-field input,
.football-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #bcc7df;
    border-radius: 12px;
    font-size: 1rem;
    background: #f9fbff;
}

.football-field small {
    display: block;
    color: #5c6785;
    margin-top: 6px;
}

.football-field--inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.football-field--inline input {
    width: auto;
}

.football-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.football-button,
.football-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 0;
    background: #15327d;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.football-button--secondary,
.football-button--secondary:visited {
    background: #edf2ff;
    color: #17357f;
    border: 1px solid #cbd6f0;
}

.football-button--danger,
.football-button--danger:visited {
    background: #fff1f1;
    color: #9d2235;
    border: 1px solid #f2c3cb;
}

.football-auth__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.football-auth__links button {
    background: none;
    border: 0;
    color: #17357f;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
}

.football-note,
.football-alert,
.football-success {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.football-note {
    background: #f2f6ff;
    border: 1px solid #d7e3ff;
    color: #33446f;
}

.football-alert {
    background: #fff3f3;
    border: 1px solid #f0c7c7;
    color: #8d2737;
}

.football-success {
    background: #eefbf2;
    border: 1px solid #c6e9cf;
    color: #24613c;
}

.football-panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 24px;
}

.football-panel-section {
    background: #ffffff;
    border: 1px solid #d8e0f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 26px rgba(31, 45, 91, 0.08);
}

.football-panel-section h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.football-panel-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.football-panel-meta strong {
    color: #102b74;
}

.football-rank-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.football-rank-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid #d8e0f0;
    border-radius: 12px;
    background: #f8faff;
    cursor: move;
}

.football-rank-handle {
    color: #5b6785;
    font-weight: 700;
}

.football-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 900px) {
    .football-panel-layout,
    .football-grid-two {
        grid-template-columns: 1fr;
    }

    .football-shell {
        padding: 20px 14px 40px;
    }

    .football-auth__hero,
    .football-panel__hero,
    .football-auth__body,
    .football-panel__body,
    .football-panel-section {
        padding: 20px;
    }
}
