/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #111827;
    --accent-muted: #374151;
    --accent-steel: #64748b;
    --text-dark: #111827;
    --text-light: #4b5563;
    --white: #ffffff;
    --bg-body: #f8fafc;
    --nav-height: 72px;
    --whatsapp-green: #25D366;
    --accent-blue: #1a73e8;
    --gradient-hero: linear-gradient(135deg, #111827 0%, #374151 100%);
    --gradient-accent: linear-gradient(135deg, #374151, #64748b);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1557b0;
    text-decoration: none;
}

h2 {
    color: var(--accent-blue);
}

/* WhatsApp Notification Bottom Popup */
.whatsapp-notification {
    background-color: #000000;
    color: white;
    padding: 15px 25px;
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100px);
    max-width: 1100px;
}

.wa-content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: auto;
    max-width: 1100px;
    padding: 0 10px;
    margin: 0 auto;
}

.wa-logo {
    font-size: 2.2rem !important;
    color: var(--whatsapp-green);
}

.wa-text {
    text-align: center;
}

.wa-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
}

.wa-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-notification:hover {
    background-color: #000000;
}

.whatsapp-notification i {
    font-size: 1.4rem;
}

.whatsapp-notification .cta-btn {
    background: var(--whatsapp-green);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.whatsapp-notification .cta-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f1f5f9;
    color: #64748b;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

/* Floating Share Button */
.floating-share-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: var(--accent-muted);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-share-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.5);
}

.floating-share-btn:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .floating-share-btn {
        width: 50px;
        height: 50px;
        bottom: 110px;
        /* Moved up to clear the WhatsApp bar */
        right: 20px;
        font-size: 1.25rem;
    }
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: var(--nav-height);
    margin: 0;
    /* Prevent content hiding behind fixed header */
}

/* Redesigned Header */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgba(17, 24, 39, 0.3);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.03em;
}

.logo-text .highlight {
    color: var(--accent-steel);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Footer Redesign */
.main-footer {
    background: #f8fafc;
    color: #1e293b;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid #e2e8f0;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-brand {
    max-width: 400px;
}

.footer-desc {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.text-white {
    color: white !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-muted);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: #64748b;
    transition: 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}



@media (max-width: 768px) {
    .whatsapp-notification {
        bottom: 15px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 12px 15px;
        transform: translateY(100px);
    }

    .wa-content {
        gap: 12px;
    }

    .wa-logo {
        font-size: 1.8rem !important;
    }

    .wa-title {
        font-size: 0.95rem;
    }

    .wa-subtitle {
        font-size: 0.8rem;
    }

    .whatsapp-notification .cta-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        display: block;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Original Hero Styles Adjustment */
.hero {
    /* Since header is fixed, hero needs no margin-top (handled by body padding/margin) */
    border-radius: 0 0 30px 30px;
    /* Modern bottom curve */
}

/* Helper */
.mobile-nav {
    display: none;
    /* Implement mobile menu JS if needed */
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    /* Deep Purple to Blue */
    color: var(--white);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* Flush with header */
    border-radius: 0 0 40px 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(241, 0, 0, 0.763);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.status-pill i {
    font-size: 0.6rem;
    margin-right: 8px;
    color: #ffffff;
    /* Steel dot */
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: white;
}

.hero h1 span {
    display: inline;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    /* White to Steel gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 404 Page Styles */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 600px;

}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-blue);
    /* Fallback */
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.error-message {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-visual .hero-img {
    transition: transform 0.3s ease;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 24px;
}

.hero-img.loaded {
    opacity: 1;
}


/* Mobile Stack */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        white-space: nowrap;
    }

    .hero h1 span {
        display: inline;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-img {
        max-width: 100%;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated Rewards Grid */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: -0.025em;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.30rem;
        margin: 40px 0 25px;
    }
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .reward-grid {
        grid-template-columns: 1fr;
    }
}

.reward-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 4px solid #1a73e8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    /* Keep for ::before and status-badge */
}

.reward-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.reward-card-body {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
}

.reward-card:hover::before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

.reward-info-middle {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.reward-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.time-pill {
    background: #ffffff;
    border: 1px solid #949494;
    color: #141517;
    padding: 2px 4px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 80px;
}

.reward-icon-container {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.reward-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reward-card-footer {
    display: none;
}

/* Verified Status Indicator */
.status-badge {
    position: absolute;
    top: 24px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 10;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.reward-action-right {
    flex-shrink: 0;
}



.collect-btn {
    background: #3b82f6;
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}

.collect-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

/* Skeleton Loading & Shimmer Effect */
.skeleton {
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

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

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

.skeleton-circle {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.skeleton-btn {
    height: 48px;
    width: 100%;
    border-radius: 12px;
}

/* Ad Container & Buffer to reduce CLS */
.ad-slot {
    margin: 30px auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(226, 232, 240, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ad-slot {
        min-height: 100px;
        /* Mobile banner height */
    }
}

.webpushr-buffer {
    min-height: 60px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Updated Ad Container */
.ad-container {
    margin: 0;
    width: 100%;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    min-height: 280px;
    /* Prevent layout shift */
    background: #f1f5f9;
    /* Placeholder bg */
    display: flex;
    flex-direction: column;
    /* Stack label and ad */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.ad-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* Blog Content */
.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.blog-content {
    margin-bottom: 60px;
}

.blog-content h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 32px 0 16px;
    color: var(--accent-blue);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.blog-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 18px;
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
}

.blog-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
    color: #334155;
    line-height: 1.7;
}

.blog-content li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .blog-content h1 {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }

    .blog-content h3 {
        font-size: 1.15rem;
    }

    .blog-content p {
        font-size: 0.95rem;
    }



}

/* Blog Images */
.blog-content img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: none !important;
    /* Override hero-img transform if used */
}

/* Social Buttons (Home) */
.official-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.social-btn.fb {
    background: #1877f2;
    box-shadow: 0 4px 6px -1px rgba(24, 119, 242, 0.3);
}

.social-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 6px -1px rgba(220, 39, 67, 0.3);
}

.social-btn.x {
    background: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Old footer styles removed */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

/* Tip Box */
.tip-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tip-icon {
    color: var(--accent-blue);
    font-size: 1.5rem;
    background: #eff6ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-content {
    flex-grow: 1;
}

.tip-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.tip-content h3,
.tip-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 5px;
}

.tip-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .tip-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* Info Table Styles */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.info-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 16px 24px;
    color: var(--text-dark);
}

.info-table td:first-child {
    background: #f8fafc;
    font-weight: 600;
    width: 40%;
    color: #475569;
}

/* User Selection Styles */
::selection {
    background: #000000;
    color: #ffffff;
}

/* For Firefox */
::-moz-selection {
    background: #000000;
    color: #ffffff;
}



/* --- Hero Enhancements (Trust Badges & Breadcrumbs) --- */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
    width: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
    /* Slate light */
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
    color: #f8fafc;
}

.trust-badge i {
    color: #22c55e;
    /* Success Green */
    font-size: 0.8rem;
}

.hero-breadcrumbs {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.hero-breadcrumbs a:hover {
    color: #ffffff;
}

.hero-breadcrumbs a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-blue, #2563eb);
    transition: width 0.3s ease;
}

.hero-breadcrumbs a:hover::after {
    width: 100%;
}

.hero-breadcrumbs span {
    margin: 0 10px;
    opacity: 0.3;
    font-weight: 300;
}

/* --- Community Hub Section --- */
.community-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px -20px;
}

.social-card {
    background: rgba(15, 23, 42, 0.85);
    /* Solid dark background */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    display: grid;
    grid-template-areas:
        "header meta"
        "button button";
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(22, 32, 58, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
}

.social-card.whatsapp {
    border-left: 4px solid #25D366;
}

.social-card.telegram {
    border-left: 4px solid #0088cc;
}

.social-card.whatsapp:hover {
    box-shadow: 0 15px 35px -15px rgba(37, 211, 102, 0.2);
}

.social-card.telegram:hover {
    box-shadow: 0 15px 35px -15px rgba(0, 136, 204, 0.2);
}

.social-header {
    grid-area: header;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.social-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
}

.whatsapp .social-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.telegram .social-icon {
    color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.social-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}

.social-info p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.social-meta {
    grid-area: meta;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
}

.member-count {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-status 1.5s infinite;
}

@keyframes pulse-status {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.social-btn {
    grid-area: button;
    width: 100%;
    padding: 8px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 12px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.whatsapp .social-btn {
    background: #25D366;
    color: #fff;
}

.telegram .social-btn {
    background: #0088cc;
    color: #fff;
}

/* --- Shared Responsive Media Queries --- */
@media (max-width: 768px) {
    .community-hub {
        grid-template-columns: 1fr;
        margin: 20px 0;
    }

    .social-card {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .trust-badges-row {
        gap: 8px;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .hero-breadcrumbs {
        font-size: 0.8rem;
    }
}

/* --- Village Progress Tracker --- */
.village-tracker {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 30px;
    margin: 10px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tracker-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracker-title i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.tracker-title h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.village-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.village-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.village-input {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 60px;
    text-align: center;
    outline: none;
}

.progress-container {
    margin-bottom: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
}

.progress-bar-bg {
    height: 12px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracker-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recommendation-pill {
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .village-tracker {
        margin: -30px 20px 30px;
        padding: 20px;
    }

    .tracker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tracker-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-bottom: 10px;
        border-bottom: 1px solid #f1f5f9;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Rewards Banner Premium */
.rewards-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    margin: 50px 0 30px;
    color: #1a73e8 !important;
    padding: 22px 30px;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}


@keyframes reward-shimmer {
    100% {
        left: 200%;
    }
}

.rewards-banner i {
    font-size: 1.8rem;
    color: #fbbf24 !important;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.rewards-banner .date-text {
    opacity: 0.9;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 5px;
}

.rewards-banner .live-badge {
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    margin-left: 10px;
}

.rewards-banner .live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: reward-blink 1s infinite;
}

@keyframes reward-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .rewards-banner {
        flex-direction: column;
        gap: 10px;
        padding: 25px 20px;
        font-size: 1.2rem;
        margin: 40px 10px 25px;
    }

    .rewards-banner .date-text {
        font-size: 1rem;
        display: block;
        margin-top: 5px;
    }

    .rewards-banner .live-badge {
        margin-left: 0;
    }
}

/* Feed Ad Container */
.reward-ad-container {
    grid-column: 1 / -1;
    width: 100%;
    margin: 20px 0;
    text-align: center;
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    overflow: hidden;
}

.reward-ad-container .ad-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: block;
}

/* Update Status Bar (Below Banner) */
.update-status-bar {
    text-align: center;
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 12px;
    margin: -15px auto 30px;
    /* Pull up closer to banner */
    max-width: 90%;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.update-status-bar .time-display {
    color: #059669;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.update-status-bar .refresh-btn {
    border: none;
    background: white;
    color: #475569;
    cursor: pointer;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e2e8f0;
}

.update-status-bar .refresh-btn:hover {
    background: #ffffff;
    color: #1a73e8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .update-status-bar {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
}
/* Share Buttons */
.share-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.share-btn.whatsapp { background-color: #25D366; }
.share-btn.telegram { background-color: #0088cc; }
.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter { background-color: #1DA1F2; }

/* PWA Install Button */
.pwa-install-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Hidden initially */
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    z-index: 1000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
}

.pwa-install-btn.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.pwa-install-btn i {
    font-size: 1.1rem;
}
