body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 15px;
    background-color: #f0f0f0;
}

.mobile-container {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.match-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

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

.team h2 {
    margin: 0 0 10px 0;
    color: #444;
    font-size: 18px;
}

.score {
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
}

.vs {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin: 0 15px;
}

.last-update {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

.mobile-page {
    background: var(--bg-darker);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mobile-frame {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-content {
    text-align: center;
}

.match-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.match-time {
    font-size: 1.2rem;
    font-weight: 600;
}

.match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.score-separator {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color-muted);
    margin: 0 1rem;
}

.match-info {
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

.auto-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.auto-refresh i {
    animation: rotate 2s linear infinite;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} 