/* Цвета */
:root {
    --bg-dark: #0e1124;
    --accent-green: #00ff8a;
    --accent-pink: #ff3cad;
    --accent-orange: #ff9c00;
    --text: #e8ebf5;
    --card-bg: #161a33;
    --radius: 14px;
    --shadow: rgba(0,0,0,0.35);
}

/* База */
body {
    margin: 0;
    background: #f3f5fa;
    font-family: Inter, sans-serif;
}

/* Контейнер */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Хедер */
.header {
    background: var(--bg-dark);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Логотип */
.logo {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Яркие кнопки */
.header-buttons a {
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 10px;
  color: #fff;
  margin-left: 12px;
  text-decoration: none;
  transition: 0.25s;
}

.header-buttons .login {
  background: linear-gradient(90deg, #ff6a00, #ff9c00);
}

.header-buttons .register {
  background: linear-gradient(90deg, #ff007a, #ff3cad);
}

.header-buttons .play {
  background: linear-gradient(90deg, #00d65c, #00ff8a);
  box-shadow: 0 0 12px rgba(0, 255, 150, .6);
}

.header-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.4);
}

/* Hero */
.hero {
    padding: 90px 0;
    background: linear-gradient(140deg, #1b1f3b, #0a0f26);
    color: #fff;
    text-align: center;
}

/* Главная кнопка */
.main-btn {
    margin-top: 30px;
    display: inline-block;
    padding: 16px 36px;
    color: #fff;
    background: #00c15e;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(0,193,94,.4);
    transition: .3s;
}

.main-btn:hover {
    background: #00a64d;
    box-shadow: 0 10px 22px rgba(0,193,94,.6);
}

/* Преимущества */
.feature-grid {
    display: flex;
    gap: 35px;
}

.feature {
    background: var(--card-bg);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px;
}

/* Отзывы */
.review {
    background: var(--card-bg);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    color: #fff;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px var(--shadow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-icon {
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    line-height: 1.55;
    color: #ddd;
    transition: max-height .35s ease;
}

.faq-item.active .faq-answer {
    padding: 16px 20px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    margin-top: 70px;
    background: var(--bg-dark);
    color: #fff;
    padding: 30px;
    text-align: center;
}
