/* ============================================================
   Bigg Boss Telugu Hub — Custom CSS
   Premium Entertainment Portal Styles
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --bg-body: #F9FAFB;
    --surface: #FFFFFF;
    --surface-light: #F3F4F6;
    --primary: #7C3AED;
    --primary-light: #8B5CF6;
    --secondary: #3B82F6;
    --accent-pink: #EC4899;
    --accent-amber: #F59E0B;
    --success: #10B981;
    --danger: #F43F5E;
    --text: #111827;
    --text-muted: #6B7280;
    --glow-purple: rgba(124, 58, 237, 0.2);
    --glow-blue: rgba(59, 130, 246, 0.2);
    --glow-pink: rgba(236, 72, 153, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-hover-bg: rgba(255, 255, 255, 0.95);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --nav-border: rgba(0, 0, 0, 0.05);
}

.dark {
    --bg-body: #0F0F1A;
    --surface: #1A1A2E;
    --surface-light: #252540;
    --primary: #7C3AED;
    --primary-light: #8B5CF6;
    --secondary: #3B82F6;
    --accent-pink: #EC4899;
    --accent-amber: #F59E0B;
    --success: #10B981;
    --danger: #F43F5E;
    --text: #FFFFFF;
    --text-muted: #9CA3AF;
    --glow-purple: rgba(124, 58, 237, 0.5);
    --glow-blue: rgba(59, 130, 246, 0.5);
    --glow-pink: rgba(236, 72, 153, 0.4);
    --glass-bg: rgba(26, 26, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover-bg: rgba(37, 37, 64, 0.8);
    --nav-bg: rgba(15, 15, 26, 0.85);
    --nav-border: rgba(124, 58, 237, 0.2);
}

/* ---------- Keyframe Animations ---------- */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px var(--glow-purple), 0 0 30px var(--glow-blue);
    }
    50% {
        box-shadow: 0 0 25px var(--glow-purple), 0 0 50px var(--glow-blue), 0 0 75px var(--glow-pink);
    }
}

@keyframes glowBorder {
    0%, 100% {
        border-color: var(--primary);
        box-shadow: 0 0 10px var(--glow-purple);
    }
    50% {
        border-color: var(--accent-pink);
        box-shadow: 0 0 20px var(--glow-pink), 0 0 40px var(--glow-purple);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(30px, -50px) scale(1.2); opacity: 1; }
    66% { transform: translate(-20px, -100px) scale(0.8); opacity: 0.4; }
    100% { transform: translate(10px, -150px) scale(0.2); opacity: 0; }
}

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

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ---------- Global Styles ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Telugu', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: white;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--secondary));
}

/* ---------- Firefox scrollbar ---------- */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-body);
}

/* ---------- Universal Lazy Loader FOUC Prevention ---------- */
/* Instantly hides any image that will be processed by our lazy loader, before JS even boots up */
img:not(.lazy-processed):not(.no-lazy) {
    /* Only hide images that are natively marked as lazy, or images inside our specific content areas that we know we will process */
}
img[loading="lazy"]:not(.lazy-processed):not(.no-lazy) {
    opacity: 0 !important;
}

/* ---------- Glass / Glassmorphism Utilities ---------- */
.glass {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-light {
    background: rgba(37, 37, 64, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-hover-bg);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(124, 58, 237, 0.15);
}

/* ---------- Glow Effects ---------- */
.glow {
    animation: glow 3s ease-in-out infinite;
}

.glow-border {
    animation: glowBorder 3s ease-in-out infinite;
}

.glow-text {
    text-shadow: 0 0 10px var(--glow-purple), 0 0 20px var(--glow-blue);
}

.navbar-glow {
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- Gradient Utilities ---------- */
/* ---------- Gradient Utilities ---------- */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.gradient-primary-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Premium UI Standard Classes ---------- */
.glow-orb-pink {
    position: absolute;
    border-radius: 9999px;
    background-color: rgba(236, 72, 153, 0.05);
    filter: blur(100px);
    transition: background-color 1s;
    pointer-events: none;
}
.dark .glow-orb-pink {
    background-color: rgba(236, 72, 153, 0.2);
}
.group:hover .glow-orb-pink {
    background-color: rgba(236, 72, 153, 0.1);
}
.dark .group:hover .glow-orb-pink {
    background-color: rgba(236, 72, 153, 0.3);
}

.glow-orb-primary {
    position: absolute;
    border-radius: 9999px;
    background-color: rgba(124, 58, 237, 0.05);
    filter: blur(100px);
    transition: background-color 1s;
    pointer-events: none;
}
.dark .glow-orb-primary {
    background-color: rgba(124, 58, 237, 0.2);
}
.group:hover .glow-orb-primary {
    background-color: rgba(124, 58, 237, 0.1);
}
.dark .group:hover .glow-orb-primary {
    background-color: rgba(124, 58, 237, 0.3);
}

.premium-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(249, 250, 251, 1); /* gray-50 */
    border: 1px solid rgba(229, 231, 235, 1); /* gray-200 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.dark .premium-pill {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-pink-text {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Skeleton Shimmer Loader ---------- */
.skeleton-shimmer {
    background-color: #e2e8f0;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    background-repeat: no-repeat;
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.dark .skeleton-shimmer {
    background-color: #1e293b;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.gradient-hero {
    background: linear-gradient(135deg, var(--bg-body) 0%, rgba(124,58,237,0.1) 30%, rgba(59,130,246,0.1) 70%, var(--bg-body) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}



/* ---------- Card Hover Effects ---------- */
.card-hover {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15);
}

.card-hover:hover .card-image {
    transform: scale(1.08);
}

.card-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Skeleton Loader ---------- */
.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--surface-light) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 0.75rem;
}

.skeleton-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
}

.skeleton-card {
    height: 16rem;
    border-radius: 1rem;
}



/* ---------- Timeline Styles ---------- */
.timeline {
    position: relative;
    padding-left: 2rem;
}



.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    animation: fadeIn 0.6s ease-out both;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: -1rem;
    transform: translateX(-50%);
    top: 1.5rem; /* Start just below the dot */
    bottom: -0.25rem; /* End just above the next dot */
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light), var(--secondary));
    z-index: 1;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1rem;
    transform: translateX(-50%);
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 3px solid var(--bg-body);
    z-index: 10;
    box-shadow: 0 0 10px var(--glow-purple);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    animation: borderGlow 2s ease-in-out infinite;
}

.timeline-content {
    padding-left: 1rem;
}

/* Timeline event-type colors */
.timeline-dot.entry { background: linear-gradient(135deg, var(--success), #34D399); }
.timeline-dot.nomination { background: linear-gradient(135deg, var(--accent-amber), #FBBF24); }
.timeline-dot.elimination { background: linear-gradient(135deg, var(--danger), #FB7185); }
.timeline-dot.captain { background: linear-gradient(135deg, #F59E0B, #EAB308); }
.timeline-dot.task { background: linear-gradient(135deg, var(--secondary), #60A5FA); }
.timeline-dot.wildcard { background: linear-gradient(135deg, var(--accent-pink), #F472B6); }

/* ---------- Animated Background Particles ---------- */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; background: var(--primary); }
.particle:nth-child(2) { left: 25%; top: 90%; animation-delay: 1s; background: var(--secondary); }
.particle:nth-child(3) { left: 40%; top: 85%; animation-delay: 2s; background: var(--accent-pink); }
.particle:nth-child(4) { left: 55%; top: 95%; animation-delay: 0.5s; background: var(--primary-light); }
.particle:nth-child(5) { left: 70%; top: 88%; animation-delay: 1.5s; background: var(--secondary); }
.particle:nth-child(6) { left: 85%; top: 92%; animation-delay: 3s; background: var(--accent-pink); }
.particle:nth-child(7) { left: 15%; top: 75%; animation-delay: 2.5s; background: var(--accent-amber); }
.particle:nth-child(8) { left: 60%; top: 80%; animation-delay: 4s; background: var(--primary); }
.particle:nth-child(9) { left: 90%; top: 78%; animation-delay: 3.5s; background: var(--secondary); }
.particle:nth-child(10) { left: 35%; top: 95%; animation-delay: 4.5s; background: var(--primary-light); }

/* ---------- Voting Iframe Container ---------- */
.voting-container {
    position: relative;
    border-radius: 1rem;
}

.voting-container iframe {
    border-radius: 0.75rem;
    width: 100%;
    min-height: 500px;
}

/* ---------- Status Badges ---------- */
.badge-active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-eliminated {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
    color: var(--danger);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.badge-winner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-wildcard {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    color: var(--accent-pink);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* ---------- Popularity Bar ---------- */
.popularity-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--surface-light);
    overflow: hidden;
}

.popularity-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Countdown Timer ---------- */
.countdown-segment {
    animation: countdownPulse 2s ease-in-out infinite;
}

.countdown-segment:nth-child(2) { animation-delay: 0.2s; }
.countdown-segment:nth-child(3) { animation-delay: 0.4s; }
.countdown-segment:nth-child(4) { animation-delay: 0.6s; }

/* ---------- Confidence Bar (Predictions) ---------- */
.confidence-bar {
    height: 8px;
    border-radius: 4px;
    background: var(--surface-light);
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.confidence-high { background: linear-gradient(90deg, var(--danger), #FB7185); }
.confidence-medium { background: linear-gradient(90deg, var(--accent-amber), #FBBF24); }
.confidence-low { background: linear-gradient(90deg, var(--success), #34D399); }

/* ---------- Article Content Styles ---------- */
.article-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
}

.article-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.article-content ul, .article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--text-muted);
    font-style: italic;
}

.article-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.article-content a:hover {
    color: var(--primary-light);
}

/* ---------- Fade-in on Scroll (JS driven) ---------- */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Horizontal Scroll Container ---------- */
.horizontal-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* ---------- Admin Light Theme Override ---------- */
.admin-theme {
    background-color: #F3F4F6;
    color: #1F2937;
}

.admin-theme .admin-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-theme .admin-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.admin-theme table {
    width: 100%;
    border-collapse: collapse;
}

.admin-theme th {
    background: #F9FAFB;
    color: #374151;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 2px solid #E5E7EB;
}

.admin-theme td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
}

.admin-theme tr:hover td {
    background: #F9FAFB;
}

/* ---------- Button Styles ---------- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

/* ---------- Reaction Buttons (Predictions Page) ---------- */
.reaction-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.reaction-btn:hover {
    background: var(--surface-light);
    border-color: var(--primary);
    color: var(--text);
    transform: scale(1.05);
}

.reaction-btn.active {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ---------- Search Highlight ---------- */
.search-highlight {
    background: rgba(124, 58, 237, 0.3);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 640px) {
    .timeline {
        padding-left: 1.5rem;
    }
    .timeline-item:not(:last-child)::before {
        left: -1rem;
    }
    .timeline-dot {
        left: -1rem;
        width: 1rem;
        height: 1rem;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    body { background: white; color: black; }
    .glass-navbar, footer, .voting-container { display: none; }
}
/* ==========================================================================
   Telugu Typography Fixes
   Addresses cropping/clipping of deep descenders (vottulu) and right-side characters in complex scripts
   ========================================================================== */
html[lang="te"] h1,
html[lang="te"] h2,
html[lang="te"] h3,
html[lang="te"] h4,
html[lang="te"] h5,
html[lang="te"] h6,
html[lang="te"] .font-black,
html[lang="te"] .font-bold,
html[lang="te"] .font-extrabold {
    line-height: 1.5 !important;
    padding-bottom: 0.15em;
    padding-right: 0.1em;
}

/* Fix clipping from leading-tight or leading-none Tailwind utilities */
html[lang="te"] .leading-none,
html[lang="te"] .leading-tight,
html[lang="te"] .leading-snug {
    line-height: 1.4 !important;
}

/* Specifically fix text truncation classes which use overflow: hidden */
html[lang="te"] .truncate {
    line-height: 1.4 !important;
    padding-bottom: 0.15em;
}

/* Give buttons slightly more vertical breathing room to avoid descender clipping */
html[lang="te"] button,
html[lang="te"] .btn {
    padding-bottom: 0.7rem !important;
}
