:root {
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --primary: #0088cc; /* Telegram/Jetton Blue */
    --primary-hover: #00aaff;
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    --accent: #29b6f6;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --container: 1200px;
    --font-main: 'Inter', sans-serif;
    --font-display: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--dark { background-color: #13161b; }
.section__title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 700; font-family: var(--font-display); text-transform: uppercase; }
.accent { color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 12px 24px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-size: 0.95rem; border: none; }
.btn--primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5); }
.btn--outline { background: transparent; border: 1px solid var(--primary); color: var(--text-main); }
.btn--outline:hover { background: var(--primary); border-color: var(--primary); }
.btn--glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255,255,255,0.1); }
.btn--glass:hover { background: rgba(255,255,255,0.2); }
.btn--xl { padding: 16px 40px; font-size: 1.1rem; }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; width: 100%; }
.btn--xs { padding: 6px 14px; font-size: 0.8rem; background: var(--bg-dark); color: var(--primary); }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(15, 17, 21, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header__inner { height: 70px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.05em; }
.nav { display: flex; gap: 30px; }
.nav__link { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav__link:hover, .nav__link.active { color: var(--primary); }
.header__actions { display: flex; gap: 15px; }

/* Hero */
.hero { position: relative; padding: 160px 0 100px; overflow: hidden; }
.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(0, 136, 204, 0.15), transparent 60%); z-index: -1; }
.hero__container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero__content { max-width: 600px; }
.hero__badge { display: inline-block; padding: 6px 12px; background: rgba(0, 136, 204, 0.1); color: var(--primary); border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(0, 136, 204, 0.2); }
.hero__title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero__subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }
.hero__buttons { display: flex; gap: 20px; margin-bottom: 40px; }
.hero__features { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__feature { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero__visual { flex: 1; display: flex; justify-content: center; }
.floating-coin { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Slots Grid */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.slot-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: 0.3s; position: relative; group: hover; }
.slot-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.slot-card__img { position: relative; padding-top: 65%; background: #1f232b; }
.slot-card__img svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.slot-card__info { padding: 15px; text-align: center; }
.slot-card__info h3 { font-size: 1rem; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Bonus Table */
.bonus-table-wrapper { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
.bonus-table { width: 100%; border-collapse: collapse; min-width: 600px; text-align: left; }
.bonus-table th, .bonus-table td { padding: 18px 24px; border-bottom: 1px solid var(--border); }
.bonus-table th { background: rgba(255,255,255,0.03); color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover { background: rgba(255,255,255,0.02); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.step-card { background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.step-card__icon { width: 50px; height: 50px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 12px; margin-bottom: 20px; font-size: 1.2rem; }
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { color: var(--text-muted); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.03); padding: 25px; border-radius: 16px; border: 1px solid var(--border); }
.feature-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Payments */
.payments-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.payment-item { padding: 12px 24px; background: var(--bg-card); border-radius: 12px; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border); }
.payment-item.active { border-color: var(--primary); color: white; background: rgba(0, 136, 204, 0.1); }

/* FAQ */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header { width: 100%; padding: 20px 0; background: none; border: none; color: white; text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: 0.3s; }
.accordion-header.active::after { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body p { padding-bottom: 20px; color: var(--text-muted); }

/* SEO Text */
.seo-text { color: var(--text-muted); font-size: 0.95rem; }
.seo-text h2, .seo-text h3 { color: white; margin-top: 30px; margin-bottom: 15px; }
.seo-text p { margin-bottom: 15px; }
.seo-text ul, .seo-text ol { padding-left: 20px; margin-bottom: 20px; }
.seo-text li { margin-bottom: 8px; }
.seo-text table { width: 100%; border-collapse: collapse; margin-bottom: 20px; border: 1px solid var(--border); }
.seo-text td { padding: 10px; border: 1px solid var(--border); }

/* Footer */
.footer { padding: 60px 0 20px; border-top: 1px solid var(--border); background: #050608; }
.footer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.footer__menu { display: flex; gap: 20px; }
.footer__menu a { color: var(--text-muted); }
.footer__menu a:hover { color: var(--primary); }
.footer__middle { margin-bottom: 30px; }
.age-limit { display: inline-block; padding: 4px 8px; border: 1px solid #333; border-radius: 4px; color: #666; font-size: 0.8rem; margin-bottom: 10px; }
.disclaimer { font-size: 0.8rem; color: #555; max-width: 800px; }
.footer__copyright { text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #111; padding-top: 20px; }

/* Mobile */
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 25px; height: 2px; background: white; margin: 6px 0; transition: 0.3s; }
.mobile-menu { position: fixed; top: 70px; left: 0; width: 100%; height: calc(100vh - 70px); background: var(--bg-dark); z-index: 999; transform: translateX(100%); transition: 0.3s; padding: 20px; border-top: 1px solid var(--border); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu__link { display: block; font-size: 1.2rem; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 600; }
.mobile-menu__btns { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.full-width { width: 100%; }

@media (max-width: 992px) {
    .hero__title { font-size: 2.5rem; }
    .hero__container { flex-direction: column; text-align: center; }
    .hero__buttons, .hero__features { justify-content: center; }
    .hero__content { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav, .header__actions { display: none; }
    .burger { display: block; }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    .section { padding: 50px 0; }
    .hero { padding-top: 120px; }
}