.gkt-last-match,
.gkt-next-match {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 40px 24px;
    text-align: center;
    color: #fff;
}

.gkt-last-match-inner,
.gkt-next-match-inner {
    position: relative;
    z-index: 2;
}

.gkt-match-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 24px;
    padding: 4px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
}

.gkt-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gkt-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}

.gkt-team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}

.gkt-team-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.gkt-match-vs {
    flex-shrink: 0;
}

.gkt-vs-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.6;
}

.gkt-match-score {
    margin-bottom: 16px;
}

.gkt-score-text {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 4px;
}

.gkt-match-meta,
.gkt-match-info {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.8;
}

.gkt-meta-item,
.gkt-info-item {
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.gkt-countdown-wrapper {
    margin-top: 24px;
}

.gkt-countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.gkt-cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    padding: 12px 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
}

.gkt-cd-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.gkt-cd-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.7;
}

.gkt-booking-wrap {
    margin-top: 16px;
}

.gkt-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gkt-booking-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.gkt-booking-btn.gkt-btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

.gkt-booking-btn.gkt-btn-large {
    padding: 18px 44px;
    font-size: 18px;
}

.gkt-btn-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.gkt-countdown-style-1 .gkt-cd-item {
    background: transparent;
    padding: 8px 4px;
}

.gkt-countdown-style-1 .gkt-cd-item + .gkt-cd-item {
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 16px;
}

.gkt-countdown-style-2 .gkt-cd-item {
    background: rgba(0,0,0,0.25);
    padding: 16px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 72px;
}

.gkt-countdown-style-3 .gkt-cd-item {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-style: dashed;
    padding: 14px 12px;
}

.gkt-countdown-style-4 .gkt-cd-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 14px;
}

.gkt-countdown-style-5 .gkt-cd-item {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 14px;
}

@media (max-width: 768px) {
    .gkt-last-match,
    .gkt-next-match {
        padding: 28px 16px;
    }

    .gkt-match-teams {
        gap: 16px;
    }

    .gkt-team-logo {
        width: 60px;
        height: 60px;
    }

    .gkt-score-text {
        font-size: 32px;
    }

    .gkt-cd-number {
        font-size: 22px;
    }

    .gkt-countdown {
        gap: 8px;
    }

    .gkt-cd-item {
        min-width: 56px;
        padding: 10px 6px;
    }
}

@media (max-width: 480px) {
    .gkt-match-teams {
        flex-direction: column;
        gap: 12px;
    }

    .gkt-team {
        min-width: auto;
    }

    .gkt-match-vs {
        order: -1;
    }
}
