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

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

:root {
    --bnb-yellow: #F0B90B; --bnb-yellow-light: #FCD535; --bnb-yellow-dark: #D4A30A;
    --bnb-yellow-rgb: 240, 185, 11; --bnb-dark: #0B0E11; --bnb-dark-2: #1E2329;
    --bnb-dark-3: #2B3139; --bnb-card-bg: #181A20; --success: #02C076;
    --success-light: #2ECB8E; --warning: #F0B90B; --danger: #F6465D;
    --text-primary: #EAECEF; --text-secondary: #848E9C; --text-tertiary: #5E6673;
    --border-color: #2B3139; --glow-yellow: 0 0 30px rgba(240, 185, 11, 0.15);
}

body {
    font-family: 'Inter', sans-serif; background-color: var(--bnb-dark);
    color: var(--text-primary); line-height: 1.6; min-height: 100vh;
    position: relative; overflow-x: hidden !important; -webkit-font-smoothing: antialiased;
    width: 100%; max-width: 100vw;
}

/* Background */
.bnb-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; max-width: 100vw; }
.bnb-grid {
    position: absolute; width: 100%; height: 100%; max-width: 100vw;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(240,185,11,0.02) 49px, rgba(240,185,11,0.02) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(240,185,11,0.02) 49px, rgba(240,185,11,0.02) 50px);
}
.bnb-glow {
    position: absolute; width: 900px; height: 900px; max-width: 100vw;
    background: radial-gradient(circle, rgba(var(--bnb-yellow-rgb),0.08) 0%, transparent 70%);
    top: -250px; right: -250px; animation: slowFloat 25s infinite ease-in-out;
}
.bnb-glow-2 {
    position: absolute; width: 700px; height: 700px; max-width: 100vw;
    background: radial-gradient(circle, rgba(2,192,118,0.04) 0%, transparent 70%);
    bottom: -200px; left: -200px; animation: slowFloat 30s infinite ease-in-out reverse;
}
@keyframes slowFloat {
    0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; }
    33% { transform: translate(40px,-40px) scale(1.05); opacity: 0.8; }
    66% { transform: translate(-30px,30px) scale(0.95); opacity: 0.5; }
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes tickerSlide { 0%,20% { transform: translateY(0); opacity: 1; } 25%,45% { transform: translateY(-20px); opacity: 1; } 50%,70% { transform: translateY(-40px); opacity: 1; } 75%,95% { transform: translateY(-60px); opacity: 1; } 100% { transform: translateY(-80px); opacity: 0; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* Network Bar */
.network-bar { background: rgba(11,14,17,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 8px 0; font-size: 0.75rem; position: sticky; top: 0; z-index: 100; width: 100%; max-width: 100vw; }
.network-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; width: 100%; }
.network-left, .network-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.network-stat { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); }
.network-stat i { color: var(--bnb-yellow); font-size: 0.7rem; }
.network-stat .value { color: var(--text-primary); font-weight: 600; font-family: 'Space Grotesk', monospace; }
.network-stat .change-positive { color: var(--success); font-size: 0.65rem; margin-left: 3px; }
.network-stat .change-negative { color: var(--danger); font-size: 0.65rem; margin-left: 3px; }
.chain-badge { background: rgba(var(--bnb-yellow-rgb),0.1); border: 1px solid rgba(var(--bnb-yellow-rgb),0.2); color: var(--bnb-yellow); padding: 4px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 600; display: flex; align-items: center; gap: 5px; white-space: nowrap; }

/* Main Container */
.main-container { max-width: 1180px; margin: 0 auto; padding: 25px 20px; width: 100%; overflow-x: hidden; }

/* Header */
.bnb-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding: 10px 0; flex-wrap: wrap; gap: 15px; width: 100%; }
.logo-area { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bnb-logo { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: var(--glow-yellow); overflow: hidden; flex-shrink: 0; }
.bnb-logo img { width: 100%; height: 100%; object-fit: cover; }
.bnb-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--text-primary); letter-spacing: -0.5px; }
.bnb-logo-text span { color: var(--bnb-yellow); }
.verified-pill { background: rgba(2,192,118,0.1); border: 1px solid rgba(2,192,118,0.3); color: var(--success); padding: 4px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 600; display: flex; align-items: center; gap: 4px; white-space: nowrap; }

/* Hero */
.hero-section { margin-bottom: 40px; width: 100%; }
.hero-badge { display: inline-block; background: linear-gradient(135deg, rgba(var(--bnb-yellow-rgb),0.1), rgba(var(--bnb-yellow-rgb),0.05)); border: 1px solid rgba(var(--bnb-yellow-rgb),0.15); color: var(--bnb-yellow); padding: 6px 16px; border-radius: 30px; font-size: 0.75rem; font-weight: 600; margin-bottom: 18px; backdrop-filter: blur(5px); }
h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.15; letter-spacing: -1px; word-break: break-word; }
.bnb-highlight { background: linear-gradient(135deg, var(--bnb-yellow) 0%, #FFD700 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 600px; }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 50px; width: 100%; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } .network-left, .network-right { justify-content: center; width: 100%; } }

/* Cards */
.claim-card, .info-card { background: var(--bnb-card-bg); border-radius: 16px; padding: 30px 28px; border: 1px solid var(--border-color); box-shadow: 0 8px 24px rgba(0,0,0,0.3); width: 100%; overflow: hidden; }
.info-card { backdrop-filter: blur(10px); }
.card-header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 15px; }
.card-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.card-header p { color: var(--text-secondary); font-size: 0.8rem; }
.contract-badge { background: rgba(11,14,17,0.8); border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 10px; display: flex; align-items: center; gap: 8px; font-size: 0.7rem; flex-wrap: wrap; }
.contract-badge code { color: var(--bnb-yellow); font-family: 'Space Grotesk', monospace; font-size: 0.7rem; }

/* Token Card */
.bnb-token-card { background: linear-gradient(135deg, #1A1F26 0%, #0F1217 100%); border: 1px solid var(--border-color); border-radius: 12px; padding: 35px 25px; text-align: center; margin-bottom: 24px; position: relative; overflow: hidden; width: 100%; }
.bnb-icon-large { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 1; box-shadow: var(--glow-yellow); overflow: hidden; }
.bnb-icon-large img { width: 100%; height: 100%; object-fit: cover; }
.token-label { font-size: 0.75rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; position: relative; z-index: 1; }
.token-amount-wrapper { position: relative; z-index: 1; }
.token-amount { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 8vw, 3.2rem); font-weight: 700; background: linear-gradient(135deg, var(--bnb-yellow) 0%, #FFD700 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 5px; }
.token-symbol { font-size: 1.3rem; color: var(--text-secondary); margin-left: 5px; -webkit-text-fill-color: var(--text-secondary); }
.token-value { margin-top: 12px; font-size: 0.95rem; color: var(--text-secondary); background: rgba(var(--bnb-yellow-rgb),0.06); display: inline-block; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(var(--bnb-yellow-rgb),0.1); position: relative; z-index: 1; }
.price-source { font-size: 0.65rem; color: var(--text-tertiary); margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* Live Ticker */
.live-ticker { background: rgba(11,14,17,0.6); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px 15px; margin-bottom: 24px; width: 100%; overflow: hidden; }
.ticker-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ticker-header i { color: var(--success); font-size: 0.6rem; animation: pulse 1.5s infinite; }
.ticker-header span { font-size: 0.7rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1px; }
.ticker-content { font-family: 'Space Grotesk', monospace; font-size: 0.75rem; color: var(--text-secondary); overflow: hidden; height: 20px; position: relative; width: 100%; }
.ticker-item { position: absolute; width: 100%; animation: tickerSlide 8s infinite; white-space: nowrap; }
.ticker-item code { color: var(--bnb-yellow); background: rgba(var(--bnb-yellow-rgb),0.1); padding: 2px 6px; border-radius: 4px; margin: 0 4px; }

/* Progress */
.bnb-progress-section { background: rgba(11,14,17,0.4); border-radius: 12px; padding: 20px; margin-bottom: 24px; border: 1px solid var(--border-color); width: 100%; }
.progress-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.progress-label { font-weight: 500; color: var(--text-primary); font-size: 0.85rem; }
.progress-percent { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--bnb-yellow); font-size: 1.3rem; }
.progress-bar-bg { height: 6px; background: var(--bnb-dark-2); border-radius: 3px; overflow: hidden; margin-bottom: 10px; width: 100%; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--bnb-yellow), #FFD700); width: 0; border-radius: 3px; position: relative; box-shadow: 0 0 10px rgba(var(--bnb-yellow-rgb),0.5); }
.progress-stats-row { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-tertiary); }

/* Countdown */
.bnb-countdown { background: linear-gradient(135deg, #1A1F26 0%, #0F1217 100%); border: 1px solid var(--border-color); border-radius: 12px; padding: 22px 20px; margin-bottom: 24px; width: 100%; }
.countdown-title { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.countdown-title i { color: var(--bnb-yellow); font-size: 1rem; }
.countdown-title h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; }
.block-info { font-size: 0.7rem; color: var(--text-tertiary); margin-left: auto; }
.countdown-display { display: flex; justify-content: space-around; gap: 5px; flex-wrap: wrap; }
.countdown-block { text-align: center; flex: 1; min-width: 60px; }
.countdown-number { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 5vw, 1.8rem); font-weight: 700; color: var(--bnb-yellow); line-height: 1; margin-bottom: 4px; }
.countdown-unit { font-size: 0.6rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1px; }

/* Button */
.bnb-claim-button { width: 100%; background: var(--bnb-yellow); color: var(--bnb-dark); border: none; padding: 18px; font-size: 1rem; font-weight: 700; border-radius: 8px; cursor: pointer; transition: all 0.2s ease; display: flex; justify-content: center; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.3px; position: relative; overflow: hidden; }
.bnb-claim-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.bnb-claim-button:hover::before { left: 100%; }
.bnb-claim-button:hover { background: var(--bnb-yellow-light); transform: translateY(-1px); box-shadow: 0 10px 25px rgba(var(--bnb-yellow-rgb),0.3); }
.bnb-claim-button:disabled { opacity: 0.7; cursor: not-allowed; }
.wallet-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; flex-wrap: wrap; }
.wallet-icon { width: 36px; height: 36px; background: var(--bnb-dark-2); border: 1px solid var(--border-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); font-size: 1.1rem; transition: all 0.2s; }
.wallet-icon:hover { border-color: var(--bnb-yellow); color: var(--bnb-yellow); }
.claim-button-container { position: relative; width: 100%; }
#wallet-select { width: 100%; margin-bottom: 12px; padding: 12px 16px; background: #1E2329; border: 1px solid #2B3139; border-radius: 8px; color: #EAECEF; font-size: 0.95rem; cursor: pointer; }
#wallet-select option { background: #1E2329; color: #EAECEF; }

/* Steps */
.bnb-steps { margin-bottom: 30px; width: 100%; }
.bnb-step { display: flex; gap: 15px; margin-bottom: 24px; position: relative; width: 100%; }
.bnb-step:not(:last-child)::after { content: ''; position: absolute; left: 23px; top: 50px; width: 2px; height: calc(100% + 2px); background: var(--border-color); }
.bnb-step.completed:not(:last-child)::after { background: var(--success); }
.step-indicator { width: 48px; height: 48px; background: var(--bnb-dark-2); border: 1.5px solid var(--border-color); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); font-size: 1rem; flex-shrink: 0; position: relative; z-index: 2; transition: all 0.2s ease; }
.bnb-step.completed .step-indicator { background: var(--success); border-color: var(--success); color: white; }
.bnb-step.active .step-indicator { background: rgba(var(--bnb-yellow-rgb),0.1); border-color: var(--bnb-yellow); color: var(--bnb-yellow); box-shadow: var(--glow-yellow); }
.step-info { flex: 1; min-width: 0; }
.step-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.step-info p { font-size: 0.8rem; color: var(--text-secondary); word-break: break-word; }

/* Audit */
.audit-section { margin-bottom: 28px; width: 100%; }
.audit-section h4 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.audit-logos { display: flex; gap: 15px; flex-wrap: wrap; }
.audit-logo { background: rgba(11,14,17,0.6); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; transition: all 0.2s; cursor: pointer; flex: 1; min-width: 140px; }
.audit-logo:hover { border-color: var(--bnb-yellow); background: rgba(var(--bnb-yellow-rgb),0.03); }
.audit-logo i { color: var(--success); font-size: 1.2rem; }
.audit-logo span { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.audit-logo small { font-size: 0.65rem; color: var(--text-tertiary); display: block; }

/* Section Tabs */
.section-tabs { display: flex; gap: 5px; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; flex-wrap: wrap; width: 100%; }
.section-tab { padding: 10px 20px; background: transparent; border: none; color: var(--text-tertiary); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; border-radius: 8px; transition: all 0.2s ease; display: flex; align-items: center; gap: 8px; }
.section-tab i { font-size: 0.9rem; }
.section-tab:hover { color: var(--bnb-yellow); background: rgba(var(--bnb-yellow-rgb),0.05); }
.section-tab.active { color: var(--bnb-yellow); background: rgba(var(--bnb-yellow-rgb),0.1); border: 1px solid rgba(var(--bnb-yellow-rgb),0.2); }
.tokenomics-section, .roadmap-section, .faq-section { margin-bottom: 50px; display: none; width: 100%; }
.tokenomics-section.active, .roadmap-section.active, .faq-section.active { display: block; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 4vw, 1.8rem); font-weight: 700; color: #fff; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.section-title i { color: var(--bnb-yellow); font-size: clamp(1.5rem, 4vw, 1.8rem); }

/* Tokenomics */
.tokenomics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; }
@media (max-width: 768px) { .tokenomics-grid { grid-template-columns: 1fr; } }
.tokenomics-card { background: var(--bnb-card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 25px; width: 100%; }
.tokenomics-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; color: var(--bnb-yellow); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.token-supply-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.token-supply-item:last-child { border-bottom: none; }
.supply-label { color: var(--text-secondary); font-size: 0.9rem; }
.supply-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--text-primary); }
.allocation-item { margin-bottom: 15px; }
.allocation-header { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.allocation-name { color: var(--text-secondary); }
.allocation-percent { color: var(--bnb-yellow); font-weight: 600; }
.allocation-bar-bg { height: 8px; background: var(--bnb-dark-2); border-radius: 4px; overflow: hidden; width: 100%; }
.allocation-bar-fill { height: 100%; border-radius: 4px; }
.fill-airdrop { background: linear-gradient(90deg, var(--bnb-yellow), #FFD700); width: 25%; }
.fill-ecosystem { background: linear-gradient(90deg, var(--success), var(--success-light)); width: 30%; }
.fill-liquidity { background: linear-gradient(90deg, #3B82F6, #60A5FA); width: 20%; }
.fill-team { background: linear-gradient(90deg, #8B5CF6, #A78BFA); width: 15%; }
.fill-treasury { background: linear-gradient(90deg, #EC4899, #F472B6); width: 10%; }
.vesting-schedule { margin-top: 20px; padding: 15px; background: rgba(11,14,17,0.4); border-radius: 8px; border: 1px solid var(--border-color); width: 100%; }
.vesting-schedule h4 { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 12px; }
.vesting-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.85rem; }
.vesting-item i { color: var(--success); font-size: 0.8rem; }

/* Roadmap */
.roadmap-timeline { position: relative; padding-left: 30px; width: 100%; }
.roadmap-timeline::before { content: ''; position: absolute; left: 15px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(to bottom, var(--bnb-yellow), var(--success), var(--bnb-yellow)); }
.roadmap-phase { position: relative; margin-bottom: 35px; width: 100%; }
.phase-marker { position: absolute; left: -30px; top: 5px; width: 32px; height: 32px; background: var(--bnb-dark-2); border: 2px solid var(--bnb-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bnb-yellow); font-weight: 700; font-family: 'Space Grotesk', sans-serif; z-index: 2; }
.phase-marker.completed { background: var(--success); border-color: var(--success); color: white; }
.phase-marker.active { background: var(--bnb-yellow); border-color: var(--bnb-yellow); color: var(--bnb-dark); box-shadow: var(--glow-yellow); animation: pulse 2s infinite; }
.phase-content { background: var(--bnb-card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px 25px; margin-left: 15px; width: calc(100% - 15px); }
.phase-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.phase-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.phase-date { background: rgba(var(--bnb-yellow-rgb),0.1); color: var(--bnb-yellow); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(var(--bnb-yellow-rgb),0.2); white-space: nowrap; }
.phase-date.completed { background: rgba(2,192,118,0.1); color: var(--success); border-color: rgba(2,192,118,0.2); }
.phase-features { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 600px) { .phase-features { grid-template-columns: 1fr; } }
.phase-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); word-break: break-word; }
.phase-features li i { color: var(--success); font-size: 0.8rem; flex-shrink: 0; }
.phase-features li i.fa-clock { color: var(--bnb-yellow); }

/* FAQ */
.faq-grid { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.faq-item { background: var(--bnb-card-bg); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: all 0.2s ease; width: 100%; }
.faq-item:hover { border-color: rgba(var(--bnb-yellow-rgb),0.3); }
.faq-question { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s ease; }
.faq-question:hover { background: rgba(var(--bnb-yellow-rgb),0.03); }
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 12px; }
.faq-question h4 i { color: var(--bnb-yellow); font-size: 1rem; flex-shrink: 0; }
.faq-question .faq-toggle { color: var(--text-tertiary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question .faq-toggle { transform: rotate(180deg); color: var(--bnb-yellow); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; border-top: 0px solid transparent; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 22px 22px 22px; border-top: 1px solid var(--border-color); }

/* Trust Stats */
.trust-footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border-color); width: 100%; }
@media (max-width: 600px) { .trust-footer { grid-template-columns: 1fr; } }
.trust-stat { text-align: center; }
.trust-stat-icon { width: 50px; height: 50px; background: var(--bnb-dark-2); border: 1px solid var(--border-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; color: var(--bnb-yellow); font-size: 1.3rem; transition: all 0.2s; }
.trust-stat:hover .trust-stat-icon { border-color: var(--bnb-yellow); transform: scale(1.05); box-shadow: var(--glow-yellow); }
.trust-stat h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; background: linear-gradient(135deg, var(--bnb-yellow), #FFD700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 5px; }
.trust-stat p { font-size: 0.75rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
.bnb-footer { text-align: center; padding: 30px 20px; margin-top: 40px; border-top: 1px solid var(--border-color); width: 100%; }
.footer-copyright { color: var(--text-tertiary); font-size: 0.75rem; margin-bottom: 15px; }
.footer-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.75rem; transition: color 0.2s; display: flex; align-items: center; gap: 5px; }
.footer-links a:hover { color: var(--bnb-yellow); }

/* Success Message */
.bnb-success-message { background: linear-gradient(135deg, #0B2E1F 0%, #0A2418 100%); border: 1px solid var(--success); border-radius: 12px; padding: 25px; margin-top: 20px; text-align: center; display: none; animation: slideUp 0.4s ease-out; width: 100%; }

/* Utility */
.counter-value { display: inline-block; }
div, section, header, footer, main, article, aside, nav { max-width: 100%; }
img, video, canvas, svg { max-width: 100%; height: auto; }
