:root { --dark: #0B0B0B; --purple: #7A3FF2; --cyan: #00C2FF; --red: #FF2A2A; --border: rgba(255,255,255,0.08); --font-main: 'Sora', sans-serif; --font-display: 'Bebas Neue', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); color: #fff; font-family: var(--font-main); line-height: 1.6; overflow-x: hidden; width: 100%; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .title-display { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; line-height: 1; letter-spacing: -0.5px; }
h5, h6 { font-family: var(--font-main); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
p { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: #ccc; font-family: var(--font-main); }

img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; }
.text-gradient { background: linear-gradient(135deg, var(--cyan), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 20px rgba(0,194,255,0.3)); }

/* Símbolos Decorativos Animados */
.bg-symbols { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -3; overflow: hidden; }
.symbol { position: absolute; color: rgba(255,255,255,0.03); font-size: 80px; font-weight: 800; bottom: -120px; animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; } }

section { padding: clamp(60px, 10vw, 140px) 0; position: relative; }
.gs-up, .gs-left, .gs-right { opacity: 0; } /* Prepared for GSAP */

.nav-btn { background: var(--cyan); color: var(--dark); font-weight: 800; font-size: 14px; padding: 12px 28px; border-radius: 100px; text-decoration: none; transition: 0.3s; box-shadow: 0 0 20px rgba(0,194,255,0.4); white-space: nowrap; cursor: pointer; border: none; font-family: var(--font-main); }
.nav-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,194,255,0.8); }

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: shine 3s infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 140px; padding-bottom: 120px; }
.hero-bg { position: absolute; top:0; left:0; width: 100%; height: 100%; z-index: -2; background: linear-gradient(-45deg, #0B0B0B, rgba(122,63,242,0.2), rgba(0,194,255,0.1), #0B0B0B); background-size: 400% 400%; animation: gradBG 15s ease infinite; }
@keyframes gradBG { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.hero-glow { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(122,63,242,0.25) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; filter: blur(50px); animation: pulse 6s ease-in-out infinite alternate; }
@keyframes pulse { 0%{transform: translate(-50%, -50%) scale(1); opacity: 0.8;} 100%{transform: translate(-50%, -50%) scale(1.1); opacity: 1;} }

.hero-content { position: relative; z-index: 10; text-align: center; width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { font-size: clamp(60px, 12vw, 160px); letter-spacing: -2px; margin-bottom: 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero p { font-size: clamp(16px, 2.5vw, 24px); color: #ccc; max-width: 800px; margin: 0 auto; line-height: 1.5; }

/* Integrated Stats Bar */
.hero-stats-glass {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    display: flex; gap: 60px; background: rgba(20,20,20,0.5); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-bottom: none;
    border-radius: 40px 40px 0 0; padding: 40px 80px; width: 100%; max-width: 1100px;
    justify-content: center; z-index: 20; box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
.stat-item { display: flex; align-items: center; gap: 20px; }
.stat-item i { font-size: 50px; filter: drop-shadow(0 0 15px rgba(0,194,255,0.5)); }
.stat-item h4 { font-size: clamp(32px, 4vw, 48px); font-family: var(--font-display); letter-spacing: 1px; color:#fff; line-height: 1; margin-bottom: 4px; }
.stat-item p { font-size: 14px; color: #aaa; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; line-height: 1.3; }

.gold-section { padding: 140px 0 120px; text-align: center; position: relative; }
.gold-title { font-size: clamp(50px, 9vw, 110px); color: var(--red); margin-bottom: 40px; text-shadow: 0 0 30px rgba(255,42,42,0.4); }
.gold-subtitle { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 20px; }
.gold-p { font-size: clamp(16px, 2vw, 20px); color: #aaa; max-width: 800px; margin: 0 auto; line-height: 1.6; }
.cash-daily { background: rgba(0,194,255,0.1); border: 1px solid var(--cyan); padding: 15px 25px; border-radius: 10px; display: inline-block; margin-top: 30px; font-size: 18px; font-weight: 800; color: #fff; box-shadow: 0 0 20px rgba(0,194,255,0.2); }

.app-section { padding: 100px 0; background: rgba(122,63,242,0.05); border-top: 1px solid rgba(122,63,242,0.2); overflow: hidden; position: relative; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-text h2 { font-size: clamp(40px, 8vw, 100px); margin-bottom: 24px; text-shadow: 0 0 20px rgba(122,63,242,0.5); }
.app-text p { font-size: clamp(16px, 2vw, 20px); color: #ccc; margin-bottom: 30px; line-height: 1.6; }
.app-badge { display: inline-block; background: var(--cyan); color: #000; font-weight: 800; padding: 8px 16px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 0 20px rgba(0,194,255,0.3); }
.app-img-container { position: relative; display: flex; justify-content: center; }
.app-img { border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); border: 2px solid rgba(255,255,255,0.1); transform: rotate(-5deg); transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); width: 85%; max-width: 350px; z-index: 2; }
.app-img2 { position: absolute; z-index: 1; opacity: 0.8; transform: rotate(10deg) translate(20%, 10%); }
.app-img-container:hover .app-img { transform: rotate(0deg) translateY(-10px); }
.app-glow { position: absolute; width: 80%; height: 100%; background: var(--cyan); filter: blur(80px); opacity: 0.2; top:0; left:50%; transform: translateX(-50%); z-index:0; }

.marquee-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: #000; position: relative; }
.marquee-track { display: flex; width: max-content; }
.marquee-title { font-size: clamp(40px, 7vw, 120px); padding-right: 50px; line-height: 1; color: transparent; -webkit-text-stroke: 2px #444; }
.marquee-title.stroke-cyan { -webkit-text-stroke: 2px var(--cyan); }
.marquee-title.stroke-purple { -webkit-text-stroke: 2px var(--purple); }

.creators-section { padding: 120px 0; overflow: hidden; position: relative; background: var(--dark); }
.creators-header { text-align: center; margin-bottom: 42px; }
.creators-section-title { font-size: clamp(42px, 8vw, 110px); margin: 0; line-height: 0.9; }

.creators-slider-shell { position: relative; max-width: 1320px; margin: 0 auto; }
.creators-carousel { overflow: hidden; padding: 16px 0 8px; }
.creators-track { display: flex; gap: 28px; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }

.creator-card { 
    position: relative; 
    width: calc((100% - 56px) / 3); 
    flex: 0 0 calc((100% - 56px) / 3);
    aspect-ratio: 0.72;
    border-radius: 24px; 
    background-size: cover; 
    background-position: top center; 
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 48px rgba(0,0,0,0.45);
    background-color: #151515;
    overflow: hidden;
}
.creator-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.58), 0 0 28px rgba(0,194,255,0.16); border-color: rgba(0,194,255,0.7); }

.creator-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.9)); z-index: 1; }
.creator-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; z-index: 2; }
.creator-name { font-size: 28px; color: #fff; margin-bottom: 4px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.creator-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 6px; text-decoration: none; color: #fff; transition: 0.3s; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.3); }

/* Elite Card Style for Briyith */
.creator-card-elite { border-color: rgba(0,194,255,0.65); box-shadow: 0 20px 54px rgba(0,0,0,0.5), 0 0 28px rgba(0,194,255,0.16); }
.creator-card-elite::after { content: 'TOP CREATOR'; position: absolute; top: 20px; right: -30px; background: var(--cyan); color: #000; font-size: 11px; font-weight: 900; padding: 5px 40px; transform: rotate(45deg); z-index: 10; font-family: var(--font-main); box-shadow: 0 0 15px rgba(0,194,255,0.6); }
.creator-card-elite .creator-diamonds { background: #fff; color: #000; box-shadow: 0 0 20px #fff; animation: pulse-diamond 2s infinite; }
@keyframes pulse-diamond { 0% { transform: scale(1); box-shadow: 0 0 10px #fff; } 50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255,255,255,0.8); } 100% { transform: scale(1); box-shadow: 0 0 10px #fff; } }

.creators-nav { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.creators-arrow { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease; }
.creators-arrow:hover { transform: translateY(-2px); border-color: var(--cyan); background: rgba(0,194,255,0.12); }
.creators-arrow i { font-size: 24px; }

/* Equation Section */
.equation-section { padding: 100px 0; text-align: center; position: relative; }
.equation-row { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 50px); flex-wrap: wrap; margin-bottom: 50px; }
.eq-block { text-align: center; }
.eq-block .eq-icon { font-size: clamp(50px, 8vw, 80px); margin-bottom: 10px; }
.eq-block p { font-size: clamp(14px, 2vw, 18px); color: #aaa; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.eq-sign { font-size: clamp(40px, 6vw, 70px); color: #555; font-weight: 800; }
.eq-results { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.eq-result { text-align: center; padding: 20px; }
.eq-result i { font-size: 50px; margin-bottom: 10px; display: block; }
.eq-result p { font-size: 16px; font-weight: 800; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }

/* Low Followers Section */
.low-followers { padding: 120px 0; border-top: 1px solid var(--border); background: rgba(0,194,255,0.03); position: relative; overflow: hidden; }
.lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lf-text h2 { font-size: clamp(36px, 7vw, 80px); margin-bottom: 24px; }
.lf-text p { font-size: clamp(16px, 2vw, 20px); color: #ccc; line-height: 1.7; margin-bottom: 20px; }
.lf-highlight { background: rgba(122,63,242,0.15); border: 1px solid var(--purple); border-radius: 16px; padding: 20px 24px; margin-top: 20px; }
.lf-highlight p { color: #fff; font-weight: 700; margin: 0; }
.lf-stats-col { display: flex; flex-direction: column; gap: 20px; }
.lf-stat { background: rgba(26,26,26,0.6); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; align-items: center; gap: 20px; transition: 0.3s; }
.lf-stat:hover { border-color: var(--cyan); transform: translateX(10px); }
.lf-stat i { font-size: 40px; color: var(--cyan); flex-shrink: 0; }
.lf-stat h4 { font-size: 22px; color: #fff; margin-bottom: 4px; }
.lf-stat p { font-size: 14px; color: #aaa; margin: 0; }

.benefits { padding: 100px 0; position: relative; }
.b-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.b-card { position: relative; overflow: hidden; border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; z-index: 1; }
.b-card::after { content: ''; position: absolute; inset: 2px; background: rgba(20,20,20,0.95); border-radius: 22px; z-index: -1; backdrop-filter: blur(20px); }
.b-card::before { content: ''; position: absolute; top:-50%; left:-50%; width:200%; height:200%; background: conic-gradient(transparent, var(--cyan), transparent 30%); animation: radar 4s linear infinite; opacity: 0; transition: 0.4s; z-index: -2; }
@keyframes radar { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.b-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 50px rgba(0,194,255,0.1); }
.b-card:hover::before { opacity: 1; }

.b-icon { font-size: 48px; margin-bottom: 20px; display: inline-block; background: rgba(0,0,0,0.3); padding: 16px; border-radius: 16px; border: 1px solid var(--border); color: var(--cyan); transition: 0.3s; }
.b-card:hover .b-icon { filter: drop-shadow(0 0 15px var(--cyan)); color: #fff; transform: scale(1.1); }
.b-card h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; font-family: var(--font-display); color: #fff; }
.b-card p { font-size: 16px; color: #aaa; line-height: 1.6; }

.bonus-section { padding: 120px 0; border-top: 1px solid var(--border); background: radial-gradient(circle at bottom right, rgba(122,63,242,0.1), var(--dark)); }
.bonus-table { width: 100%; max-width: 800px; margin: 40px auto; border-collapse: collapse; border-radius: 16px; overflow: hidden; border: 1px solid rgba(122,63,242,0.3); background: rgba(20,20,20,0.8); backdrop-filter: blur(10px); }
.bonus-table th { background: linear-gradient(90deg, var(--purple), #5a1ec4); color: #fff; padding: 20px; font-weight: 800; font-size: 18px; text-transform: uppercase; font-family: var(--font-display); letter-spacing: 1px; }
.bonus-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: #ccc; font-size: 16px; text-align: center; }
.bonus-table tr:hover td { background: rgba(255,255,255,0.05); color: #fff; }
.bonus-table tr:last-child td { border-bottom: none; }

/* Zero Cost Section */
.zero-cost-section { padding: 120px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--dark), rgba(0,194,255,0.05)); }
.zc-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.zc-visual { flex: 1; min-width: 300px; position: relative; display: flex; justify-content: center; }
.zc-card { background: rgba(255,255,255,0.03); border: 2px solid var(--cyan); border-radius: 30px; padding: 50px; text-align: center; box-shadow: 0 0 50px rgba(0,194,255,0.2); backdrop-filter: blur(10px); position: relative; z-index: 2; }
.zc-card h2 { font-size: 80px; color: var(--cyan); margin-bottom: 10px; font-family: var(--font-display); }
.zc-card p { font-size: 20px; font-weight: 800; text-transform: uppercase; color: #fff; }
.zc-glow { position: absolute; width: 100%; height: 100%; background: var(--cyan); filter: blur(100px); opacity: 0.2; z-index: 1; }
.zc-content { flex: 1.2; min-width: 300px; }
.zc-content h3 { font-size: clamp(32px, 5vw, 60px); margin-bottom: 24px; line-height: 1.1; }
.zc-content p { font-size: 18px; color: #aaa; line-height: 1.7; margin-bottom: 30px; }
.zc-benefits-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.zcb-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); padding: 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.zcb-item i { font-size: 24px; color: var(--cyan); }
.zcb-item span { font-weight: 600; font-size: 14px; }

.req-list { text-align: left; background: rgba(26,26,26,0.6); border: 1px solid var(--border); padding: 30px; border-radius: 20px; max-width: 800px; margin: 0 auto 40px auto; color: #ccc; font-size: 16px; line-height: 1.6; }
.req-list h4 { color: #fff; font-size: 20px; margin-bottom: 15px; font-family: var(--font-display); letter-spacing: 1px; }
.req-list ul { padding-left: 20px; margin-bottom: 20px; }
.req-list li { margin-bottom: 8px; }
.req-warning { background: rgba(255,42,42,0.1); border-left: 4px solid var(--red); padding: 16px; margin-top: 20px; color: #fff; font-weight: 600; border-radius: 0 8px 8px 0; }
.req-danger { background: rgba(0,0,0,0.5); padding: 20px; border-radius: 12px; margin-top: 20px; font-size: 14px; color: #aaa; border: 1px solid rgba(255,255,255,0.05); }

.faq-section { padding: 120px 0; border-top: 1px solid var(--border); background: var(--dark); position: relative; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item { background: rgba(26,26,26,0.4); border: 1px solid var(--border); border-radius: 20px; padding: 30px; transition: 0.3s; }
.faq-item:hover { border-color: var(--cyan); background: rgba(0,194,255,0.05); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,194,255,0.1); }
.faq-q { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
.faq-q i { color: var(--cyan); font-size: 24px; margin-top: -2px; }
.faq-a { font-size: 16px; color: #aaa; line-height: 1.6; padding-left: 34px; }

.cta-section { padding: 120px 0; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--dark), #111); }
.cta-title { font-size: clamp(50px, 10vw, 140px); margin-bottom: 30px; letter-spacing: -2px; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: var(--cyan); filter: blur(100px); opacity: 0.15; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none; }

/* Secondary Manager Mention */
.mini-manager { padding: 40px 0 20px; text-align: center; background: #050505; border-top: 1px solid rgba(255,255,255,0.05); }
.mini-manager p { font-size: 16px; color: #888; }
.mini-manager a { color: var(--cyan); text-decoration: none; font-weight: 800; margin-left: 10px; transition: 0.3s; }
.mini-manager a:hover { color: #fff; }

footer { padding: 40px 0; text-align: center; background: #050505; }
.footer-logo { font-size: clamp(40px, 6vw, 60px); color: #333; margin-bottom: 20px; display: block; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; }
.footer-links a { color: #888; text-decoration: none; font-weight: 600; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.footer-links a:hover { color: var(--cyan); }

.float-obj { position: absolute; z-index: 5; pointer-events: none; filter: drop-shadow(0 0 30px rgba(0,194,255,0.2)); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } .lf-grid { grid-template-columns: 1fr; } .zc-container { flex-direction: column; text-align: center; } .zc-benefits-mini { grid-template-columns: 1fr; } .show-on-desktop { display: none !important; } }
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding-top: 100px; padding-bottom: 60px; }
    
    .hero-stats-glass { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; position: relative; bottom: auto; margin: 30px auto 0; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); width: calc(100% - 30px); transform: none; left: auto; }
    .stat-item { flex: 1; min-width: 80px; text-align: center; justify-content: center; flex-direction: column; gap: 8px; }
    .stat-item i { font-size: 32px; }
    .stat-item h4 { font-size: 20px; }
    .stat-item p { font-size: 11px; line-height: 1.2; color: #fff; font-weight: 700; }

    .app-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .app-glow { left: 50%; transform: translateX(-50%); width: 100%; }
    .app-badge { margin: 0 auto 20px; font-size: 11px; }
    
    .benefits { padding: 60px 0; }
    .b-card { padding: 30px 20px; text-align: center; }
    .b-icon { margin: 0 auto 20px; display: block; width: fit-content; }
    
    .bonus-table td, .bonus-table th { padding: 12px; font-size: 14px; }
    .req-list { padding: 20px; }

    .creators-section-title { font-size: clamp(34px, 12vw, 64px); }
    .creator-card { width: calc((100% - 28px) / 2); flex-basis: calc((100% - 28px) / 2); }
    .creator-name { font-size: 20px; }
    
    .footer-links { flex-direction: column; gap: 15px; }
    .mini-manager p { display: flex; flex-direction: column; gap: 10px; }
    
    .equation-row { gap: 15px; }
    .eq-results { gap: 20px; }
    
    .hero-content h1 { font-size: clamp(32px, 10vw, 80px) !important; line-height: 1; margin-bottom: 15px; }
    .hero-content p { font-size: 14px !important; }
    .nav-btn { font-size: 15px !important; padding: 16px 20px !important; width: 100%; max-width: 320px; display: block !important; margin: 0 auto !important; white-space: normal; line-height: 1.2; text-align: center; }

    .faq-q { font-size: 18px; }
    .faq-a { font-size: 15px; padding-left: 20px; }

    .bonus-table-wrapper { overflow-x: visible; margin: 20px 0; padding: 0; }
    .bonus-table { min-width: 0; width: 100%; table-layout: fixed; border-collapse: collapse; }
    .bonus-table th, .bonus-table td { padding: 12px 5px; font-size: 13px; word-break: break-word; text-align: center; }
    .th-rango { width: 60%; }
    .th-bono { width: 40%; }
    
    footer img { height: 60px !important; }
}
@media (max-width: 480px) {
    .title-display { font-size: clamp(30px, 12vw, 50px) !important; }
    .creator-card { width: 100%; flex-basis: 100%; height: 360px; }
}
@media (prefers-reduced-motion: reduce) {
    .symbol, .hero-bg, .hero-glow, .btn-shine::after {
        animation: none !important;
    }
    .creators-track { transition: none !important; }
}
