:root {
    --primary: #00e5ff; 
    --primary-glow: rgba(0, 229, 255, 0.5);
    --secondary: #9d00ff; 
    --bg-dark: #050507;
    --bg-card: rgba(20, 20, 25, 0.85);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --discord: #5865F2;
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; line-height: 1.6; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.text-gradient { background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
a { text-decoration: none; color: inherit; }

/* SCROLL PROGRESS BAR */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 10000; width: 0%; transition: width 0.1s; }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10, 10, 12, 0.98); border-top: 1px solid var(--primary); padding: 20px; z-index: 9998; transform: translateY(100%); transition: 0.4s; }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-content p { margin: 0; font-size: 0.9rem; color: #ccc; }

/* BACK TO TOP BUTTON */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: #000; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6); }

/* TRUST BADGES SECTION */
.trust-section { padding: 60px 0; background: rgba(0, 229, 255, 0.02); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.trust-badge { text-align: center; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid var(--glass-border); transition: 0.3s; }
.trust-badge:hover { transform: translateY(-5px); border-color: var(--primary); }
.trust-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #000; }
.trust-badge h3 { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.trust-badge p { font-size: 0.9rem; color: var(--text-muted); }

/* POPUP MODAL */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: 0.4s ease; }
.modal-overlay.active { visibility: visible; opacity: 1; }
.glass-modal { background: #0a0a0c; border: 1px solid var(--primary); padding: 40px; border-radius: 24px; text-align: center; max-width: 500px; width: 90%; box-shadow: 0 0 60px rgba(0, 229, 255, 0.2); transform: scale(0.9); transition: 0.3s; position: relative; }
.modal-overlay.active .glass-modal { transform: scale(1); }
.modal-icon { font-size: 3rem; color: #ffbf00; margin-bottom: 20px; }
.modal-text { color: #ccc; margin-bottom: 30px; font-size: 1.1rem; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0; background: rgba(5, 5, 7, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); transition: 0.3s; }
.navbar.scrolled { background: rgba(5, 5, 7, 0.95); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 24px; max-width: 1200px; margin: 0 auto; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--text-main); }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.discord-icon-link { font-size: 1.5rem; color: var(--text-muted); transition: 0.2s; }
.discord-icon-link:hover { color: var(--discord); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: 0.3s; }
.btn-primary { background: var(--text-main); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,255,255,0.4); }
.btn-discord { background: var(--discord); color: white; }
.btn-discord:hover { background: #4752C4; box-shadow: 0 0 20px rgba(88, 101, 242, 0.4); }
.btn-glow { background: rgba(0, 229, 255, 0.1); color: var(--primary); border: 1px solid rgba(0, 229, 255, 0.3); }
.btn-glow:hover { background: var(--primary); color: #000; box-shadow: 0 0 20px var(--primary-glow); }
.btn-outline { background: transparent; border: 1px solid var(--glass-border); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); color: white; backdrop-filter: blur(5px); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.full-width { width: 100%; margin-top: 20px; }
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); } }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; text-align: center; overflow: hidden; padding-top: 60px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 85%); }
.hero-content { max-width: 900px; margin: 0 auto; padding: 20px; z-index: 1; }
h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1.5px; }
.hero p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 40px; max-width: 650px; margin-inline: auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }
.badge { background: rgba(0, 229, 255, 0.1); color: var(--primary); border: 1px solid rgba(0, 229, 255, 0.2); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: inline-block; margin-bottom: 15px; }
.badge.new { color: #22c55e; background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); }
.badge.blue { color: #3b82f6; background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); }
.badge-container { display: flex; justify-content: center; margin-bottom: 20px; }

/* Payment Methods */
.payment-methods { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 20px; }
.pay-label { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }
.pay-icons { display: flex; gap: 20px; font-size: 1.5rem; color: #fff; opacity: 0.6; flex-wrap: wrap; justify-content: center; }

/* Process Section */
.process-section { background: linear-gradient(180deg, var(--bg-dark), #0a0a0c); border-bottom: 1px solid var(--glass-border); }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.step-card { background: var(--bg-card); border: 1px solid var(--glass-border); padding: 30px; border-radius: var(--radius); text-align: center; transition: 0.3s; }
.step-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.step-icon { width: 50px; height: 50px; background: var(--primary); color: #000; font-weight: bold; font-size: 1.2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 40px; position: relative; transition: 0.3s; display: flex; flex-direction: column; overflow: hidden; }
.card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.card.featured { border-color: var(--primary); box-shadow: 0 0 40px rgba(0, 229, 255, 0.05); }
.featured-badge { position: absolute; top: 0; right: 0; background: var(--primary); color: #000; font-weight: bold; font-size: 0.75rem; padding: 6px 15px; border-bottom-left-radius: 15px; }
.card-header { margin-bottom: 20px; }
.card-header h3 { font-size: 1.8rem; margin-bottom: 5px; }
.card-header .sub { font-size: 0.9rem; color: var(--text-muted); display: block; }
.price-rows { margin: 25px 0; flex-grow: 1; }
.price-rows .row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 12px 0; font-size: 0.95rem; }
.note { font-size: 0.85rem; color: #ffbf00; margin-bottom: 15px; text-align: center; }

/* Lifetime Price */
.price-container { margin: 20px 0; display: flex; align-items: baseline; gap: 15px; }
.strike-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.5rem; }
.main-price { font-size: 3rem; font-weight: 800; color: #fff; }
.check-list { list-style: none; text-align: left; margin-bottom: 25px; flex-grow: 1; }
.check-list li { display: flex; gap: 8px; margin-bottom: 8px; font-size: 0.95rem; color: var(--text-muted); }

/* Tool Section */
.tool-section-bg { background: linear-gradient(to bottom, var(--bg-dark), #0a0a0c); }
.tool-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 60px; }
.tool-content { flex: 1; min-width: 300px; }
.tool-visual { flex: 1; min-width: 300px; }
.tool-visual .image-wrapper { position: relative; }
.image-wrapper img { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 0 50px rgba(0, 150, 255, 0.15); }
.glow-effect { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%); pointer-events: none; z-index: -1; }
.tool-desc { font-size: 1.1rem; margin: 20px 0; line-height: 1.6; }
.tool-features { list-style: none; margin-bottom: 20px; }
.tool-features li { margin-bottom: 8px; font-size: 1rem; }
.tool-pricing-box { background: rgba(0, 229, 255, 0.05); padding: 20px; border-radius: 12px; border: 1px solid var(--primary); display: inline-block; min-width: 250px; text-align: center; }
.deal-tag { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 5px; }
.tp-price { font-size: 2.5rem; font-weight: 800; color: #fff; }
.tax { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.spotify-banner { background: linear-gradient(90deg, #1DB954 0%, #191414 100%); border-radius: 12px; padding: 25px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.spotify-text { color: white; }
.spotify-text h3 { margin: 0; font-size: 1.2rem; }
.spotify-banner i { font-size: 2.5rem; color: white; }

/* Reviews Marquee */
.reviews-section { overflow: hidden; background: rgba(255,255,255,0.02); }
.marquee-container { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-content { display: flex; gap: 20px; width: max-content; }
.scroll-left { animation: scrollLeft 60s linear infinite; }
.scroll-right { animation: scrollRight 60s linear infinite; }
.review-card { background: rgba(30, 30, 35, 0.6); border: 1px solid var(--glass-border); padding: 20px; border-radius: 16px; width: 320px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
.stars { color: #fbbf24; margin-bottom: 8px; }
.review-card p { font-size: 0.9rem; font-style: italic; color: #ddd; margin-bottom: 10px; line-height: 1.4; }
.author { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-align: right; }
@keyframes scrollLeft { to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--glass-border); margin-bottom: 10px; }
.accordion-header { width: 100%; text-align: left; background: rgba(255,255,255,0.03); border: none; color: #fff; padding: 15px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.accordion-header:hover { background: rgba(255,255,255,0.05); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; opacity: 0.7; font-size: 0.95rem; padding: 0 15px; }
.accordion-item.active .accordion-body { max-height: 500px; padding-bottom: 15px; padding-top: 10px; }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-header i { transition: transform 0.3s; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 40px 0; background: #000; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 20px; }
.footer-brand { text-align: left; }
.footer-links { display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: var(--text-muted); transition: 0.2s; }
.footer-links a:hover { color: #fff; }
.disclaimer { opacity: 0.5; font-size: 0.75rem; }

/* Animations */
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(30px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.fade-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.fade-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: #111; z-index: 2000; padding: 80px 20px; transition: 0.3s; display: flex; flex-direction: column; gap: 20px; }
.mobile-menu.active { right: 0; }
.mobile-menu a { font-size: 1.2rem; color: #fff; }
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
    h1 { font-size: 2.8rem; }
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .tool-layout, .pricing-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-brand { text-align: center; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}