/* ===========================
   HERO BANNER
   =========================== */
.hero-banner {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-side-image {
  width: auto;
  height: 650px;
  max-height: 100%;
  object-fit: contain;
}

.countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 5;
}

.hero-banner:hover .slide-arrow {
  opacity: 0.4;
}

.slide-arrow:hover {
  opacity: 0.8;
  background: rgba(0,0,0,0.4);
}

.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }


/* ===========================
   NEWS CARDS (EVENT-CARD)
   =========================== */
.event-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;

  /* Стеклянная рамка */
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.glass-footer {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.9rem;
}

.glass-footer h5 {
  margin-top: 5px;
  font-size: 1.1rem;
  font-weight: 700;
}

.glass-footer p {
  margin: 6px 0;
  font-size: 0.85rem;
}


/* ===========================
   CTA BUTTON (AAA VERSION)
   =========================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7CFC00, #6be000);
    color: #000 !important;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 28px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(124, 252, 0, 0.5);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(124, 252, 0, 0.8);
    background: linear-gradient(135deg, #9aff3a, #7CFC00);
}


/* ===========================
   SOCIAL BUTTONS
   =========================== */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

.social-icon {
  width: 50px;
  height: 50px;
}

.social-btn.vk:hover {
  background-color: #4a76a8;
  box-shadow: 0 0 12px rgba(24,118,211,0.6);
}

.social-btn.tg:hover {
  background-color: #0088cc;
  box-shadow: 0 0 12px rgba(41,170,236,0.6);
}

.social-btn.discord:hover {
  background-color: #5865F2;
  box-shadow: 0 0 12px rgba(87,101,235,0.6);
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background-color: #212529;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.site-footer .footer-links {
  font-size: 0.85rem;
  margin: 0 0 5px 0;
}

.site-footer .footer-links a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: #32cd32;
}

.site-footer .footer-copy {
  font-size: 0.75rem;
  color: #555;
  margin: 0;
}


/* ===========================
   GLOBAL
   =========================== */
html, body {
  background-color: #212529 !important;
  margin: 0;
  padding: 0;
  min-height: 100%;
}


/* ===========================
   FEATURE BLOCK (AAA)
   =========================== */
.feature-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding: 40px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Eyebrow */
.feature-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Title */
.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
}

/* Subtitle */
.feature-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.feature-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(124, 252, 0, 0.6);
    color: #7CFC00;
    background: rgba(0, 0, 0, 0.5);
}

/* List */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 4px;
    position: relative;
    padding-left: 16px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #7CFC00;
}

/* Image + Stats */
.feature-image-wrap {
    position: relative;
    display: inline-block;
}

.feature-image {
    border-radius: 14px;
    box-shadow: none;
}

.feature-stats {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 999px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.feature-stat-item {
    text-align: center;
    min-width: 60px;
}

.feature-stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #7CFC00;
}

.feature-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 767.98px) {
    .feature-block {
        padding: 24px 18px;
    }

    .feature-title {
        font-size: 1.7rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }

    .feature-stats {
        position: static;
        transform: none;
        margin-top: 10px;
    }
}


/* ===========================
   REQUIREMENTS (ЗАГРУЗКА)
   =========================== */

.requirements-panels {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.requirements-panel {
    flex: 1 1 260px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 22px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.requirements-heading {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.requirements-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.req-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.req-value {
    font-size: 0.95rem;
    opacity: 0.95;
}


/* ===========================
   DOWNLOAD SECTION
   =========================== */

.download-section .feature-block {
    text-align: left;
}

.download-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 20px 26px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.download-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.download-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.download-buttons .cta-button {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}


/* ===========================
   INSTALL SECTION
   =========================== */

.install-list {
    counter-reset: install-counter;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.install-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.install-list li::before {
    counter-increment: install-counter;
    content: counter(install-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(124, 252, 0, 0.7);
    color: #7CFC00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}


/* ===========================
   FAQ SECTION
   =========================== */

.faq-section .feature-block {
    padding-top: 30px;
    padding-bottom: 30px;
}

.faq-section .accordion-item {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-section .accordion-item + .accordion-item {
    margin-top: 0.6rem;
}

.faq-section .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 16px;
    box-shadow: none !important;
}

.faq-section .accordion-button::after {
    content: '⮟';
    font-size: 0.8rem;
    color: #7CFC00;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
    background-image: none !important;
    filter: none !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(0, 0, 0, 0.75);
    color: #7CFC00;
}

.faq-section .accordion-collapse {
  border-top: none !important;
}

.faq-section .accordion-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.85) !important;
  color: #f0f0f0 !important;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4) !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
  padding: 16px 20px !important;
}


.faq-section .accordion-body li {
    margin-bottom: 6px !important;
    font-size: 0.95rem !important;
    opacity: 0.95 !important;
}

.faq-section .accordion-collapse {
  border-top: none !important;
}

.faq-list {
    padding-left: 1.1rem;
    margin-bottom: 0;
}


/* ===========================
   MOBILE TWEAKS
   =========================== */

@media (max-width: 767.98px) {
    .requirements-panels {
        flex-direction: column;
    }

    .download-buttons .cta-button {
        max-width: 100%;
    }

    .install-list li {
        padding-left: 34px;
    }

    .install-list li::before {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
}



/* ===========================
   REGISTER — FINAL CLEAN VERSION
   =========================== */

/* Секция регистрации */
.register-block {
  background: #212529;
  padding: 24px 0 80px;
}

/* Заголовок секции */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #7CFC00;
  margin-bottom: 6px;
  text-align: left;
}

/* Подзаголовок секции */
.section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  text-align: left;
}

/* Карточка формы */
.login-sec {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 22px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

/* Сброс стилей заголовка */
.login-sec h2.section-title {
  all: unset;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #7CFC00;
  margin-bottom: 6px;
  text-align: left;
  line-height: 1.2;
}

/* Сброс стилей подзаголовка */
.login-sec p.section-subtitle {
  all: unset;
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.4;
}

/* Убираем старую бежевую линию */
.login-sec h2:after,
.login-sec .section-title:after {
  content: none !important;
  display: none !important;
}

/* Поля формы */
.login-form .form-control {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff !important;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}


.login-form .form-control:focus {
  border-color: rgba(124, 252, 0, 0.7);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.35);
  color: #fff !important;
}


/* Лейблы */
.login-form label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Чекбокс */
.form-check-label {
  color: rgba(255, 255, 255, 0.75);
}

.form-check-input {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #7CFC00 !important;
  border-color: #7CFC00 !important;
}

.form-check-input:focus {
  box-shadow: 0 0 6px rgba(124, 252, 0, 0.5);
}

/* Кнопка */
.btn-success {
  background-color: #32cd32 !important;
  border: none !important;
  padding: 12px 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(50, 205, 50, 0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
}

.btn-success:hover {
  background-color: #39e639 !important;
  box-shadow: 0 0 18px rgba(50, 205, 50, 0.7);
}

.btn-success:active {
  background-color: #2eb82e !important;
  box-shadow: none;
}

/* reCAPTCHA */
.g-recaptcha {
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}

/* Автовставка */
input:-webkit-autofill {
  background-color: rgba(0, 0, 0, 0.65) !important;
  color: #fff !important;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.65) inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Кастомный чекбокс */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkbox-box {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background-color: transparent;
  vertical-align: middle;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #7CFC00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox .checkbox-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  vertical-align: middle;
}
