body {
    font-family: 'Cairo', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

.match-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 500px;
    padding: 30px 20px;
    text-align: center;
}

.header {
    font-size: 0.95rem;
    color: #5f6368;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.header strong {
    color: #202124;
    font-weight: 600;
}

.teams-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team img {
    width: 70px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

.team .name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 6px;
}

.team .rank {
    background-color: #f1f3f4;
    color: #5f6368;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.vs {
    font-size: 1.1rem;
    font-weight: bold;
    color: #5f6368;
    flex: 0.5;
}

.match-info {
    font-size: 0.9rem;
    color: #5f6368;
    margin-bottom: 25px;
}

.countdown-wrapper {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8eaed;
    margin-bottom: 20px;
}

.countdown-title {
    font-size: 0.9rem;
    color: #202124;
    font-weight: 600;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    direction: ltr;
}

.time-box {
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 10px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.time-box span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1.2;
}

.time-box small {
    font-size: 0.75rem;
    color: #5f6368;
    font-weight: 600;
    margin-top: 4px;
}

.match-started {
    color: #1e8e3e;
    font-size: 1.2rem;
    font-weight: bold;
}

.watch-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.watch-btn:hover:not(:disabled) {
    background-color: #1557b0;
}

.watch-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.watch-btn:disabled {
    background-color: #e0e0e0;
    color: #5f6368;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 400px) {
    .teams-container { padding: 0; }
    .team img { width: 60px; height: 40px; }
    .time-box { width: 55px; padding: 8px; }
    .time-box span { font-size: 1.3rem; }
}
