:root {
    --bg-main: #0b0e14;
    --bg-card: #151a23;
    --accent-purple: #7b2cbf;
    --accent-cyan: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.25);
    --text-main: #ffffff;
    --text-muted: #8c9ba5;
    --font-fortnite: 'Burbank Big Condensed', 'Segoe UI Black', Tahoma, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    padding-bottom: 120px; /* Extra space for larger floating dock */
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(21, 26, 35, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-fortnite);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

.top-nav {
    display: flex;
    gap: 20px;
}

.top-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-nav a:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--font-fortnite);
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-action {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px #00eeff66;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-action img {
    width: 25px;
}

.btn-action:hover {
    transform: translateY(-2px);
    background: var(--accent-cyan);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
/* Mobile Tag / Target (Screens < 768px) */
@media screen and (max-width: 768px) {
    .btn-action {
        width: 100%;
        font-size: 10px;
    }

    .btn-action img {
        width: 20px;
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px var(--accent-glow));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Headings */
.section-title {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
    font-family: var(--font-fortnite);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.section-title img {
    width: 30px;
}

/* Grid Section */
.rewards-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease-in-out;
    overflow: hidden;
}

.card-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-4px);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.card-img-wrap {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

.card-info h3 {
    font-family: var(--font-fortnite);
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-claim {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-cyan), #0072ff);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-claim:hover {
    opacity: 0.9;
}

/* Expanded Floating Navigation Dock */
.floating-dock {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 28, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 240, 255, 0.3);
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    gap: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--accent-glow);
    z-index: 999;
}

.dock-item {
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dock-item i {
    font-size: 18px;
}
.dock-item img {
    width: 25px;
}

.dock-item.active, 
.dock-item:hover {
    background: var(--accent-cyan);
    color: #0b0e14;
    box-shadow: 0 0 15px var(--accent-cyan);
    transform: scale(1.05);
}

.dock-item img {
    width: 25px;
    height: auto;
    /* Turns any image to #8c9ba5 tint */
    filter: brightness(0) saturate(100%) invert(69%) sepia(8%) saturate(601%) hue-rotate(164deg) brightness(91%) contrast(88%);
    transition: filter 0.3s ease;
}

.dock-item.active, 
.dock-item:hover {
    background: var(--accent-cyan);
    color: #0b0e14;
    box-shadow: 0 0 15px var(--accent-cyan);
    transform: scale(1.05);
}

/* Change image to pure Black on Hover/Active */
.dock-item.active img,
.dock-item:hover img {
    filter: brightness(0);
}

/* Responsive UI */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        margin: 20px auto;
    }
    .hero-text h1 { font-size: 36px; }
    .hero-text p { margin: 0 auto 20px; }
    .hero-actions { justify-content: center; }
    .top-nav { display: none; }
    
    .floating-dock {
        padding: 8px 14px;
        gap: 8px;
        bottom: 15px;
        width: 90%;
        justify-content: space-around;
    }
    
    .dock-item {
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .dock-item i {
        font-size: 15px;
    }
}


/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* User Reviews Section */
.reviews-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-cyan);
}

.user-info h4 {
    font-size: 15px;
    font-weight: 800;
}

.stars {
    color: #ffd700;
    font-size: 11px;
    margin-top: 2px;
}

.review-time {
    font-size: 11px;
    color: var(--text-muted);
}

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* Main Footer */
.main-footer {
    background: rgba(11, 14, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 20px 110px; /* Extra padding bsh maystrsh 3lih l-floating dock */
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: #0b0e14;
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}


/* Live Counter Widget */
.live-counter-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 26, 38, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 15px 0;
}

.live-counter-widget i {
    color: var(--accent-cyan);
    font-size: 14px;
}

#online-count {
    color: var(--accent-cyan);
    font-weight: 800;
}

.counter-label {
    color: var(--text-muted);
}

/* Green Pulsing Dot Animation */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Modern Conversion Toast */
.conversion-toast {
    position: fixed;
    bottom: 95px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 15px rgba(0, 240, 255, 0.15);
    padding: 12px 18px;
    border-radius: 16px;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.conversion-toast.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Avatar Styling */
.toast-avatar-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.toast-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--accent-cyan);
}

.toast-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #00ff88;
    color: #0b0e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
}

/* Details & Text */
.toast-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-username {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}

.toast-time {
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 10px;
}

.toast-action {
    font-size: 12px;
    color: var(--text-muted);
}

.toast-action strong {
    color: var(--accent-cyan);
    font-weight: 800;
}

/* Progress Bar Timer */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), #00ff88);
    transform-origin: left;
    transform: scaleX(0);
}

.conversion-toast.active .toast-progress {
    animation: toastProgress 4.5s linear forwards;
}

@keyframes toastProgress {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}


/* Responsive Dock Navigation for Mobile Screens */
@media (max-width: 768px) {
    .floating-dock {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        padding: 8px 12px;
        justify-content: space-around;
        gap: 6px;
        border-radius: 20px;
        background: rgba(11, 14, 20, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(0, 240, 255, 0.2);
        z-index: 9999;
    }

    .dock-item {
        flex-direction: column; /* Displays icon on top, text below */
        justify-content: center;
        gap: 4px;
        padding: 6px 10px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 12px;
        width: 100%;
        text-align: center;
    }

    .dock-item i {
        font-size: 18px;
    }

    .dock-item img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .dock-item.active, 
    .dock-item:hover {
        transform: translateY(-2px); /* Subtle lift on mobile touch */
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Modal Overlay */
.fg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fg-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Main Card Container */
.fg-modal-card {
    position: relative;
    width: 92%;
    max-width: 440px;
    background: #0d131f;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px;
    padding: 30px 24px 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.08);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.fg-modal-overlay.open .fg-modal-card {
    transform: scale(1);
}

.fg-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}
.fg-close:hover { color: #fff; }

.fg-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.fg-subtitle {
    color: #00d4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

/* Steps Display Control */
.fg-step { display: none; }
.fg-step.active { display: block; }

/* Circle Icons */
.fg-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #00d4ff;
    font-size: 26px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.fg-icon-circle.check {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
}

.fg-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.fg-desc {
    color: #8b9bb4;
    font-size: 12px;
    margin-bottom: 24px;
}

/* Input Fields */
.fg-input-group {
    text-align: left;
    margin-bottom: 18px;
}

.fg-input-group label {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.fg-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.fg-input-box i {
    position: absolute;
    left: 14px;
    color: #475569;
    font-size: 14px;
}

.fg-input-box input {
    width: 100%;
    background: #141c2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px 12px 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}

.fg-input-box input:focus {
    border-color: #00d4ff;
}

/* Platform Selectors */
.fg-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fg-plat-btn {
    background: #141c2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 8px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.fg-plat-btn i { font-size: 22px; }
.fg-plat-btn span { font-size: 11px; font-weight: 700; }

.fg-plat-btn.active, .fg-plat-btn:hover {
    background: #14243b;
    border-color: #00d4ff;
    color: #fff;
    box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.2);
}

/* Action Button */
.fg-btn-primary {
    width: 100%;
    background: #00d4ff;
    color: #080d1a;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    transition: background 0.2s, transform 0.1s;
}

.fg-btn-primary:hover {
    background: #33ddff;
    transform: translateY(-1px);
}

/* Loader Step */
.fg-loader-container {
    margin: 30px 0;
}

.fg-spinner {
    width: 54px;
    height: 54px;
    border: 3px solid rgba(0, 212, 255, 0.15);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: fgSpin 0.9s linear infinite;
}

@keyframes fgSpin { 100% { transform: rotate(360deg); } }

.fg-loader-text {
    color: #00d4ff;
    font-size: 13px;
    font-weight: 700;
}

.fg-info-box {
    background: #141c2e;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin-bottom: 10px;
}

.fg-info-box i { color: #00d4ff; font-size: 18px; }
.fg-info-box strong { display: block; color: #fff; font-size: 11px; }
.fg-info-box span { color: #64748b; font-size: 10px; }

/* Step 3 Details */
.fg-user-summary {
    background: #141c2e;
    border-radius: 10px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
    margin-bottom: 14px;
}

.fg-sum-label { color: #64748b; font-size: 9px; font-weight: 800; display: block; margin-bottom: 4px; }
.fg-sum-val { color: #fff; font-size: 13px; font-weight: 800; }
.fg-sum-val.cyan { color: #00d4ff; }

.fg-items-box {
    background: #141c2e;
    border-radius: 10px;
    padding: 12px;
    text-align: left;
    margin-bottom: 16px;
}

.fg-items-title { color: #64748b; font-size: 9px; font-weight: 800; display: block; margin-bottom: 10px; }

.fg-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fg-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d131f;
    padding: 8px 10px;
    border-radius: 8px;
}

.fg-item-left { display: flex; align-items: center; gap: 10px; }
.fg-item-left img { width: 32px; height: 32px; object-fit: contain; }
.fg-item-left span { color: #fff; font-size: 12px; font-weight: 700; }
.fg-item-qty { color: #00d4ff; font-size: 11px; font-weight: 800; }

.fg-footer-note {
    display: block;
    color: #475569;
    font-size: 9px;
    font-weight: 800;
    margin-top: 14px;
    letter-spacing: 0.5px;
}

/* Dots Progress Bar */
.fg-dots-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.fg-dots-indicator .dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #141c2e;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fg-dots-indicator .dot.active {
    background: #00d4ff;
    color: #080d1a;
}

.fg-dots-indicator .line {
    width: 20px;
    height: 2px;
    background: #141c2e;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Modal Overlay */
.fg-offers-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 14, 0.92);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fg-offers-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Card */
.fg-offers-card {
    position: relative;
    width: 92%;
    max-width: 520px;
    background: #080f1a;
    border: 1.5px solid #00d4ff;
    border-radius: 20px;
    padding: 36px 30px 24px;
    text-align: center;
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.25), inset 0 0 20px rgba(0, 212, 255, 0.05);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.fg-offers-overlay.open .fg-offers-card {
    transform: scale(1);
}

.fg-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
}
.fg-close-btn:hover { color: #fff; }

/* Header */
.fg-offers-header {
    margin-bottom: 24px;
}

.fg-lock-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #00d4ff;
    font-size: 24px;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.fg-offers-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.fg-offers-header .cyan {
    color: #00d4ff;
}

.fg-offers-header p {
    color: #8b9bb4;
    font-size: 13px;
    font-weight: 500;
}

/* Offers Cards */
.fg-offers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fg-offer-card {
    display: flex;
    align-items: center;
    background: #0d1726;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fg-offer-card:hover {
    border-color: #00d4ff;
    background: #111e33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.12);
}

.fg-offer-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 20px;
    flex-shrink: 0;
}

.fg-offer-details {
    text-align: left;
    flex-grow: 1;
    margin: 0 16px;
}

.fg-offer-details h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 3px;
}

.fg-offer-details p {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.fg-offer-btn {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-size: 12px;
    font-weight: 800;
}

/* Divider & Shield */
.fg-divider {
    position: relative;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 28px 0 20px;
}

.fg-shield-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #080f1a;
    border: 1px solid #00d4ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 11px;
}

/* Trust Grid */
.fg-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: left;
    margin-bottom: 24px;
}

.fg-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fg-trust-item i {
    color: #00d4ff;
    font-size: 16px;
    margin-top: 2px;
}

.fg-trust-item strong {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.fg-trust-item span {
    color: #64748b;
    font-size: 9px;
    font-weight: 600;
}

/* Footer Status */
.fg-offers-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8b9bb4;
    font-size: 12px;
    font-weight: 600;
}

.fg-offers-footer i {
    color: #00d4ff;
    font-size: 14px;
}

.fg-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 14px;
    padding: 8px 20px;
    margin-bottom: 16px;

}

.fg-text-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.fg-text-logo .cyan-letter {
    color: #00d4ff;
    text-shadow: 0 0 15px #00d4ff;
}
/* ==========================================
   OFFER CARD & IMAGE FIX
   ========================================== */

/* 1. L-Container dyal Icon/Image */
.fg-offer-icon {
    width: 48px;
    height: 48px;
    min-width: 48px; /* Ma-y-tsgharch ila kan text twil */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Kiy-mna3 ay 7aja t-khroj 3la l-box */
    position: relative;
}

/* 2. Style dyal L-Image nfs'ha */
.fg-offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kat-mle-i l-box b-shakl m9ad بلا distortion */
    border-radius: 8px;
    display: block;
}

/* 3. Style dyal Icon (Ila ma-kantch image) */
.fg-offer-icon i {
    font-size: 20px;
    color: #00d4ff;
}

/* 4. T-Akkad an l-Card l-kbir fih display flex w alignment m9ad */
.fg-offer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%; /* Ma-y-khrojch 3la l-modal container */
}


/* ==========================================
   MOBILE RESPONSIVE FIX FOR OFFERS MODAL
   ========================================== */

@media (max-width: 600px) {
    /* 1. Modal Card Sizing & Padding */
    .fg-offers-card {
        width: 95%;
        padding: 24px 16px 20px; /* Sghrna l-padding باش t-zad l-massa7a l-l-content */
        border-radius: 16px;
    }

    /* 2. Header & Icons */
    .fg-lock-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .fg-offers-header h2 {
        font-size: 17px;
    }

    .fg-offers-header p {
        font-size: 12px;
    }

    /* 3. Offer Card Alignment & Spacing */
    .fg-offer-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .fg-offer-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .fg-offer-details {
        margin: 0; /* Zwelna l-margin l-kbir باش y-b9a blasa l-text */
    }

    .fg-offer-details h4 {
        font-size: 13px;
        line-height: 1.2;
    }

    .fg-offer-details p {
        font-size: 11px;
    }

    .fg-offer-btn {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap; /* Kat-mna3 l-button y-t'3waj f 2 lines */
    }

     /* Trust Grid - Single Line Layout */
.fg-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    text-align: left;
    margin-bottom: 24px;
    width: 100%;
}

.fg-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0; /* Kat-mna3 l-text y-khroj 3la l-box */
}

.fg-trust-item i {
    color: #00d4ff;
    font-size: 14px;
    flex-shrink: 0; /* Kat-7mi l-icon باش ما t-tsgharch */
}

.fg-trust-item div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fg-trust-item strong {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Kat-zid "..." ila kan text twil f-mobile sghir */
}

.fg-trust-item span {
    color: #64748b;
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Adjustments for Trust Grid */
@media (max-width: 480px) {
    .fg-trust-grid {
        gap: 4px;
    }
    
    .fg-trust-item i {
        font-size: 12px;
    }
    
    .fg-trust-item strong {
        font-size: 9px;
    }
    
    .fg-trust-item span {
        font-size: 7.5px;
    }
}
}