* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05080f;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #F0F4FF;
    overflow-x: hidden;
    transition: all 0.3s ease;
    position: relative;
}

:root {
    --theme-primary: #00C4B4;
    --theme-secondary: #7C5CFC;
    --theme-glow: rgba(0,196,180,0.3);
}

/* Theme Classes */
body.theme-pohela { --theme-primary: #FF6B35; --theme-secondary: #FFB347; --theme-glow: rgba(255,107,53,0.3); }
body.theme-eid { --theme-primary: #00C4B4; --theme-secondary: #7C5CFC; --theme-glow: rgba(0,196,180,0.3); }
body.theme-buddha { --theme-primary: #8B4513; --theme-secondary: #DAA520; --theme-glow: rgba(139,69,19,0.3); }
body.theme-durga { --theme-primary: #FF4500; --theme-secondary: #FFD700; --theme-glow: rgba(255,69,0,0.3); }
body.theme-newyear { --theme-primary: #FFD700; --theme-secondary: #1a1a2e; --theme-glow: rgba(255,215,0,0.3); }
body.theme-independence { --theme-primary: #006A4E; --theme-secondary: #E03C31; --theme-glow: rgba(0,106,78,0.3); }
body.theme-victory { --theme-primary: #E03C31; --theme-secondary: #006A4E; --theme-glow: rgba(224,60,49,0.3); }

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 50%, rgba(0,196,180,0.08) 0%, rgba(8,12,20,1) 70%);
}

.animated-icons-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatIcon 20s linear infinite;
    pointer-events: none;
}

@keyframes floatIcon {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.celebration-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.snow-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall { to { transform: translateY(100vh); } }

.star-particle {
    position: absolute;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkleStar 2s ease-out forwards;
}

@keyframes twinkleStar {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    100% { transform: scale(1.5) rotate(180deg); opacity: 0; }
}

.party-particle {
    position: absolute;
    animation: partyFloat 2s ease-out forwards;
}

@keyframes partyFloat {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) scale(0.5); opacity: 0; }
}

.wind-particle {
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,196,180,0.5), transparent);
    animation: wind 4s linear forwards;
}

@keyframes wind {
    from { transform: translateX(-100px); opacity: 0.5; }
    to { transform: translateX(100vw); opacity: 0; }
}

.landing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .landing-container { padding: 0 24px; }
}

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon-item {
    width: 45px;
    height: 45px;
    background: rgba(13,19,32,0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,196,180,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.social-icon-item:hover {
    transform: scale(1.1);
    background: rgba(0,196,180,0.2);
    color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.social-tooltip {
    position: absolute;
    left: 55px;
    background: rgba(13,19,32,0.9);
    backdrop-filter: blur(10px);
    color: var(--theme-primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,196,180,0.2);
    pointer-events: none;
}

.social-icon-item:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    left: 53px;
}

@media (max-width: 768px) {
    .floating-social-icons { left: 12px; gap: 8px; }
    .social-icon-item { width: 38px; height: 38px; font-size: 16px; }
    .social-tooltip { display: none; }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13,19,32,0.3);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,196,180,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.action-item:hover {
    transform: translateX(-5px);
    background: rgba(0,196,180,0.15);
    border-color: var(--theme-primary);
}

.action-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,196,180,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-icon i { font-size: 20px; color: rgba(255,255,255,0.9); }
.action-text { display: flex; flex-direction: column; }
.action-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.95); }
.action-subtitle { font-size: 10px; color: rgba(255,255,255,0.6); }
.action-arrow i { font-size: 14px; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
.action-item:hover .action-arrow i { transform: translateX(3px); color: var(--theme-primary); }

@media (max-width: 640px) {
    .floating-actions { right: 15px; bottom: 80px; gap: 10px; }
    .action-item { padding: 8px 14px; }
    .action-icon { width: 32px; height: 32px; }
    .action-icon i { font-size: 16px; }
    .action-title { font-size: 12px; }
    .action-subtitle { font-size: 9px; }
}

/* Date & Time Bar */
.datetime-bar {
    background: rgba(0,196,180,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,196,180,0.15);
    padding: 10px 20px;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 50px;
}

.datetime-bar.floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0;
    border-radius: 0;
    background: rgba(8,12,20,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,196,180,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.datetime-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.datetime-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #A8B8CF;
}
.datetime-item i { color: var(--theme-primary); font-size: 14px; }
.datetime-divider { width: 1px; height: 20px; background: rgba(0,196,180,0.2); }
.next-holiday-info { background: rgba(0,196,180,0.1); padding: 4px 12px; border-radius: 40px; }

body.has-floating-datetime { padding-top: 60px; }
@media (max-width: 900px) {
    .datetime-container { gap: 10px; }
    .datetime-item { font-size: 11px; }
    .next-holiday-info { width: 100%; justify-content: center; margin-top: 5px; }
    body.has-floating-datetime { padding-top: 80px; }
}
@media (max-width: 640px) {
    .datetime-divider { display: none; }
    body.has-floating-datetime { padding-top: 100px; }
}

/* Celebration Banner */
.celebration-banner {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 16px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease;
}
.celebration-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.celebration-icon { font-size: 40px; }
.celebration-text { flex: 1; }
.celebration-text h3 { font-size: 18px; margin-bottom: 5px; }
.celebration-text p { font-size: 13px; opacity: 0.9; }
.celebration-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.celebration-close:hover { background: rgba(255,255,255,0.3); }

/* Current Holiday Card */
.current-holiday-card {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 16px;
    padding: 16px 20px;
    margin: 0 0 20px 0;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.current-holiday-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.holiday-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}
.holiday-info { flex: 1; }
.holiday-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; margin-bottom: 4px; }
.holiday-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.holiday-type-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
@media (max-width: 640px) {
    .current-holiday-inner { flex-direction: column; text-align: center; }
    .holiday-name { font-size: 16px; }
}

/* Holiday Countdown Widget */
.holiday-countdown-widget {
    background: rgba(13,19,32,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(0,196,180,0.2);
}
.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--theme-primary);
}
.countdown-timer-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.countdown-item {
    text-align: center;
    min-width: 70px;
    background: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 12px;
}
.countdown-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-primary);
    display: block;
    font-family: monospace;
}
.countdown-unit { font-size: 10px; color: #6B7E98; text-transform: uppercase; }
.countdown-holiday-name { font-size: 13px; color: #A8B8CF; }
@media (max-width: 640px) {
    .countdown-item { min-width: 55px; padding: 8px; }
    .countdown-value { font-size: 20px; }
}

/* Ad Containers */
.ad-top-container, .ad-middle-container, .ad-bottom-container {
    margin: 16px 0 24px;
    text-align: center;
}
.ad-label {
    font-size: 9px;
    color: #4a5a72;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}
.ad-banner {
    background: rgba(13,19,32,0.3);
    border-radius: 16px;
    padding: 8px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ad-banner > div {
    width: 100%;
    min-height: 90px;
}
.loading-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #6B7E98;
    font-size: 13px;
    background: rgba(13,19,32,0.5);
    border-radius: 12px;
}
.fallback-ad {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0,196,180,0.08), rgba(124,92,252,0.08));
    border-radius: 12px;
    border: 1px dashed rgba(0,196,180,0.3);
    color: #A8B8CF;
    text-align: center;
    font-size: 13px;
}
.fallback-ad i { font-size: 28px; color: var(--theme-primary); margin-bottom: 5px; }
.fallback-ad small { font-size: 10px; color: #6B7E98; margin-top: 4px; }
@media (max-width: 768px) {
    .ad-banner { min-height: 80px; padding: 6px; }
    .fallback-ad { padding: 15px; }
    .fallback-ad i { font-size: 22px; }
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0 16px;
    border-bottom: 1px solid rgba(0,196,180,0.15);
    margin-bottom: 20px;
}
@media (max-width: 640px) { .navbar { flex-direction: column; text-align: center; gap: 12px; } }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 20px var(--theme-glow);
    animation: glowPulse 3s infinite;
}
@media (min-width: 768px) { .logo-icon { width: 48px; height: 48px; font-size: 24px; border-radius: 16px; } }
@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 20px var(--theme-glow); }
    50% { box-shadow: 0 0 35px var(--theme-glow); }
}
.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, var(--theme-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@media (min-width: 768px) { .logo-text h1 { font-size: 24px; } }
.logo-text p { font-size: 10px; color: #6B7E98; }
.nav-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav-links a { color: #A8B8CF; text-decoration: none; font-size: 13px; font-weight: 500; transition: 0.2s; }
@media (min-width: 768px) { .nav-links a { font-size: 14px; } }
.nav-links a:hover { color: var(--theme-primary); }
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,77,77,0.12);
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
}
.live-dot { width: 7px; height: 7px; background: #FF4D4D; border-radius: 50%; animation: pulseLive 1.2s infinite; }

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    scroll-margin-top: 80px;
}
@media (min-width: 768px) { .hero-section { gap: 48px; margin-bottom: 60px; } }
.hero-content { flex: 1; min-width: 260px; }
.hero-badge {
    display: inline-block;
    background: rgba(0,196,180,0.12);
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 16px;
}
.hero-content h2 {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, #A8B8CF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-content p { font-size: 14px; color: #A8B8CF; line-height: 1.5; margin-bottom: 24px; max-width: 500px; }
.hero-stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.stat-number { font-size: 24px; font-weight: 800; color: var(--theme-primary); }
.stat-label { font-size: 11px; color: #6B7E98; }
.server-selector { display: flex; gap: 10px; flex-wrap: wrap; }
.server-btn-hero {
    background: rgba(13,19,32,0.8);
    border: 1px solid rgba(0,196,180,0.2);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #A8B8CF;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (min-width: 768px) { .server-btn-hero { padding: 12px 24px; font-size: 14px; } }
.server-btn-hero.active {
    background: var(--theme-primary);
    color: #080C14;
    border-color: var(--theme-primary);
    box-shadow: 0 0 20px var(--theme-glow);
}
.server-btn-hero:hover { transform: translateY(-2px); border-color: var(--theme-primary); }
.hero-player { flex: 1; min-width: 280px; }
.player-card {
    background: #0D1320;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,196,180,0.2);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.player-wrapper { position: relative; background: #000; aspect-ratio: 16 / 9; }
.player-wrapper iframe { width: 100%; height: 100%; border: none; }
.stream-label {
    position: absolute;
    top: 12px;
    left: 16px;
    background: rgba(255,77,77,0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}
@media (min-width: 768px) { .stream-label { top: 16px; left: 20px; padding: 6px 16px; font-size: 12px; } }
.player-footer {
    padding: 12px 16px;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.current-channel { display: flex; align-items: center; gap: 8px; }
.channel-badge-sm {
    width: 28px;
    height: 28px;
    background: #1C2A3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 12px;
}
.fullscreen-btn {
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    color: #A8B8CF;
    cursor: pointer;
    font-size: 11px;
    transition: 0.2s;
}
.fullscreen-btn:hover { background: var(--theme-primary); color: #080C14; }

/* Channels Section */
.channels-section { margin: 40px 0 30px; scroll-margin-top: 80px; }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.section-header h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .section-header h3 { font-size: 22px; } }
.section-header h3 i { color: var(--theme-primary); }
.scroll-hint { font-size: 10px; color: #6B7E98; display: flex; align-items: center; gap: 4px; }
.channel-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}
.channel-scroll::-webkit-scrollbar { height: 4px; }
.channel-scroll::-webkit-scrollbar-track { background: #1C2A3C; border-radius: 10px; }
.channel-scroll::-webkit-scrollbar-thumb { background: var(--theme-primary); border-radius: 10px; }
.channels-grid { display: flex; gap: 14px; min-width: min-content; }
.channel-item {
    flex-shrink: 0;
    width: 150px;
    background: #0D1320;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2,0.9,0.4,1.1);
    text-align: center;
}
@media (min-width: 768px) { .channel-item { width: 200px; padding: 20px 16px; border-radius: 24px; } }
.channel-item:active { transform: scale(0.97); }
.channel-item.active {
    border-color: var(--theme-primary);
    background: rgba(0,196,180,0.15);
    box-shadow: 0 0 15px var(--theme-glow);
}
.channel-icon-lg {
    width: 55px;
    height: 55px;
    background: #1C2A3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--theme-primary);
    margin: 0 auto 12px;
}
@media (min-width: 768px) { .channel-icon-lg { width: 70px; height: 70px; font-size: 30px; margin: 0 auto 14px; } }
.channel-item.active .channel-icon-lg { background: var(--theme-primary); color: #080C14; }
.channel-name { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
@media (min-width: 768px) { .channel-name { font-size: 16px; } }
.channel-quality { font-size: 10px; color: #30E3A0; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* Features Section */
.features-section { margin: 50px 0; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); scroll-margin-top: 80px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature-card {
    text-align: center;
    padding: 20px 16px;
    background: rgba(13,19,32,0.5);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.3s;
}
.feature-card:hover { border-color: rgba(0,196,180,0.3); transform: translateY(-3px); }
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,196,180,0.15), rgba(124,92,252,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--theme-primary);
}
.feature-card h4 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 12px; color: #A8B8CF; line-height: 1.4; }

/* Testimonials Section */
.testimonials-section { margin: 50px 0 40px; scroll-margin-top: 80px; }
.write-review-btn {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.write-review-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px var(--theme-glow); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.review-card {
    background: rgba(13,19,32,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0,196,180,0.1);
    transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(0,196,180,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
}
.reviewer-name { font-weight: 600; font-size: 16px; }
.review-date { font-size: 11px; color: #6B7E98; }
.review-stars { display: flex; gap: 4px; }
.review-stars i { font-size: 14px; color: #FFD700; }
.review-stars i.far { color: #4a5a72; }
.review-text { font-size: 14px; line-height: 1.5; color: #A8B8CF; margin: 15px 0; }
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.recommend-badge { font-size: 12px; padding: 4px 12px; border-radius: 20px; background: rgba(0,196,180,0.1); color: #00C4B4; }
.recommend-badge.yes { background: rgba(48,227,160,0.15); color: #30E3A0; }
.recommend-badge.maybe { background: rgba(255,193,7,0.15); color: #FFC107; }
.recommend-badge.no { background: rgba(255,77,77,0.15); color: #FF4D4D; }
.helpful-btn { background: none; border: none; color: #6B7E98; cursor: pointer; font-size: 12px; display: flex; align-items: center; gap: 5px; transition: 0.2s; }
.helpful-btn:hover { color: var(--theme-primary); }
.empty-reviews { text-align: center; padding: 60px 20px; background: rgba(13,19,32,0.5); border-radius: 24px; }
.empty-reviews i { font-size: 60px; color: #4a5a72; margin-bottom: 16px; }
.empty-reviews p { color: #A8B8CF; font-size: 16px; }
.review-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(13,19,32,0.5);
    border-radius: 24px;
}
.stat-card { text-align: center; flex: 1; min-width: 120px; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--theme-primary); }
.stat-label { font-size: 12px; color: #6B7E98; margin-top: 5px; }
.stars-display { margin-top: 5px; display: flex; justify-content: center; gap: 3px; }
.stars-display i { font-size: 12px; color: #FFD700; }

/* Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}
.custom-modal.show { display: flex; }
.custom-modal-content {
    background: #0D1320;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow: auto;
    border: 1px solid rgba(0,196,180,0.2);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.custom-modal-header h3 { font-size: 18px; color: var(--theme-primary); }
.custom-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #A8B8CF;
    transition: 0.2s;
}
.custom-modal-close:hover { color: var(--theme-primary); }
.custom-modal-body { padding: 20px 24px; }
.custom-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.modal-close-btn {
    background: rgba(255,255,255,0.1);
    color: #A8B8CF;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.modal-close-btn:hover { background: var(--theme-primary); color: #080C14; }
.modal-submit-btn {
    background: var(--theme-primary);
    color: #080C14;
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.modal-submit-btn:hover { transform: translateY(-2px); }

/* Review Modal Specific */
.review-modal-content { max-width: 500px; }
.review-note { font-size: 12px; color: #6B7E98; margin-bottom: 20px; text-align: center; }
.rating-input { margin-bottom: 20px; }
.rating-input label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #A8B8CF; }
.star-rating { display: flex; gap: 10px; cursor: pointer; }
.star-rating i { font-size: 28px; color: #4a5a72; transition: all 0.2s ease; }
.star-rating i:hover, .star-rating i.active { color: #FFD700; }
.review-input-group { margin-bottom: 20px; }
.review-input-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #A8B8CF; }
.review-input-group input, .review-input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,196,180,0.2);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 14px;
    font-family: inherit;
}
.review-input-group input:focus, .review-input-group textarea:focus { outline: none; border-color: var(--theme-primary); }
.recommend-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.recommend-option { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 13px; color: #A8B8CF; }
.recommend-option input { width: auto; margin: 0; }

/* Hire Me Modal Specific */
.profile-section { text-align: center; margin-bottom: 24px; }
.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.profile-icon i { font-size: 40px; color: white; }
.profile-section h4 { font-size: 20px; margin-bottom: 8px; }
.profile-section p { font-size: 13px; color: #A8B8CF; }
.skills-section, .contact-section, .portfolio-section { margin-bottom: 24px; }
.skills-section h4, .contact-section h4, .portfolio-section h4 { font-size: 16px; margin-bottom: 12px; color: var(--theme-primary); }
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag { background: rgba(0,196,180,0.1); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: #A8B8CF; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-btn {
    padding: 10px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.email-btn { background: #EA4335; color: white; }
.whatsapp-btn { background: #25D366; color: white; }
.fiverr-btn { background: #1DBF73; color: white; }
.upwork-btn { background: #6FDA44; color: white; }
.contact-btn:hover { transform: translateY(-2px); }
.portfolio-links { display: flex; gap: 15px; margin-top: 10px; }
.portfolio-link { color: var(--theme-primary); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.portfolio-link:hover { text-decoration: underline; }

/* Donate Modal Specific */
.donate-info { text-align: center; margin-bottom: 24px; }
.heart-icon { font-size: 50px; color: #FF4D4D; margin-bottom: 12px; }
.donate-info h4 { font-size: 18px; margin-bottom: 8px; }
.donate-info p { font-size: 13px; color: #A8B8CF; }
.donation-amounts, .payment-methods { margin-bottom: 24px; }
.donation-amounts h4, .payment-methods h4 { font-size: 16px; margin-bottom: 12px; color: var(--theme-primary); }
.amount-buttons, .payment-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.amount-btn, .payment-btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(0,196,180,0.3);
    background: rgba(0,0,0,0.3);
    color: #A8B8CF;
}
.amount-btn.active, .payment-btn.active { background: var(--theme-primary); color: #080C14; border-color: var(--theme-primary); }
.amount-btn:hover, .payment-btn:hover { background: var(--theme-primary); color: #080C14; }
.custom-amount-input { margin-top: 12px; }
.custom-amount-input input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,196,180,0.3);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 14px;
}
.info-card {
    background: rgba(0,196,180,0.1);
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
}
.info-card p { font-size: 13px; margin-bottom: 6px; }
.info-card .note { font-size: 11px; color: #FFB347; }
.donation-summary { margin-top: 20px; }
.summary-card {
    background: linear-gradient(135deg, rgba(0,196,180,0.15), rgba(124,92,252,0.15));
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}
.summary-card p { margin-bottom: 10px; }
.confirm-donate-btn {
    background: var(--theme-primary);
    color: #080C14;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}
.confirm-donate-btn:hover { transform: translateY(-2px); }
.donation-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0D1320;
    border-left: 4px solid #00C4B4;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 10002;
    animation: toastFade 3s ease forwards;
}
@keyframes toastFade {
    0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    10% { opacity: 1; transform: translateX(-50%) translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); display: none; }
}
.toast-content { display: flex; align-items: center; gap: 10px; }
.toast-content i { color: #00C4B4; font-size: 20px; }

/* Footer */
.footer {
    padding: 30px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
@media (max-width: 640px) { .footer { flex-direction: column; text-align: center; align-items: center; gap: 16px; } }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #6B7E98; text-decoration: none; font-size: 11px; transition: 0.2s; }
.footer-links a:hover { color: var(--theme-primary); }
.social-links { display: flex; gap: 14px; }
.social-links a {
    width: 36px;
    height: 36px;
    background: #0D1320;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    transition: 0.2s;
    text-decoration: none;
}
.social-links a:hover { background: var(--theme-primary); color: #080C14; transform: translateY(-3px); }
.copyright { font-size: 11px; color: #6B7E98; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0,196,180,0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,196,180,0.3);
    font-size: 22px;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--theme-primary); color: #080C14; }
@media (min-width: 768px) { .back-to-top { bottom: 100px; right: 24px; width: 52px; height: 52px; font-size: 24px; } }

/* Toast Message */
.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13,19,32,0.9);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--theme-primary);
    padding: 10px 18px;
    border-radius: 40px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 640px) { .toast-message { white-space: normal; max-width: 90%; } }

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8,12,20,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,196,180,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 20px;
}
.cookie-consent.show { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.cookie-icon { width: 50px; height: 50px; background: rgba(0,196,180,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--theme-primary); }
.cookie-text { flex: 2; min-width: 200px; }
.cookie-text h4 { font-size: 16px; margin-bottom: 6px; color: var(--theme-primary); }
.cookie-text p { font-size: 12px; color: #A8B8CF; line-height: 1.4; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.cookie-accept { background: var(--theme-primary); color: #080C14; }
.cookie-accept:hover { background: var(--theme-primary); transform: translateY(-2px); }
.cookie-deny { background: rgba(255,255,255,0.08); color: #A8B8CF; }
.cookie-deny:hover { background: rgba(255,255,255,0.15); }
.cookie-settings { background: transparent; color: var(--theme-primary); border: 1px solid rgba(0,196,180,0.3); }
.cookie-settings:hover { background: rgba(0,196,180,0.1); }

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}
.cookie-modal.show { display: flex; }
.cookie-modal-content {
    background: #0D1320;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow: auto;
    border: 1px solid rgba(0,196,180,0.2);
    animation: modalSlideIn 0.3s ease;
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-modal-header h3 { font-size: 18px; color: var(--theme-primary); }
.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #A8B8CF;
    transition: 0.2s;
}
.cookie-modal-close:hover { color: var(--theme-primary); }
.cookie-modal-body { padding: 20px 24px; }
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 20px;
}
.cookie-option.essential {
    background: rgba(0,196,180,0.05);
    margin: 0 -24px;
    padding: 16px 24px;
    border-radius: 12px;
}
.cookie-option-info { flex: 1; }
.cookie-option-info h4 { font-size: 15px; margin-bottom: 6px; color: #F0F4FF; }
.cookie-option-info p { font-size: 12px; color: #A8B8CF; line-height: 1.4; margin-bottom: 4px; }
.cookie-status { font-size: 11px; color: var(--theme-primary); font-weight: 500; margin-top: 4px; }
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2C3E50;
    transition: 0.3s;
    border-radius: 34px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}
.cookie-toggle input:checked + .toggle-slider { background-color: var(--theme-primary); }
.cookie-toggle input:checked + .toggle-slider:before { transform: translateX(26px); }
.cookie-toggle.disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-modal-save {
    background: var(--theme-primary);
    color: #080C14;
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.cookie-modal-save:hover { background: var(--theme-primary); transform: translateY(-2px); }

/* Holiday Modal */
.policy-modal { max-width: 650px; }
.holidays-modal { max-width: 700px; }
.policy-body, .holidays-body { max-height: 60vh; overflow-y: auto; }
.policy-body h4 { color: var(--theme-primary); margin: 18px 0 8px; font-size: 16px; }
.policy-body h4:first-child { margin-top: 0; }
.policy-body p { font-size: 13px; color: #A8B8CF; line-height: 1.5; margin-bottom: 12px; }
.policy-date { margin-top: 20px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 11px; }
.current-holiday-highlight {
    background: linear-gradient(135deg, rgba(0,196,180,0.15), rgba(124,92,252,0.15));
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,196,180,0.3);
    text-align: center;
}
.current-holiday-highlight i { font-size: 32px; color: var(--theme-primary); margin-bottom: 10px; }
.current-holiday-highlight h3 { color: var(--theme-primary); margin-bottom: 8px; font-size: 18px; }
.current-holiday-highlight p { font-size: 13px; }
.holiday-list { margin-bottom: 24px; }
.holiday-list h4 { color: var(--theme-primary); margin: 18px 0 12px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.holiday-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 10px;
}
.holiday-name { font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 10px; flex: 2; }
.holiday-name i { color: var(--theme-primary); width: 20px; }
.holiday-date { font-size: 11px; color: #A8B8CF; background: rgba(0,196,180,0.1); padding: 4px 12px; border-radius: 20px; }
.holiday-type { font-size: 10px; padding: 3px 10px; border-radius: 20px; background: rgba(255,255,255,0.1); }
.holiday-type.govt { background: rgba(0,196,180,0.2); color: var(--theme-primary); }
.holiday-type.international { background: rgba(124,92,252,0.2); color: #7C5CFC; }
.holiday-type.islamic { background: rgba(255,193,7,0.2); color: #FFC107; }
.holiday-note { font-size: 11px; color: #6B7E98; margin-top: 20px; padding: 12px; background: rgba(0,0,0,0.2); border-radius: 12px; text-align: center; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    .cookie-option { flex-direction: column; text-align: center; gap: 12px; }
    .cookie-option.essential { margin: 0 -16px; padding: 16px; }
    .cookie-btn { padding: 8px 16px; font-size: 12px; }
    .cookie-modal-footer { justify-content: center; }
    .footer-links { justify-content: center; }
    .holiday-item { flex-direction: column; align-items: flex-start; }
    .holiday-date { margin-left: 30px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-stats { flex-direction: column; align-items: center; }
    .stat-card { width: 100%; }
    .section-header { flex-direction: column; text-align: center; }
    .star-rating i { font-size: 24px; }
}

@keyframes pulseLive {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
html { scroll-behavior: smooth; }
/* Add these styles to your existing style.css */

/* Ad Containers - Multiple Ad Support */
.ad-top-container, .ad-middle-container, .ad-bottom-container {
    margin: 16px 0 24px;
    text-align: center;
}

.ad-label {
    font-size: 9px;
    color: #4a5a72;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.ad-banner {
    background: rgba(13,19,32,0.3);
    border-radius: 16px;
    padding: 8px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

.ad-banner > div {
    width: 100%;
    min-height: 90px;
}

.loading-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #6B7E98;
    font-size: 13px;
    background: rgba(13,19,32,0.5);
    border-radius: 12px;
}

.fallback-ad {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0,196,180,0.08), rgba(124,92,252,0.08));
    border-radius: 12px;
    border: 1px dashed rgba(0,196,180,0.3);
    color: #A8B8CF;
    text-align: center;
    font-size: 13px;
}

.fallback-ad i { font-size: 28px; color: var(--theme-primary); margin-bottom: 5px; }
.fallback-ad small { font-size: 10px; color: #6B7E98; margin-top: 4px; }

@media (max-width: 768px) {
    .ad-banner { min-height: 80px; padding: 6px; }
    .fallback-ad { padding: 15px; }
    .fallback-ad i { font-size: 22px; }
}