/* ── Header card ─────────────────────────────────────────────── */
.gct-header-card {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.4rem 1.75rem;
    max-width: 860px;
    margin: 0 auto 1.5rem;
    color: #1a1a2e;
}

/* ── Left: info block ────────────────────────────────────────── */
.gct-header-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.gct-header-card__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin: 0 0 0.25rem;
}

.gct-header-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.gct-header-card__location {
    font-size: 0.925rem;
    color: #4b5563;
    margin: 0.15rem 0 0;
}

.gct-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0.4rem 0 0;
    flex-wrap: wrap;
}

.gct-meta-sep {
    color: #d1d5db;
    font-size: 0.75rem;
}

/* ── Right: timer block ──────────────────────────────────────── */
.gct-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.9rem 1.4rem;
    min-width: 110px;
    text-align: center;
}

.gct-timer-display {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.04em;
    line-height: 1;
}

.gct-timer-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-top: 0.3rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 560px) {
    .gct-header-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .gct-timer-container {
        width: 100%;
    }
}

/* ── Expiry popup ────────────────────────────────────────────── */
.gct-timer-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.gct-timer-popup-hidden {
    display: none !important;
}

.gct-timer-popup-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

.gct-timer-popup-content h2 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.gct-timer-home-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.gct-timer-home-button:hover {
    opacity: 0.88;
}
