/* ZW Soccer Premium - Native Telegram Theme with #faa000 Accent */
/* Uses Telegram's native colors, only adds brand accents */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', Helvetica, sans-serif;
    background: var(--tg-theme-bg-color);
    color: var(--tg-theme-text-color);
    padding: 0;
    margin: 0;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

/* Cards - uses native secondary bg */
.insight-card {
    background: var(--tg-theme-secondary-bg-color);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.team-logo {
    font-size: 28px;
}

/* Match teams */
.team {
    text-align: center;
    flex: 1;
}

.team-name {
    font-weight: 600;
    font-size: var(--fs-sm);
    margin-bottom: 4px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.tab {
    padding: 8px 16px;
    background: var(--tg-theme-secondary-bg-color);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    color: var(--tg-theme-text-color);
}

.tab.active {
    background: #faa000;
    color: #000000;
}

/* Standings table */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.standings-table th,
.standings-table td {
    padding: 10px 6px;
    text-align: left;
    border-bottom: 0.5px solid var(--tg-theme-hint-color);
    opacity: 0.8;
}

.standings-table th {
    color: #faa000;
    font-weight: 600;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--tg-theme-hint-color);
}

.empty-state .emoji {
    font-size: 3rem;
    margin-bottom: 12px;
}