/* ==========================================================
   COMMON STYLES - shared across all PMDRF pages
   (base reset, typography, government header)
   ========================================================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--bg-page);
            background-image:
                radial-gradient(ellipse at top, rgba(15, 43, 92, 0.04) 0%, transparent 60%),
                linear-gradient(180deg, #e2e8f0 0%, var(--bg-page) 100%);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

.gov-header {
            background: var(--pm-navy);
            border-bottom: 4px solid var(--pm-red);
            padding: 10px 24px;
            color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

.gov-header-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.gov-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }

.gov-emblem {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
        }

.gov-title-group h1 {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: #ffffff;
            line-height: 1.2;
        }

.header-nchl-badge {
            background: #ffffff;
            padding: 4px 12px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            flex-shrink: 0;
        }

/* ── TELEGRAM SUPPORT FLOATING ACTION BUTTON ── */
.telegram-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease;
    animation: tgPulse 2.5s infinite;
}

.telegram-fab:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    box-shadow: 0 8px 24px rgba(34, 158, 217, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

.telegram-fab:active {
    transform: translateY(0) scale(0.98);
}

.telegram-fab-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-fab-text {
    line-height: 1;
}

@keyframes tgPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.6), 0 4px 16px rgba(34, 158, 217, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(42, 171, 238, 0), 0 4px 16px rgba(34, 158, 217, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(42, 171, 238, 0), 0 4px 16px rgba(34, 158, 217, 0.4);
    }
}

@media (max-width: 600px) {
    .telegram-fab {
        bottom: 18px;
        right: 18px;
        padding: 11px 16px;
        font-size: 13px;
    }
    .telegram-fab-icon {
        font-size: 18px;
    }
}

