:root {
    --primary: #da1959;
    --primary-light: #f99051;
    --gradient-main: linear-gradient(135deg, #700d3b, #fe589e) !important;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: #fff; 
    color: var(--text-dark); 
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }

/* Background Animation - Kept as requested */
.bg-animation {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -3;
    background: linear-gradient(135deg, #fffbfb 0%, #fff 50%, #fef9f3 100%);
    overflow: hidden;
}
.bg-animation::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(244, 49, 113, 0.17) 0%, #f8aac40d 50%), radial-gradient(circle at 80% 20%, rgba(253, 202, 212, 0.1) 0%, #2b2a2a00 40%);
    animation: rotate 20s linear infinite;
}
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Blur Dots Background */
.blur-dots {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    pointer-events: none; overflow: hidden;
}
.blur-dot {
    position: absolute; border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.blur-dot:nth-child(1) {
    width: 400px; height: 400px;
    background: rgba(218, 25, 89, 0.15);
    top: 10%; left: -5%;
    animation: float-dot 20s ease-in-out infinite;
}
.blur-dot:nth-child(2) {
    width: 300px; height: 300px;
    background: rgba(249, 144, 81, 0.12);
    top: 40%; right: -5%;
    animation: float-dot 25s ease-in-out infinite reverse;
}
.blur-dot:nth-child(3) {
    width: 350px; height: 350px;
    background: rgba(218, 25, 89, 0.1);
    bottom: 10%; left: 30%;
    animation: float-dot 22s ease-in-out infinite;
}
.blur-dot:nth-child(4) {
    width: 250px; height: 250px;
    background: rgba(249, 144, 81, 0.08);
    top: 60%; left: 60%;
    animation: float-dot 18s ease-in-out infinite reverse;
}
@keyframes float-dot {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Floating Icons - Fixed: Now loads with animation directly */
.floating-icons {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1;
    pointer-events: none; 
    overflow: hidden;
}

.float-icon {
    position: absolute; 
    color: var(--primary);
    opacity: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    animation: float-up 25s linear infinite;
    /* Icons start invisible and fade in with animation */
}

/* Animation starts immediately */
.float-icon:nth-child(1) { 
    left: 10%; 
    animation-delay: 0s; 
    font-size: clamp(2rem, 5vw, 3rem); 
}
.float-icon:nth-child(2) { 
    left: 25%; 
    animation-delay: 3s; 
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); 
}
.float-icon:nth-child(3) { 
    left: 40%; 
    animation-delay: 6s; 
    font-size: clamp(2.2rem, 5.5vw, 3.5rem); 
}
.float-icon:nth-child(4) { 
    left: 55%; 
    animation-delay: 9s; 
    font-size: clamp(1.5rem, 4vw, 2rem); 
}
.float-icon:nth-child(5) { 
    left: 70%; 
    animation-delay: 12s; 
    font-size: clamp(2rem, 5vw, 3rem); 
}
.float-icon:nth-child(6) { 
    left: 85%; 
    animation-delay: 15s; 
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); 
}
.float-icon:nth-child(7) { 
    left: 5%; 
    animation-delay: 18s; 
    font-size: clamp(2.5rem, 6vw, 4rem); 
}
.float-icon:nth-child(8) { 
    left: 95%; 
    animation-delay: 21s; 
    font-size: clamp(2rem, 5vw, 2.8rem); 
}

@keyframes float-up {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.08; 
    }
    90% { 
        opacity: 0.08; 
    }
    100% { 
        transform: translateY(-100vh) rotate(360deg); 
        opacity: 0; 
    }
}

/* Mobile optimization for floating icons */
@media (max-width: 768px) {
    .float-icon {
        animation-duration: 20s;
        opacity: 0.05;
    }
    .float-icon:nth-child(n) {
        font-size: 1.5rem;
    }
}

.aticlix-header {
    position: relative;
    width: 100%;
    z-index: 1050;
}

/* Custom navbar wrapper */
.aticlix-navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Brand/Logo */
.aticlix-brand {
    padding: 0;
}

.aticlix-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.aticlix-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Custom toggler button */
.aticlix-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #da1959;
    transition: all 0.3s ease;
    background: transparent;
}

.aticlix-toggler:focus {
    box-shadow: 0 0 0 3px rgba(218, 25, 89, 0.1);
    outline: none;
}

.aticlix-toggler i {
    transition: transform 0.3s ease;
}

/* Custom nav items */
.aticlix-nav {
    gap: 2px;
}

.aticlix-nav-item {
    position: relative;
}

/* Custom nav links */
.aticlix-nav-link {
    color: #475569 !important;
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.aticlix-nav-link:hover {
    color: #da1959 !important;
    background-color: rgba(218, 25, 89, 0.05) !important;
}

/* Active state */
.aticlix-nav-link.active {
    color: #da1959 !important;
    background: linear-gradient(135deg, rgba(218, 25, 89, 0.1), rgba(249, 144, 81, 0.05)) !important;
    font-weight: 600;
}

/* Custom dropdown toggle */
.aticlix-dropdown-toggle {
    position: relative;
    padding-right: 1.8rem !important;
}


/* Custom profile dropdown button - UPDATED with pink gradient */
.aticlix-profile-btn {
    background: linear-gradient(135deg, #fef3f6, #fff5f0) !important;
    border: 1px solid rgba(218, 25, 89, 0.2) !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 12px;
    color: #da1959 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.aticlix-profile-btn:hover {
    background: linear-gradient(135deg, #fef3f6, #fff5f0) !important;
    border-color: rgba(218, 25, 89, 0.4) !important;
    color: #da1959 !important;
    box-shadow: 0 4px 12px rgba(218, 25, 89, 0.15);
}

.aticlix-profile-btn.show {
    background: linear-gradient(135deg, #fef3f6, #fff5f0) !important;
    border-color: #da1959 !important;
    color: #da1959 !important;
}

.aticlix-profile-btn img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(218, 25, 89, 0.3);
    transition: all 0.3s ease;
}

.aticlix-profile-btn:hover img,
.aticlix-profile-btn.show img {
    border-color: #da1959;
}

/* Custom dropdown menu */
.aticlix-dropdown-menu {
    border: none !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    background: white !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    min-width: 220px !important;
}

/* Custom dropdown items */
.aticlix-dropdown-item {
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    font-weight: 500;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #475569 !important;
    margin: 2px 0 !important;
}

.aticlix-dropdown-item:hover {
    color: #da1959 !important;
    background-color: rgba(218, 25, 89, 0.08) !important;
}

.aticlix-dropdown-item i {
    color: #da1959;
    font-size: 1.1rem;
}

.aticlix-dropdown-divider {
    margin: 0.5rem 0 !important;
    border-color: rgba(226, 232, 240, 0.6) !important;
}

/* Custom auth buttons - UPDATED with pink/orange gradient */
.aticlix-header-btns {
    display: flex;
    gap: 12px;
    margin-left: 15px;
    align-items: center;
}

.aticlix-login-btn,
.aticlix-register-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.95rem !important;
    border: none !important;
    cursor: pointer;
}

/* Primary button - Pink/Orange gradient */
.aticlix-login-btn {
    background: linear-gradient(135deg, #3d3b3c, #2c2a2b) !important;
    color: white !important;
}

.aticlix-login-btn:hover {
    transform: translateY(-2px);
    color: white !important;
}

/* Secondary button - Dark with pink hover */
.aticlix-register-btn {
    background: linear-gradient(135deg, #700d3b, #fe589e) !important;
    color: white !important;
}

.aticlix-register-btn:hover {
    transform: translateY(-2px);
    color: white !important;
    background: linear-gradient(135deg, #700d3b, #fe589e) !important;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .aticlix-navbar {
        padding: 0.5rem 0;
    }
    
    .aticlix-nav {
        gap: 5px;
    }
    
    .aticlix-nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
    }
    
    .aticlix-profile-btn {
        min-width: auto;
        justify-content: center;
        padding: 0.75rem 1rem !important;
    }
    
    .aticlix-header-btns {
        margin: 1rem 0 0 0;
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }
    
    .aticlix-login-btn,
    .aticlix-register-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Remove problematic Bootstrap overrides */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {  margin: auto; max-width: 1200px;  padding: 50px 10px;}
.hero-content { max-width: 1400px; width: 100%; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.5rem; background: rgba(218, 25, 89, 0.08);
    border: 1px solid rgba(218, 25, 89, 0.15); border-radius: 50px;
    font-size: 0.9rem; color: var(--primary); margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.1; font-weight: 800; color: var(--text-dark); }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin-bottom: 2rem; font-family: 'DM Sans', sans-serif; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn {
    padding: 1rem 2rem; border-radius: 12px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; border: none; cursor: pointer;
}
.btn-primary { background: var(--gradient-main); color: white; box-shadow: 0 10px 30px -10px rgba(218, 25, 89, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(218, 25, 89, 0.5); }
.btn-secondary { background: var(--bg-white); color: var(--text-dark); border: 2px solid var(--border-light); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* Marquee */
.marquee-container {
    background: linear-gradient(90deg, transparent, rgba(218, 25, 89, 0.03), transparent);
    padding: 1rem 0; margin: 2rem 0; overflow: hidden; position: relative;
    border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.marquee-content {
    display: flex; gap: 2rem; animation: marquee 35s linear infinite;
    white-space: nowrap; width: fit-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.payment-item {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 1.2rem; background: var(--bg-white);
    border: 1px solid var(--border-light); border-radius: 50px; font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.payment-item .amount { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.payment-item .method { background: var(--gradient-main); color: white; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: 20px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
    transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(218, 25, 89, 0.2); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.feature-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text-dark); }
.feature-card p { color: var(--text-gray); font-size: 0.85rem; margin: 0; }

/* Benefits Section */
.benefits-section { padding: 50px 5%; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-tag {
    display: inline-block; padding: 0.6rem 1.2rem; background: rgba(218, 25, 89, 0.08);
    border: 1px solid rgba(218, 25, 89, 0.15); color: var(--primary);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--text-dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.benefit-card {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: 24px; padding: 2.5rem; transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.benefit-card:hover { transform: translateY(-10px); border-color: rgba(218, 25, 89, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; color: var(--text-dark); }
.benefit-card h3 i { width: 40px; height: 40px; background: var(--gradient-main); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.benefit-card p { color: var(--text-gray); margin-bottom: 1.5rem; }
.benefit-list { list-style: none; }
.benefit-list li { padding: 0.8rem 0; display: flex; align-items: center; gap: 0.8rem; color: var(--text-gray); border-bottom: 1px solid var(--border-light); }
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li i { color: var(--primary); }

/* Stats Section */
.stats-section { padding: 50px 5%; background: linear-gradient(180deg, transparent, rgba(218, 25, 89, 0.02), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.stat-card {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.stat-card:hover { transform: translateY(-10px); border-color: rgba(218, 25, 89, 0.2); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.stat-card h3 { font-size: 2.5rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem;  }
.stat-label { color: var(--text-gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Payment Methods Section */
.payment-methods-section { padding: 50px 5%; }
.payment-methods-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 1.5rem; 
    max-width: 1200px; 
    margin: 3rem auto 0; 
}
.payment-method-card {
    background: var(--bg-white); 
    border: 1px solid var(--border-light);
    border-radius: 20px; 
    padding: 2rem 1.5rem; 
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.payment-method-card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(218, 25, 89, 0.2); 
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    cursor: pointer;
}
.payment-method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(218, 25, 89, 0.05);
    border: 2px solid rgba(218, 25, 89, 0.1);
    transition: all 0.3s ease;
    color: #a82b62;
}
.payment-method-card:hover .payment-method-icon {
    background: var(--gradient-main);
    border-color: #ab2c64;
    transform: scale(1.1);
    color: white;
}
.payment-method-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}
.payment-method-type {
    font-size: 0.8rem;
    color: var(--text-gray);
    background: rgba(218, 25, 89, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* Offerwalls Partners Section */
.offerwalls-partners-section { padding: 10px 5%; }
.offerwalls-partners-grid { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 2rem; 
    max-width: 1400px; 
    margin: 3rem auto 0; 
}
.offerwall-partner-card {
    background: var(--bg-white); 
    border: 1px solid var(--border-light);
    border-radius: 20px; 
    padding: 2rem 1.5rem; 
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.offerwall-partner-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.offerwall-partner-card:hover::before {
    transform: scaleX(1);
}
.offerwall-partner-card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(218, 25, 89, 0.2); 
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    cursor: pointer;
}
.offerwall-partner-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(218, 25, 89, 0.05);
    border: 2px solid rgba(218, 25, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    color: #9f265c;
}
.offerwall-partner-card:hover .offerwall-partner-icon {
    background: var(--gradient-main);
    border-color: #ab2c64;
    transform: scale(1.1);
    color: white;
}
.offerwall-partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}
.offerwall-partner-type {
    font-size: 0.8rem;
    color: var(--text-gray);
    background: rgba(218, 25, 89, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* FAQ Section */
.faq-section { padding: 50px 5%; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-question {
    padding: 1.5rem; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600; transition: all 0.3s ease; color: var(--text-dark);
}
.faq-question:hover { background: rgba(218, 25, 89, 0.03); }
.faq-question i { transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: all 0.3s ease;
    padding: 0 1.5rem; color: var(--text-gray);
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }

/* Footer */
footer { padding: 4rem 5% 2rem; border-top: 1px solid var(--border-light); background: var(--bg-white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-brand img { max-height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-gray); font-size: 0.9rem; }
.footer-links h4 { font-size: 1rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.footer-links a { display: block; color: var(--text-gray); text-decoration: none; padding: 0.5rem 0; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom {
    text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-light);
    color: var(--text-gray); font-size: 0.9rem;
}
.footer-bottom strong { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Scroll Top */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: var(--gradient-main); border: none; border-radius: 12px;
    color: white; font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 10px 25px -5px rgba(218, 25, 89, 0.4); }

/* Responsive */
@media (max-width: 991px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .payment-methods-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
    .offerwalls-partners-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
    .offerwalls-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .payment-methods-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .payment-method-card { padding: 1.5rem 1rem; }
    .payment-method-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .offerwalls-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .offerwall-partner-card { padding: 1.5rem 1rem; }
    .offerwall-partner-icon { width: 60px; height: 60px; font-size: 2rem; }
}
/* Footer */
:root {
      --kfcodi-primary: #ff5e84;
      --kfcodi-primary-light: #ff7b98;
      --kfcodi-bg: #f9f9fb;
    }

    .kfcodi-footer {
      background: linear-gradient(145deg, #ffe7e7 0%, #f9f9fb 40%, #e3e3e3 100%);
      border-top: 1px solid rgba(255,255,255,0.4);
      color: #222;
      position: relative;
      padding: 30px 0px;
    }
.kfcodi-footer::before {
      width: 220px;
      height: 220px;
      background: red;
      top: -60px; left: -60px;
    }
    .kfcodi-footer::after {
      width: 260px;
      background: var(--kfcodi-primary-light);
      bottom: -100px; right: -150px;
    }
    /* soft floating gradient bubbles */
    
   

    .kfcodi-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kfcodi-brand-icon {
      background: linear-gradient(135deg, var(--kfcodi-primary), var(--kfcodi-primary-light));
      color: #fff;
      font-weight: 700;
      font-size: 1.3rem;
      width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(255,94,132,0.4);
    }
    .kfcodi-brand-name {
      font-weight: 700;
      font-size: 1.6rem;
      color: #111;
    }
    .kfcodi-brand-name span { color: var(--kfcodi-primary); }

    .kfcodi-tagline {
      color: #555;
      margin-top: 6px;
      font-size: 0.95rem;
    }

    .kfcodi-footer-title {
      font-weight: 700;
      color: #424141;
      margin-bottom: 1rem;
    }

    .kfcodi-footer-links a {
      color: #555;
      display: block;
      margin-bottom: 0.6rem;
      text-decoration: none;
      transition: 0.3s;
    }
    .kfcodi-footer-links a:hover {
      color: var(--kfcodi-primary);
      transform: translateX(5px);
    }

    .kfcodi-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 25px; height: 25px;
      border-radius: 50%;
      background: #fff;
      color: #444;
      margin-right: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: 0.3s;
    }
    .kfcodi-social a:hover {
      background: var(--kfcodi-primary);
      color: #fff;
      transform: translateY(-3px);
    }

    .kfcodi-footer-bottom {
      border-top: 1px solid rgba(0,0,0,0.05);
      margin-top: 20px;
      padding-top: 15px;
      text-align: center;
      color: #777;
      font-size: 0.9rem;
    }

    /* scroll-to-top */
    #kfcodi-scrolltop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 45px; height: 45px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #f6256a, #444);
      color: #fff;
      display: none;
      z-index: 99;
      font-size: 1.2rem;
      box-shadow: 0 1px 6px rgba(74, 74, 74, 0.5);
      transition: 0.3s;
    }
    #kfcodi-scrolltop:hover {
      background: linear-gradient(135deg, #f6256a, #8e8b8b);
      transform: scale(1.08);
    }
  
/* ===========================
   BUTTONS (fixed)
============================ */
.btn-gradient {
  position: relative;
  display: inline-block;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 2px 8px rgba(244,63,94,0.4);
  transition: color 0.3s ease, background 0.4s ease, transform 0.2s ease;
  isolation: isolate;
  z-index: 0;
}
.btn-gradient span { position: relative; z-index: 1; }

.btn-gradient::before,
.btn-gradient::after {
  content: "";
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(270deg, #f43f5e, #ec4899, #f43f5e);
  animation: glowingBorder 3s linear infinite;
}
.btn-gradient::before {
  top: -5px; bottom: -5px; left: -5px; right: -5px;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}
.btn-gradient::after {
  top: -12px; bottom: -12px; left: -12px; right: -12px;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -3;
  animation-delay: 1.5s;
}

.btn-gradient:hover,
.btn-gradient:focus {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(236,72,153,0.4);
}
@keyframes glowingBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* 🌐 Language Selector (Footer Drop-Up Style) */
.language-dropup {
  position: relative;
  display: inline-block;
}

/* 🌈 Button */
.lang-btn {
  background: linear-gradient(135deg, #f6256a, #444);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 8px 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lang-btn img {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
}

/* 🌍 Language Menu (Drop-Up Panel) */
.language-menu {
  display: none;
  position: absolute;
  bottom: 48px; /* opens upward */
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(12, 18, 30, 0.12);
  min-width: 160px;
  z-index: 999;
  overflow: hidden;
}

.language-menu.show {
  display: block;
  animation: fadeInUp 0.18s ease;
}

/* 🌎 Language Items */
.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.12s ease, color 0.12s ease;
}

.language-menu a img {
  width: 18px;
  height: 14px;
  border-radius: 2px;
}

.language-menu a:hover {
  background: linear-gradient(90deg, #fff0f4, #fff5f7);
  color: #ff3366;
}

/* ✨ Drop-Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🧩 Hide Google Translate Bar */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}
/* Responsive */
@media (max-width: 991px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .payment-methods-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
    .offerwalls-partners-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
    .offerwalls-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .payment-methods-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .payment-method-card { padding: 1.5rem 1rem; }
    .payment-method-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .offerwalls-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .offerwall-partner-card { padding: 1.5rem 1rem; }
    .offerwall-partner-icon { width: 60px; height: 60px; font-size: 2rem; }
}
