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

:root {
    --primary-color: #0f172a;
    --accent-purple: #9333ea;
    --accent-blue: #2563eb;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-body: #f8fafc;
    --nav-height: 72px;
    --whatsapp-green: #25D366;
    --gradient-hero: linear-gradient(135deg, rgba(88, 28, 135, 1) 0%, rgba(30, 58, 138, 1) 100%);
}

/* WhatsApp Notification Bottom Popup */
.whatsapp-notification {
    background-color: var(--whatsapp-green);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100px);
}

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

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

.whatsapp-notification:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

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

.whatsapp-notification .cta-btn {
    background: white;
    color: var(--whatsapp-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.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;
}

* {
    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: #000000;
    border-bottom: 1px solid #1e293b;
    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.2);
}

.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: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-right: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #000000;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    border: 1px solid #1e293b;
    border-radius: 16px;
    overflow: hidden;
    min-width: 180px;
    z-index: 1002;
    margin-top: 12px;
    backdrop-filter: blur(20px);
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

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

.lang-dropdown-content.show {
    display: block;
}

.lang-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #94a3b8;
    text-decoration: none;
    border-bottom: 1px solid #0f172a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-content a:last-child {
    border-bottom: none;
}

.lang-dropdown-content a:hover {
    background: #1e293b;
    color: white;
    padding-left: 24px;
}

.flag-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

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

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

.nav-link {
    font-weight: 500;
    color: #cbd5e1;
    transition: color 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

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

.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-blue);
    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(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.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;
}

.footer-admin-link a {
    color: #cbd5e1;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .whatsapp-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .whatsapp-notification .cta-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-actions {
        display: flex;
        align-items: center;
    }

    .mobile-toggle {
        display: none !important;
    }

    .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: linear-gradient(135deg, #4c1d95 0%, #1e3a8a 100%);
    /* Deep Purple to Blue */
    color: var(--white);
    padding: 30px 0 20px;

    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: 20px;

    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(255, 255, 255, 0.1);
    color: #e9d5ff;
    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: #a855f7;
    /* Purple dot */
    animation: pulse 2s infinite;
}

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


.hero h1 span {
    display: inline;
    /* Allow single line */
    background: linear-gradient(to right, #67e8f9, #c084fc);
    /* Cyan to Purple 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: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -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: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgb(0, 0, 0);
    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-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 24px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Blur-up Lazy Loading */
.blur-load {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-color: transparent;
    /* Fixed white background leak */
}

.blur-load::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
    background-color: inherit;
    z-index: 1;
}

.blur-load.loaded::before {
    opacity: 0;
}

.blur-load img {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
    width: 100%;
    height: auto;
    display: block;
}

.blur-load.loaded img {
    opacity: 1;
}

/* Language Widget */
.lang-widget {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.lang-widget h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--slate-800);
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lang-link {
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--slate-50);
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-100);
}

.lang-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Latest Updates Widget */
.latest-updates {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--slate-200);
}

.latest-updates h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.update-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.update-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
}

.update-card h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.update-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate-600);
}

/* Specific for Hero Image to maintain shadow */
.hero-visual .blur-load {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 24px;
}

.hero-visual .hero-img {
    filter: none;
    /* Shadow is on the container now */
}


/* 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: 1.8rem;
    }


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

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

/* 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(--text-dark);
    letter-spacing: -0.025em;
    border: none;
    padding: 0;
}

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

/* Modern Reward Card - Redesign */
.reward-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
    padding: 10px 0;
}

.reward-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}




.reward-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.reward-icon-container {
    background: white;
    border-radius: 18px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 72px;
    height: 72px;
}

.reward-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
}

.reward-details {
    flex: 1;
    overflow: hidden;
}

.reward-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date-display {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-display::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 0.75rem;
}

.collect-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
    color: white;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.collect-btn::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.collect-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    transform: none;
}

.collect-btn.collected {
    background: #22c55e !important;
    color: white !important;
    box-shadow: none !important;
    cursor: default;
}

.collect-btn.collected:hover {
    background: #16a34a !important;
}

.collect-btn.collected::after {
    content: '\f00c';
}

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

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


@media (max-width: 768px) {

    /* Adjust padding for smaller screens but keep layout horizontal */
    .reward-card {
        padding: 12px 0;
        /* Remove left/right padding on mobile too */
        gap: 10px;
    }

    .reward-icon {
        width: 48px;
        height: 48px;
    }

    .reward-header {
        min-width: 0;
        /* Allow shrinking below 200px */
        flex: 1;
        /* Allow it to take main space */
    }

    .time-ago {
        font-size: 0.8rem;
        margin: 0 5px;
        /* Reduce margins */
        flex: 0 0 auto;
        /* Don't grow too much, just fit content */
        width: auto;
    }

    .collect-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: auto;
    }
}

/* Ad Container */
.ad-container {
    margin: 40px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    min-height: 250px;
    /* 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(--text-dark);
}

.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;
    }

    /* Table Responsiveness (Card Layout) */
    .responsive-table table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }

    .responsive-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .responsive-table tr {
        border: 1px solid #e2e8f0;
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .responsive-table td {
        border: none;
        border-bottom: 1px solid #f1f5f9;
        position: relative;
        padding: 12px 15px;
        text-align: left !important;
        min-height: 45px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .responsive-table td:last-child {
        border-bottom: none;
    }

    .responsive-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
        font-size: 0.75rem;
        text-transform: uppercase;
        flex-shrink: 0;
    }

    /* Style the Action/Title cell differently on mobile */
    .responsive-table td:first-child {
        background-color: #f8fafc;
        font-weight: 700;
        color: var(--primary-color);
        justify-content: center;
        font-size: 1rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .responsive-table td:first-child:before {
        display: none;
    }
}

/* Permissions Table Styling */
.permissions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    font-size: 0.9rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.permissions-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 15px;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
}

.permissions-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

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

.permissions-table tr:hover td {
    background-color: #f8fafc;
}

/* Status Indicators */
.status-yes,
.status-no,
.status-maybe {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.status-yes {
    background-color: #dcfce7;
    color: #166534;
}

.status-no {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-maybe {
    background-color: #fef9c3;
    color: #854d0e;
}

.permissions-table td:nth-child(2),
.permissions-table td:nth-child(3),
.permissions-table td:nth-child(4) {
    text-align: center;
}

/* 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 */
}


/* 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);
    /* Much more solid for readability */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-height: 150px;
    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 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.social-icon {
    font-size: 2.5rem;
    /* Bigger icons */
    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;
    /* Bigger title */
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}

.social-info p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    /* Bigger text */
    color: #cbd5e1;
    /* Lighter color for readability */
    font-weight: 500;
}

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

.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 {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

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

.whatsapp .social-btn:hover {
    background: #1eb954;
}

.telegram .social-btn:hover {
    background: #0077b5;
}

/* Reward Section Title */
.reward-section-title {
    text-align: center;
    margin: 50px auto 30px;
    color: var(--primary-color, #0f172a);
    font-size: 1.6rem;
    font-weight: 800;
    padding: 0 15px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reward-section-title span.date-accent {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 15px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
}

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

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

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

/* 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-list {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.faq-item p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
}

/* 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-purple);
    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-purple);
    font-size: 1.5rem;
    background: #f3e8ff;
    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-purple);
    margin-bottom: 8px;
}

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

.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;
    }
}

/* Social Proof - Live Ticker */
.live-ticker {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
}

.live-ticker.active {
    transform: translateX(0);
}

.ticker-avatar {
    width: 38px;
    height: 38px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ticker-info {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.ticker-info strong {
    color: white;
}

/* Claims Counter in Hero */
.claims-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 15px;
}

/* Trust Badges - Seamless Line */
.trust-badges-row {
    grid-column: 1 / -1;
    /* Span full width of the hero grid */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* Center badges */
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}


.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
}

.trust-badge i {
    color: #22c55e;
    font-size: 0.75rem;
}

/* Vertical separator between badges */
.trust-badge:not(:last-child)::after {
    content: "|";
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

/* Hero Breadcrumbs */
.hero-breadcrumbs {
    grid-column: 1 / -1;
    /* Span full width of the hero grid */
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumbs a:hover {
    color: var(--white);
}

.hero-breadcrumbs span {
    margin: 0 8px;
    opacity: 0.5;
}