:root {
    --primary: #ff003c;
    --primary-dark: #b8002c;
    --primary-light: #ff4d73;
    --bg-dark: #120012;
    --bg-card: rgba(255, 0, 60, 0.12);
}

/* БАЗА */
body, html {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,0,60,0.35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,0,150,0.25), transparent 45%),
        linear-gradient(135deg, #0a0014, #1a0028 40%, #140022);
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* HEADER */
header {
    background: rgba(40, 0, 60, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

/* LOGO */
header .logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff003c;
    display: flex;
    align-items: center;
    gap: 12px;
    -webkit-text-stroke: 2px #ffffff;
    transform: scaleX(1.1);
}

/* NAV CONTAINER */
.nav-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links li {
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* HERO */
.hero {
    text-align: center;
    padding: 90px 20px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    opacity: 0.9;
    max-width: 700px;
    margin: auto;
}

.get-started-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(255,0,60,0.6);
}

.get-started-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* STATS */
.stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,0,60,0.4);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    color: var(--primary-light);
    font-size: 22px;
}

/* PAYMENTS */
.payments {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.payments h3 {
  text-align: center;
  margin-bottom: 20px;
}

.payments table {
  width: 100%;
  border-collapse: collapse;
}

.payments th, .payments td {
  padding: 12px;
  border-bottom: 1px solid #444;
  text-align: left;
}

.payments th {
  background: rgba(255,0,60,0.2);
}

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 60px 0;
}

.feature {
    background: var(--bg-card);
    border: 1px solid rgba(255,0,60,0.4);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    width: 240px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq details {
    margin-bottom: 15px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,0,60,0.3);
}

.faq summary {
    cursor: pointer;
    color: var(--primary-light);
    font-weight: 600;
}

/* FOOTER */
footer {
    background: rgba(255,0,60,0.1);
    border-top: 1px solid rgba(255,0,60,0.4);
    text-align: center;
    padding: 25px;
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: rgba(40, 0, 60, 0.95);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #ff003c;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255,0,60,0.6);
  text-align: center;
  position: relative;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 6px;
  border: 1px solid #ff4d73;
  background: #1a0028;
  color: #fff;
}

.modal-content button {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.modal-content button:hover { background: var(--primary-dark); }

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #ff4d73;
}

.banner-placeholder {
  width: 300px;
  height: 250px;
  margin: 0 auto 20px;
  background-color: #330022;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff4d73;
  font-size: 14px;
  border-radius: 8px;
}

/* TELEGRAM */
.telegram-header-button,
.telegram-button {
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 8px 15px;
    text-decoration: none;
    transition: 0.3s;
}

.telegram-header-button:hover,
.telegram-button:hover {
    background: var(--primary-dark);
}

/* BURGER */
.burger div {
    background: #ff4d73;
}

/* Floating Banners */
.floating-banner {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(255,0,60,0.6);
  border-radius: 8px;
  overflow: hidden;
  background: #1a0028;
}

.floating-banner.right {
  width: 300px;
  height: 250px;
  right: 10px;
}

.floating-banner.left {
  width: 300px;
  height: 250px;
  left: 10px;
}

.banner-content {
  width: 100%;
  height: 100%;
}

.close-banner {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(255,0,60,0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  z-index: 10000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats,
    .features {
        flex-direction: column;
        align-items: center;
    }
}