.schedule-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.round-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 111, 81, 0.3);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:disabled {
    background: var(--border-color);
    box-shadow: none;
    cursor: not-allowed;
}

.nav-icon {
    font-weight: bold;
}

.round-info {
    text-align: center;
    flex: 1;
}

.round-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.round-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.round-status.status-finished {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success-color);
}

.round-status.status-upcoming {
    background: rgba(244, 162, 97, 0.1);
    color: var(--primary-color);
}

.round-status.status-postponed {
    background: rgba(214, 48, 49, 0.1);
    color: var(--danger-color);
}

.round-status.status-playing {
    background: rgba(99, 102, 241, 0.15);
    color: var(--playing-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.match-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.match-card:active {
    transform: scale(0.98);
}

.match-card.postponed {
    background: rgba(214, 48, 49, 0.05);
    border-left: 4px solid var(--danger-color);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.match-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.match-status-tag {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.match-status-tag.finished {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success-color);
}

.match-status-tag.upcoming {
    background: rgba(244, 162, 97, 0.1);
    color: var(--primary-color);
}

.match-status-tag.postponed {
    background: rgba(214, 48, 49, 0.1);
    color: var(--danger-color);
}

.match-status-tag.playing {
    background: rgba(99, 102, 241, 0.15);
    color: var(--playing-color);
    animation: pulse 2s infinite;
}

.match-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team {
    flex: 1;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.team-badge {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: var(--bg-color);
    object-fit: contain;
}

.match-score {
    padding: 0.5rem 1rem;
    text-align: center;
}

.score-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score-text.placeholder {
    color: var(--text-light);
    font-size: 1.2rem;
}

.venue {
    text-align: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.round-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.round-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.round-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.round-dot:hover {
    background: var(--primary-light);
}

@media (max-width: 480px) {
    .team-name {
        font-size: 1rem;
    }
    
    .score-text {
        font-size: 1.5rem;
    }
    
    .match-card {
        padding: 0.75rem;
    }
}
