/* --- Reset o Styles l-3amma --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Luckiest Guy', cursive;
}

body {
    background-color: #f1f5f9;
    min-height: 100vh;
    position: relative;
}

/* Hada ghir gradient background preview bach tban lik l-lo3ba dial el-zaj chfaf mzyan */
.bg-gradient-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
    z-index: -1;
}

/* --- Glassmorphism Header --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    position: fixed; /* Bach ib9a floating fo9 content m7di t-scrolli */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* El-9a3ida dial Glassmorphism White */
    background: rgba(255, 255, 255, 0.45); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* support dial Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* --- L-Logo --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-container img{
    width: 250px;
}

/* --- Links f l-PC --- */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.nav-item i {
    font-size: 15px;
    color: #475569;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #4f46e5; /* Hover blue/indigo */
}

.nav-item:hover i {
    color: #4f46e5;
}

/* --- Hamburger Menu Icon --- */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #334155;
    cursor: pointer;
    padding: 5px;
}

/* --- Responsive Mobile (Less than 768px) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    /* Dropdown d l-mobile hwa b nafss style dial Glass white */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.85); /* 39adna l-lon chwya f mobile bach i9ra mzyan */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 24px 20px 24px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}


/* --- HERO SECTION STYLES --- */

.hero-section {
    position: relative;
    padding: 140px 40px 80px 40px; /* padding l-fo9ani kbir 3la 9bl fixed navbar */
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    z-index: 2;
}

/* --- Left Content --- */
.hero-content {
    flex: 1;
    max-width: 650px;
}

/* Badge style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    color: #6366f1;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: #a855f7;
}

/* Title */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.hero-description {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Buttons Container */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button Watch Tutorial (Secondary) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.btn-secondary i {
    color: #4f46e5;
    font-size: 18px;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Button Start Generating (Primary) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

/* --- Right Image --- */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Clean shadow/glow smooth layout */
    filter: drop-shadow(0 15px 30px rgba(147, 51, 234, 0.2));
    animation: float 4s ease-in-out infinite; /* Animation de float dial vbucks */
}

/* --- Purple Glow Background (Aura f l-ymine) --- */
.hero-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Floating Animation dial sora */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* --- Responsive Mobile --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse; /* Sora tji l-fo9 f mobile */
        text-align: center;
        margin-top: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .hero-image {
        max-width: 75%;
    }

    .hero-glow {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
    }
}



/* --- PACKS SECTION STYLES --- */

.packs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Title layout */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.section-header img{
    width: 30px;
}


.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b; /* Dark text matching white style */
    letter-spacing: -0.5px;
}

/* Grid Grid arrangement */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* --- Card Base Design --- */
.pack-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%); /* background ghame9 pro d7al sora */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 25px 25px 25px;
    position: relative; /* important 3la 9bl ribbon */
    overflow: hidden; /* t7iyed zyayid d ribbon */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover effects premium */
.pack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 30px 50px rgba(99, 102, 241, 0.15);
}

/* Image Wrapper with glowing aura */
.pack-img-container {
    margin: 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.pack-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.pack-card:hover .pack-img {
    transform: scale(1.06);
}

/* Card Content typography */
.pack-info {
    margin-bottom: 25px;
}

.pack-amount {
    font-family: 'Segoe UI', sans-serif; /* t9dar trje3ha 'Luckiest Guy' ila bghiti look dial fortnite hna kman */
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pack-label {
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- Claim Button --- */
.claim-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.claim-btn i {
    font-size: 12px;
    transition: transform 0.2s;
}

.claim-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    filter: brightness(1.08);
}

.claim-btn:hover i {
    transform: translateX(3px);
}

/* --- Corner Ribbons (Badges) --- */
.ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    transform: rotate(35deg);
    width: 130px;
    text-align: center;
    padding: 5px 0;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Alwan d ribbons b7al sora exact */
.ribbon-popular {
    background: linear-gradient(135deg, #ec4899, #d946ef); /* pink/neon purple */
}

.ribbon-chosen {
    background: linear-gradient(135deg, #06b6d4, #3b82f6); /* neon blue */
}

.ribbon-best {
    background: linear-gradient(135deg, #a855f7, #6366f1); /* deep purple */
}

/* --- Responsive Mobile --- */
@media (max-width: 992px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards row f tablet */
    }
}

@media (max-width: 650px) {
    .packs-grid {
        grid-template-columns: 1fr; /* 1 card column f mobile display */
        gap: 25px;
    }
    
    .pack-card {
        padding: 35px 20px 20px 20px;
    }
    
    .pack-amount {
        font-size: 36px;
    }
}


/* --- EXCLUSIVE SKINS SECTION STYLES --- */

.skins-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}

/* Grid dyal l-cards (2 f l-PC) */
.skins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

/* --- Base Skin Card --- */
.skin-card {
    background: linear-gradient(135deg, #582dbb 0%, #2a1b6d 100%); /* Purple gradient b7al sora exact */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    display: flex;
    position: relative;
    overflow: hidden; /* bach mayb9ash chi zyayid kharij t9wisa d l-card */
    min-height: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(88, 45, 187, 0.3);
}

/* --- Left Side: Information --- */
.skin-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    z-index: 2; /* Bach l-ketba o button ib9aw fo9 sora ila tza7mo */
    width: 55%;
}

.skin-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Badges style */
.skin-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.badge-icon {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #e9d5ff;
}

.badge-rare {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.5);
    color: #cffafe;
}

/* Skin Claim Button */
.skin-claim-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.skin-claim-btn i {
    font-size: 11px;
    transition: transform 0.2s;
}

.skin-claim-btn:hover {
    background: #ffffff;
    color: #2a1b6d;
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.skin-claim-btn:hover i {
    transform: translateX(3px);
}

/* --- Right Side: Image Placement --- */
.skin-img-container {
    position: absolute;
    right: -10px;
    bottom: -15px;
    width: 50%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.skin-img {
    max-height: 100%;
    max-width: 115%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Effect smooth dial image scaling f hover */
.skin-card:hover .skin-img {
    transform: scale(1.04) translateY(-5px);
}

/* --- Responsive Mobile --- */
@media (max-width: 992px) {
    .skins-grid {
        grid-template-columns: 1fr; /* Card t7t card f tablet o mobile */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .skin-card {
        padding: 25px;
        min-height: 200px;
    }

    .skin-name {
        font-size: 22px;
    }
    
    .skin-info {
        width: 60%;
        gap: 12px;
    }
    
    .skin-img-container {
        width: 45%;
        right: -5px;
    }
}

/* --- TOP 10 SKINS SECTION --- */

.skins-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
}

/* L-Grid dynamic (3 f saf f l-PC الكبير) */
.skins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

/* --- Base Skin Card --- */
.skin-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.skin-card:hover {
    transform: translateY(-5px);
}

/* --- Gradients dynamically depending on skin type --- */
/* 1. OG Skins (Orange/Gold aura) */
.rarity-og { background: linear-gradient(135deg, #b45309 0%, #451a03 100%); }
.rarity-og:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15); }

/* 2. Icon Series (Teal/Dark blue aura) */
.rarity-icon { background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%); }
.rarity-icon:hover { border-color: rgba(56, 189, 248, 0.4); box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15); }

/* 3. Promo/Exclusive (Deep Purple/Pink aura) */
.rarity-exclusive { background: linear-gradient(135deg, #7c3aed 0%, #2e1065 100%); }
.rarity-exclusive:hover { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 20px 40px rgba(167, 139, 250, 0.15); }

/* 4. Halloween/Rare (Cyan/Grey aura) */
.rarity-rare { background: linear-gradient(135deg, #0891b2 0%, #111827 100%); }
.rarity-rare:hover { border-color: rgba(34, 211, 238, 0.4); box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15); }


/* --- Inner Elements Positioning --- */
.skin-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    width: 60%;
}

.skin-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Badges design */
.skin-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.badge-og { background: rgba(245, 158, 11, 0.2); border: 1px solid #f59e0b; color: #fef3c7; }
.badge-icon { background: rgba(56, 189, 248, 0.2); border: 1px solid #38bdf8; color: #e0f2fe; }
.badge-exclusive { background: rgba(167, 139, 250, 0.2); border: 1px solid #a78bfa; color: #f5f3ff; }
.badge-rare { background: rgba(34, 211, 238, 0.2); border: 1px solid #22d3ee; color: #ecfeff; }

/* Micro Button */
.skin-claim-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.skin-claim-btn:hover {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
}

/* Character Image placement f l-ymine absolute */
.skin-img-container {
    position: absolute;
    right: -15px;
    bottom: -10px;
    width: 45%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none; /* may7bsh click 3la card */
}

.skin-img {
    max-height: 100%;
    max-width: 120%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skin-card:hover .skin-img {
    transform: scale(1.05) translateY(-3px);
}

/* --- Responsive Mobile (Bdal count d columns) --- */
@media (max-width: 1024px) {
    .skins-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards f tablet view */
    }
}

@media (max-width: 680px) {
    .skins-grid {
        grid-template-columns: 1fr; /* 1 card column straight f small phones */
        gap: 20px;
    }
    
    .skin-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .skin-name {
        font-size: 20px;
    }
}


/* --- FAQ SECTION STYLES --- */

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* spacing smooth bin kulla so2al */
}

/* Base Accordion Item design b7al image_ca7ea5.png */
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px; /* t9wisa dial sora */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Row dial l-So2al */
.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 16px;
    font-weight: 700;
    color: #3b2fb3; /* Purple-blue text color exact dial sora */
}

.faq-arrow {
    font-size: 14px;
    color: #3b2fb3;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Area dial l-Jawab (Hidden by default) --- */
.faq-answer {
    max-height: 0; /* animation hidden magic trick */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafbfe; /* background light smooth l-jawab */
}

.faq-answer p {
    padding: 0 28px 22px 28px;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* --- Classes mlli tkon l-FAQ Active (M7lo7a) --- */
.faq-item.active {
    border-color: rgba(59, 47, 179, 0.15);
    box-shadow: 0 10px 25px rgba(59, 47, 179, 0.05);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* arrow kat9leb l-fo9 look smooth */
}

/* --- Responsive Mobile --- */
@media (max-width: 600px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 14px;
        padding-right: 10px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
}


/* --- STATS SECTION STYLES --- */

.stats-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 cards row f PC */
    gap: 25px;
    width: 100%;
}

/* --- Base Stat Card --- */
.stat-card {
    border-radius: 28px; /* T9wisa kbira o pro b7al sora */
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* --- Gradients dial kulla card --- */
.card-purple {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%);
}

.card-blue {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 60%, #38bdf8 100%);
}
.card-reed{
    background: linear-gradient(135deg, #743205 0%, #a74c08 60%, #703006 100%);
}

/* --- Icon Box (Mora l-icon) --- */
.stat-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Glassmorphism background khfif lil-icon container */
.card-purple .stat-icon-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-blue .stat-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-reed .stat-icon-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon-box i {
    font-size: 32px;
    color: #ffffff;
}

/* --- Typography --- */
.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Dot Pattern Decorator (N9i6at f l-ymine) --- */
.dot-pattern {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 60px;
    /* Mask geometric dots */
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
    pointer-events: none;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr; /* 1 card vertical f mobile display */
        gap: 20px;
    }

    .stat-card {
        padding: 25px 30px;
        gap: 20px;
        border-radius: 20px;
    }

    .stat-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .stat-icon-box i {
        font-size: 24px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 14px;
    }
    
    .dot-pattern {
        right: 15px;
        width: 60px;
    }
}


/* --- USER REVIEWS SECTION STYLES --- */

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Star Icon special color f l-header */
.section-icon-star {
    font-size: 24px;
    color: #6366f1;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.7));
}

/* Grid layout (2 cards 7da b7ad f l-PC) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

/* --- Review Card Base --- */
.review-card {
    background: linear-gradient(145deg, #181d3d 0%, #0b0e24 100%); /* Dark neon background matching image_e46fef.png */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 20px rgba(59, 130, 246, 0.05); /* inner glow khfif */
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Top profile row layout */
.review-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

/* Avatar circular mask b glow radius */
.avatar-container {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    background: #1e293b;
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta layout (Name + badge o l-khmissat d njoum) */
.user-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-name-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

/* Verification Blue Tick */
.verify-badge {
    color: #3b82f6;
    font-size: 15px;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
}

/* Stars rating alignment o alwan exact look b7al sora */
.user-rating {
    display: flex;
    gap: 4px;
}

.star-filled {
    color: #38bdf8; /* Bright Cyan/Blue star */
    font-size: 14px;
}

.star-gradient {
    color: #a855f7; /* Purple star at the end */
    font-size: 14px;
}

/* --- Review Quotes Text Typography --- */
.review-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #cbd5e1; /* Light grey text card 1 */
}

/* Card 2 has a cyan colored text style in image_e46fef.png */
.text-cyan {
    color: #67e8f9; /* Bright cyan text look */
}

/* --- Responsive Mobile View --- */
@media (max-width: 850px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* Stack vertically f small screens */
        gap: 20px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-text {
        font-size: 15px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards f row f l-PC screen view */
    gap: 25px;
    width: 100%;
}

/* responsive automatic bach f l-tablet o phone i3wdw yrj3o 1fr auto */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


/* --- MINIMAL PREMIUM FOOTER --- */

.minimal-footer {
    background: linear-gradient(180deg, #0f1225 0%, #070914 100%); /* Deep dark indigo matching the app vibe */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 20px 40px 20px;
    margin-top: 60px;
    color: #94a3b8;
}

.footer-minimal-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px; /* Perfect spacing between sections */
}

/* Logo Sizing Control */
.footer-brand-logo .footer-logo-img {
    height: 55px; /* Adjust based on your logo shape */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.3)); /* Premium light aura */
}

/* Connect With Us Typography & Box */
.footer-socials-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Glowing Social Buttons Layout */
.f-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-social-btn:hover {
    background: #4f46e5; /* Transitions to matching indigo on hover */
    border-color: #4f46e5;
    box-shadow: 0 0 18px rgba(79, 70, 229, 0.6);
    transform: translateY(-4px) scale(1.05); /* smooth hover zoom in scale */
}

/* Copyright & Disclaimer Settings */
.footer-copyright-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.f-disclaimer {
    font-size: 11px;
    line-height: 1.5;
    color: #475569;
    max-width: 450px;
}

/* --- RESPONSIVE MOBILE SCALING --- */
@media (max-width: 480px) {
    .minimal-footer {
        padding: 40px 15px 35px 15px;
    }
    
    .footer-minimal-container {
        gap: 28px;
    }

    .footer-brand-logo .footer-logo-img {
        height: 45px; /* slightly smaller on smartphones */
    }
}


/* --- FIXED BOTTOM NAVIGATION (WHITE GLASSMOPHISM WITH IMAGES) --- */

.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    height: 75px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 0 15px;
    transition: all 0.3s ease;
}

/* Individual Link Item Styles */
.b-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px; /* control distance between img and text */
    text-decoration: none;
    color: #64748b !important; /* Grey color for unselected items */
    width: 22%;
    height: 85%;
    border-radius: 16px;
    font-family: 'Segoe UI', sans-serif !important; /* Prevents inherit from header font */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, background 0.3s ease;
}

/* Control sizing for your custom PNG/SVG Images */
.b-nav-img {
    width: 24px;   /* Perfect icon height size */
    height: 24px;  /* Aspect ratio lock */
    object-fit: contain;
    opacity: 0.7;  /* Slightly faded when unselected */
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

/* --- HOVER & ACTIVE INTERACTIONS --- */
.b-nav-item:hover {
    transform: scale(1.12); /* smooth bounce zoom in */
    color: #4f46e5 !important; /* Elegant Indigo hover color */
    background: rgba(79, 70, 229, 0.04);
}

.b-nav-item:hover .b-nav-img {
    opacity: 1; /* full brightness on hover */
}

/* State when item is active or auto-scrolled to */
.b-nav-item.active {
    color: #4f46e5 !important;
    background: rgba(79, 70, 229, 0.08); /* clean background highlight capsule */
    transform: scale(1.05);
}

.b-nav-item.active .b-nav-img {
    opacity: 1;
    transform: translateY(-2px); /* minor vertical lift animation */
    filter: drop-shadow(0 4px 6px rgba(79, 70, 229, 0.2)); /* subtle color glow under img */
}

/* Labels text typography */
.b-nav-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Base body bottom padding scroll safety */
body {
    padding-bottom: 110px;
}

/* --- RESPONSIVE SMALL MOBILE DEVICES --- */
@media (max-width: 600px) {
    .bottom-nav {
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        height: 70px;
    }
    
    .b-nav-item {
        height: 100%;
    }
    
    .b-nav-item:hover {
        transform: scale(1.08);
    }
}



/* --- PREMIUM VIDEO MODAL STYLES --- */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000; /* dima fo9 bottom menu o kolchi */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Background dark fade b blur filter modern */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 20, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Wrapper container frame for content scaling bounce */
.modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px; /* size ideal dial desktop video player */
    background: #0f1225; /* dark frame matching font vibe */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* custom elastic pop popup bounce */
    z-index: 2;
}

/* Aspect ratio 16:9 player safety code */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 24px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Close Button Close Layout (Top Right Corner) */
.close-modal-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 30px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background: #ef4444; /* clear alert hover red color shadow */
    border-color: #ef4444;
    transform: rotate(90deg);
}

/* --- STATE WHEN ACTIVE (OPENED) --- */
.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal.open .modal-content-wrapper {
    transform: scale(1) translateY(0);
}

/* Adjustments for smaller smartphone sizes */
@media (max-width: 768px) {
    .modal-content-wrapper {
        width: 95%;
        border-radius: 16px;
    }
    .video-container {
        border-radius: 16px;
    }
    .close-modal-btn {
        top: -40px;
        right: 5px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
}



/* --- PREMIUM STEPPED CLAIM MODAL --- */

.reward-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.reward-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reward-modal-wrapper {
    position: relative;
    width: 92%;
    max-width: 500px;
    background: linear-gradient(145deg, #161b35 0%, #0c0f22 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9) translateY(15px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    overflow: hidden;
}

/* Open Animation Toggle */
.reward-modal.open { opacity: 1; pointer-events: auto; }
.reward-modal.open .reward-modal-wrapper { transform: scale(1) translateY(0); }

/* Close Button Line */
.reward-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.reward-close-btn:hover { color: #ef4444; }

/* --- STEPS SWITCHER LOGIC VISIBILITY --- */
.modal-step {
    display: none;
}
.modal-step.active {
    display: block;
    animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography headers */
.step-title { font-size: 24px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 8px; }
.step-subtitle { font-size: 14px; color: #94a3b8; text-align: center; line-height: 1.5; margin-bottom: 25px; }

/* Input Field Style */
.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 16px;
}
.input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: all 0.25s ease;
}
.input-group input:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

/* Platform Custom Grid Selector */
.platform-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.platform-card { cursor: pointer; }
.platform-card input { display: none; } /* Hide raw radio circles */
.platform-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    transition: all 0.2s ease;
}
.platform-content i { font-size: 18px; }
.platform-content span { font-size: 14px; font-weight: 700; }

/* Check State color filters */
.platform-card input:checked + .platform-content {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

/* Action Trigger Navigation Buttons */
.modal-next-btn, .verify-now-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.25s ease;
    text-decoration: none;
}
.modal-next-btn:hover, .verify-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.45);
}

/* --- STEP 2: CYBER LOADER SYSTEM --- */
.loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.cyber-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(56, 189, 248, 0.1);
    border-top-color: #38bdf8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 25px;
}
@keyframes spin { to { transform: rotate(360deg); } }

#loading-status-msg {
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
    height: 24px;
    margin-bottom: 20px;
}
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    border-radius: 10px;
    transition: width 0.1s linear;
}
.loading-percentage { font-size: 14px; font-weight: 800; color: #38bdf8; }

/* --- STEP 3: SUCCESS COMPONENT --- */
.success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.success-icon-glow {
    font-size: 55px;
    color: #22c55e;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.4));
    margin-bottom: 15px;
}
.success-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.success-subtitle { font-size: 13px; color: #94a3b8; text-align: center; line-height: 1.6; margin-bottom: 25px; }

/* Dynamic Selected Summary Card Box Display */
.summary-reward-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}
.summary-reward-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.summary-reward-card h4 { font-size: 18px; font-weight: 800; color: #fff; margin: 0; }
.summary-reward-card p { font-size: 12px; color: #64748b; margin: 2px 0 0 0; font-weight: 600; text-transform: uppercase; }

.verify-now-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}
.verify-now-btn:hover {
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.45);
}

/* --- CPA OFFERS CONTAINER LAYOUT --- */

.offers-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 18px;
    margin-top: 5px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.offers-headline {
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8; /* sky blue accent text */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Card Offer Element */
.offer-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon box design inside offer */
.offer-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.offer-details {
    flex-grow: 1;
    padding: 0 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.offer-desc {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Right Badge Button indicator */
.offer-action-btn {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e2e8f0;
    transition: all 0.25s ease;
}

/* --- HOVER EFFECTS GRAPHICS --- */
.offer-item:hover {
    transform: translateY(-2px);
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.08);
}

.offer-item:hover .offer-icon-wrapper {
    background: #38bdf8;
    color: #070914;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.offer-item:hover .offer-action-btn {
    background: #22c55e; /* turns green on hover action */
    border-color: #22c55e;
    color: #fff;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Adjustments for tight modal widths */
@media (max-width: 480px) {
    .offers-container { padding: 14px; }
    .offer-title { font-size: 13px; }
    .offer-desc { font-size: 10px; }
    .offer-action-btn { padding: 5px 10px; font-size: 11px; }
}

/* --- LIVE VERIFICATION COUNTER STATUS --- */

.live-status-wrapper {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.status-counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pulsating Neon Dot effect */
.status-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444; /* Red color initially (0/1) */
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
}

.status-dot.pulsating {
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 8px currentColor; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 15px currentColor; }
    100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 8px currentColor; }
}

/* Mini infinite tracking line layout below label */
.status-loader-mini {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
    position: relative;
}

.status-loader-bar {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    position: absolute;
    animation: trackingLine 2s infinite linear;
}

@keyframes trackingLine {
    0% { left: -35%; }
    100% { left: 100%; }
}

.status-waiting-msg {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* When complete state changes to green active values */
.live-status-wrapper.verified .status-dot {
    background-color: #22c55e !important;
    color: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}
.live-status-wrapper.verified #verification-counter {
    color: #22c55e;
}

/* --- INFO PAGES MODAL FRAMEWORK --- */

.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100005; /* dima fo9 kolchi */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.info-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-modal-wrapper {
    position: relative;
    width: 92%;
    max-width: 550px;
    background: linear-gradient(145deg, #161b35 0%, #0c0f22 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    transform: scale(0.9) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 6;
    max-height: 85vh;
    overflow-y: auto;
}

/* Scrollbar styling clean dial inner modal */
.info-modal-wrapper::-webkit-scrollbar { width: 6px; }
.info-modal-wrapper::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }

.info-modal.open { opacity: 1; pointer-events: auto; }
.info-modal.open .info-modal-wrapper { transform: scale(1) translateY(0); }

.info-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.info-close-btn:hover { color: #ef4444; }

/* Content Tabs logic toggles */
.info-tab-content { display: none; }
.info-tab-content.active { display: block; animation: infoFade 0.3s ease forwards; }

@keyframes infoFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.info-title i { color: #38bdf8; }
.info-subtitle { font-size: 13px; color: #64748b; margin-bottom: 22px; font-weight: 500; }

/* Text Content blocks styling */
.info-body-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}
.info-body-text p { margin-bottom: 12px; }
.info-body-text ul { padding-left: 20px; margin: 15px 0; display: flex; flex-direction: column; gap: 8px; }
.info-body-text li { font-size: 13px; color: #cbd5e1; }

/* Support status custom box elements */
.support-status-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.status-row { display: flex; justify-content: space-between; font-size: 13px; }
.status-row span { color: #64748b; font-weight: 600; }

/* Contact Form Framework UI */
.info-contact-form { display: flex; flex-direction: column; gap: 14px; }
.info-input-box input, .info-input-box textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: all 0.2s ease;
}
.info-input-box input:focus, .info-input-box textarea:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}
.info-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.info-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3); }