/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.header.scrolled { background: rgba(10, 10, 15, 0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 700; }
.logo img { border-radius: 10px; }
.accent { color: #fe2c55; }
.nav-links { display: flex; gap: 8px; }
.nav-links a {
    padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease;
}
.nav-links a:hover { background: rgba(254, 44, 85, 0.1); color: #fe2c55; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 12px; font-weight: 600;
    font-size: 0.95rem; cursor: pointer; border: none;
    transition: all 0.3s ease; text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, #fe2c55, #ff6b6b);
    color: #fff; box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254, 44, 85, 0.6); }
.btn-outline {
    background: transparent; color: #fe2c55;
    border: 2px solid rgba(254, 44, 85, 0.5);
}
.btn-outline:hover { background: rgba(254, 44, 85, 0.1); border-color: #fe2c55; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(254, 44, 85, 0.7); }
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: #fe2c55; top: -200px; right: -200px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: #25f4ee; bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: #ff6b6b; top: 50%; left: 50%; animation: float 12s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(254, 44, 85, 0.15); border: 1px solid rgba(254, 44, 85, 0.3);
    color: #fe2c55; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
    line-height: 1.2; margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.gradient-text {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem; color: #a0a0a0; max-width: 600px; margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
    display: flex; justify-content: center; gap: 40px; margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.8rem; color: #888; }
.hero-buttons {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-platforms {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 0.85rem; color: #888;
    animation: fadeInUp 0.8s ease 1s both;
}
.platform-icons { display: flex; gap: 8px; }
.platform-badge {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem; color: #ccc;
}
.platform-badge svg { opacity: 0.8; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(254, 44, 85, 0.1); border: 1px solid rgba(254, 44, 85, 0.2);
    color: #fe2c55; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.section-header p { color: #888; font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.feature-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 32px; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #fe2c55, #25f4ee); opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(254, 44, 85, 0.2); background: rgba(255,255,255,0.05); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.feature-card p { color: #999; font-size: 0.95rem; margin-bottom: 16px; }
.feature-link { color: #fe2c55; font-weight: 600; font-size: 0.9rem; }
.feature-link:hover { color: #ff6b6b; }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: rgba(255,255,255,0.01); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.price-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 36px 28px; text-align: center;
    transition: all 0.4s ease; position: relative;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(254, 44, 85, 0.3); }
.price-card.popular {
    border-color: #fe2c55; background: rgba(254, 44, 85, 0.05);
    transform: scale(1.05);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #fe2c55, #ff6b6b);
    color: #fff; padding: 4px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    white-space: nowrap;
}
.price-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.price { font-size: 2.5rem; font-weight: 900; color: #fe2c55; margin-bottom: 4px; }
.price-old {
    font-size: 1.3rem; font-weight: 600; color: #888;
    text-decoration: line-through; margin-bottom: 4px;
    text-decoration-color: #fe2c55; text-decoration-thickness: 2px;
}
.price-free { color: #25f4ee; font-size: 2rem; }
.price-tokens { color: #888; font-size: 0.9rem; }
.price-features { margin: 24px 0; text-align: left; }
.price-features li { padding: 8px 0; color: #bbb; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.price-features i { color: #25f4ee; font-size: 0.8rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 32px; text-align: center; flex: 1; min-width: 240px; max-width: 300px;
    transition: all 0.4s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(254, 44, 85, 0.2); }
.step-number {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, #fe2c55, #ff6b6b);
    color: #fff; font-size: 1.3rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step-card p { color: #999; font-size: 0.9rem; }
.step-connector { color: #fe2c55; font-size: 1.2rem; }

/* ===== ARTICLES ===== */
.articles { padding: 100px 0; background: rgba(255,255,255,0.01); }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.article-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; overflow: hidden; transition: all 0.4s ease;
}
.article-card:hover { transform: translateY(-5px); border-color: rgba(254, 44, 85, 0.2); }
.article-img {
    height: 140px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(254,44,85,0.1), rgba(37,244,238,0.1));
}
.article-emoji { font-size: 3.5rem; }
.article-content { padding: 24px; }
.article-category {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    background: rgba(254, 44, 85, 0.1); color: #fe2c55;
    font-size: 0.75rem; font-weight: 600; margin-bottom: 10px;
}
.article-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; line-height: 1.4; }
.article-toc {
    padding: 10px 14px; border-radius: 8px; margin-bottom: 12px;
    background: rgba(255,255,255,0.03); border-left: 3px solid #fe2c55;
    font-size: 0.8rem; color: #888;
}
.article-toc strong { color: #bbb; }
.article-content > p { color: #999; font-size: 0.88rem; line-height: 1.7; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-search {
    max-width: 500px; margin: 0 auto 32px;
}
.faq-search input {
    width: 100%; padding: 14px 20px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 1rem; outline: none;
    transition: border-color 0.3s ease;
}
.faq-search input:focus { border-color: #fe2c55; }
.faq-search input::placeholder { color: #666; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
    margin-bottom: 8px; overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(254, 44, 85, 0.2); }
.faq-question {
    padding: 16px 20px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.95rem; color: #ddd;
    background: rgba(255,255,255,0.02); transition: all 0.3s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question i { color: #fe2c55; transition: transform 0.3s ease; font-size: 0.8rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 20px; color: #999; font-size: 0.9rem; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 20px 16px; }
.faq-load-more { text-align: center; margin-top: 24px; }

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254,44,85,0.1), rgba(37,244,238,0.05));
}
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.cta-content p { color: #999; margin-bottom: 24px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.footer-logo img { border-radius: 8px; }
.footer-col p { color: #888; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #888; font-size: 0.9rem; }
.footer-col ul a:hover { color: #fe2c55; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; 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;
    color: #bbb; font-size: 1rem; transition: all 0.3s ease;
}
.social-links a:hover { background: #fe2c55; color: #fff; border-color: #fe2c55; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: #666; font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,15,0.98); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-5px); }
    .articles-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE STYLES (hakkimizda, iletisim) ===== */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(254,44,85,0.08), rgba(37,244,238,0.03));
    text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; color: #fff; }
.page-hero p { color: #888; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-content { padding: 60px 0; }
.page-content .container { max-width: 800px; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 32px 0 16px; }
.page-content p { color: #bbb; margin-bottom: 16px; line-height: 1.8; }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #ddd; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 0.95rem; font-family: inherit; outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: #fe2c55; }
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.contact-info-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 24px; text-align: center;
}
.contact-info-card .icon { font-size: 2rem; margin-bottom: 12px; }
.contact-info-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { color: #888; font-size: 0.9rem; }

/* ===== JETON HILESI PAGE ===== */
.generator-section { padding: 120px 0 80px; min-height: 100vh; }
.generator-card {
    max-width: 500px; margin: 0 auto;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}
.generator-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #fe2c55, #25f4ee);
}
.generator-header { text-align: center; margin-bottom: 32px; }
.generator-header h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.generator-header p { color: #888; font-size: 0.9rem; }
.gen-form-group { margin-bottom: 20px; }
.gen-form-group label { display: block; color: #ddd; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.gen-form-group input, .gen-form-group select {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 0.95rem; font-family: inherit; outline: none;
    transition: border-color 0.3s ease;
}
.gen-form-group input:focus, .gen-form-group select:focus { border-color: #fe2c55; }
.gen-form-group select option { background: #1a1a2e; color: #fff; }
.platform-select { display: flex; gap: 12px; }
.platform-option {
    flex: 1; padding: 14px; border-radius: 12px; text-align: center; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.platform-option:hover { border-color: rgba(254, 44, 85, 0.3); }
.platform-option.selected { border-color: #fe2c55; background: rgba(254, 44, 85, 0.1); }
.platform-option svg { width: 28px; height: 28px; }
.platform-option span { font-size: 0.85rem; font-weight: 600; color: #ddd; }
.jeton-amount { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.jeton-option {
    padding: 12px; border-radius: 10px; text-align: center; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease; font-weight: 600; color: #ddd; font-size: 0.9rem;
}
.jeton-option:hover { border-color: rgba(254, 44, 85, 0.3); }
.jeton-option.selected { border-color: #fe2c55; background: rgba(254, 44, 85, 0.1); color: #fe2c55; }
.generate-btn {
    width: 100%; padding: 16px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #fe2c55, #ff6b6b);
    color: #fff; font-size: 1.05rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; margin-top: 8px;
}
.generate-btn:hover { box-shadow: 0 8px 30px rgba(254, 44, 85, 0.5); transform: translateY(-2px); }
.generate-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Generator Progress */
.progress-section { display: none; margin-top: 24px; }
.progress-bar-container {
    height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1);
    overflow: hidden; margin-bottom: 12px;
}
.progress-bar {
    height: 100%; border-radius: 4px; width: 0%;
    background: linear-gradient(90deg, #fe2c55, #25f4ee);
    transition: width 0.5s ease;
}
.progress-text { text-align: center; color: #888; font-size: 0.9rem; }
.progress-text span { color: #fe2c55; font-weight: 600; }

/* Captcha */
.captcha-section { display: none; margin-top: 24px; }
.fake-captcha {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px;
}
.captcha-checkbox {
    width: 28px; height: 28px; border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; flex-shrink: 0;
}
.captcha-checkbox.checked { background: #25f4ee; border-color: #25f4ee; }
.captcha-checkbox i { display: none; color: #000; font-size: 0.8rem; }
.captcha-checkbox.checked i { display: block; }
.captcha-text { font-size: 0.9rem; color: #ddd; }
.captcha-logo { margin-left: auto; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.captcha-logo span:first-child { font-weight: 700; color: #888; font-size: 0.7rem; }
.captcha-logo span:last-child { font-size: 0.6rem; color: #666; }

/* Verification */
.verification-section { display: none; margin-top: 24px; text-align: center; }
.verification-section .status-icon { font-size: 3rem; margin-bottom: 12px; }
.verification-section h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.verification-section p { color: #888; font-size: 0.9rem; margin-bottom: 16px; }
.continue-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #25f4ee, #00c9b7);
    color: #000; font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease;
}
.continue-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 244, 238, 0.4); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
