@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap");

:root {
  --crimson: #8b0000;
  --crimson-mid: #a50000;
  --crimson-light: #c41e1e;
  --anthracite: #1a1a1a;
  --anthracite2: #242424;
  --anthracite3: #2e2e2e;
  --copper: #b87333;
  --copper-light: #d4935a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-muted: #9a8f80;
  --border: rgba(184, 115, 51, 0.25);
  --border-crimson: rgba(139, 0, 0, 0.35);

  --ff-display: "Syne", sans-serif;
  --ff-body: "Lora", Georgia, serif;

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--anthracite);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--ff-display);
  border: none;
  background: none;
}
ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--anthracite2);
}
::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 3px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 48px;
  height: 72px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--copper),
    var(--crimson),
    var(--copper),
    transparent
  );
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--crimson);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  position: relative;
}
.logo-mark::after {
  content: "♦";
  font-size: 18px;
  color: var(--copper);
  line-height: 1;
}
.logo-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-text span {
  color: var(--copper);
}

.nav-links {
  display: none !important;
}
.nav-links *::before,
.nav-links *::after {
  display: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-login {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-login:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-signup {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 24px;
  background: var(--crimson);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--crimson);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-signup:hover {
  background: var(--crimson-mid);
}
.btn-signup:hover::before {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--anthracite2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav .btn-login,
.mobile-nav .btn-signup {
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 40%,
      rgba(139, 0, 0, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 20%,
      rgba(184, 115, 51, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(139, 0, 0, 0.18) 0%,
      transparent 55%
    ),
    linear-gradient(170deg, #0e0e0e 0%, #1a0a0a 45%, #1a1a1a 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 7px 18px;
  border: 1px solid rgba(184, 115, 51, 0.4);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  background: rgba(184, 115, 51, 0.08);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "◆";
  font-size: 7px;
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--white);
}
.hero h1 .accent {
  color: var(--copper);
}
.hero h1 .line-crimson {
  color: var(--crimson-light);
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream-dark);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-primary {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--crimson);
  color: var(--white);
  border: 1px solid var(--crimson-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--crimson-mid);
}
.btn-hero-primary:hover::after {
  transform: scaleX(1);
}

.btn-hero-secondary {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 40px;
}
.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.hero-divider::after {
  background: linear-gradient(90deg, var(--border), transparent);
}
.hero-divider span {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--copper);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 48px;
  background: var(--anthracite2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.badge-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-text strong {
  color: var(--copper);
  display: block;
  font-size: 0.85rem;
}

section {
  padding: 96px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title .accent {
  color: var(--copper);
}
.section-title .crimson {
  color: var(--crimson-light);
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.services {
  background: var(--anthracite2);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--anthracite3);
  border-left: 3px solid var(--copper);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  background: #333;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  border-left-color: var(--crimson-light);
}

.service-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--copper);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 4px;
}
.service-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-body {
  flex: 1;
}
.service-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about {
  background: var(--anthracite);
}
.about-header {
  margin-bottom: 56px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--anthracite2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.about-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--anthracite3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--copper);
}
.about-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--anthracite3), #2a1a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.about-body {
  padding: 24px;
}
.about-tag {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson-light);
  margin-bottom: 10px;
  display: block;
}
.about-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.about-text {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.testimonials {
  background: var(--anthracite2);
  overflow: hidden;
}
.testimonials-header {
  margin-bottom: 56px;
}

.slider-wrapper {
  position: relative;
}
.slider-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  transition: var(--transition);
}
.testimonial-card {
  background: var(--anthracite3);
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: "Georgia", serif;
  font-size: 5rem;
  color: var(--crimson);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.author-meta {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.stars {
  color: var(--copper);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--anthracite3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--copper);
  border-color: var(--copper);
}

.top-slots {
  background: var(--anthracite);
}
.slots-header {
  margin-bottom: 56px;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slot-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.slot-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a0a0a, #2a1515);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition);
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.btn-play {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--white);
  color: var(--crimson);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
}
.slot-body {
  padding: 18px 20px;
  background: var(--anthracite2);
}
.slot-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.slot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slot-rtp {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.slot-tag {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(139, 0, 0, 0.3);
  color: var(--crimson-light);
  border-radius: var(--radius-sm);
}

.faq {
  background: var(--anthracite2);
}
.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq-sidebar .section-title {
  margin-bottom: 24px;
}
.faq-sidebar-sub {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.faq-contact {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--anthracite3);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.faq-item.open {
  border-left-color: var(--copper);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--white);
}
.faq-item.open .faq-question {
  color: var(--copper);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--anthracite);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

footer {
  background: #111111;
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.footer-main .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.footer-col-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--cream);
}

.footer-rg-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid #cc0000;
  margin-left: 40px;
  padding-left: 40px;
}
.footer-rg-strip .container {
  padding-left: 0;
}

.rg-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.rg-headline-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.rg-headline-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.rg-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.rg-card {
  background: var(--anthracite3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: var(--transition);
}
.rg-card:hover {
  border-color: rgba(204, 0, 0, 0.4);
  background: #333;
}
.rg-card a {
  text-decoration: none;
  display: block;
}
.rg-card-label {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.rg-card-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.rg-card a:hover .rg-card-name {
  color: #ff9999;
}
.rg-card a .rg-card-name {
  color: var(--white);
}
.rg-card-detail {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.rg-tag {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
}
.rg-tag:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184, 115, 51, 0.08);
}

.rg-note {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.rg-note strong {
  color: var(--crimson-light);
}
.rg-note a {
  color: var(--copper);
}

.footer-badges-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.footer-badges-row .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.badges-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.badges-group-label {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 190px;
}
.badge-item {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  color: var(--cream-dark);
  background: transparent;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.badge-item:hover {
  border-color: var(--border);
  color: var(--white);
}
.badge-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.badge-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.badge-logo-img {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .badges-group--logos {
    justify-content: center;
  }
  .badge-logo-img {
    height: 36px;
  }
}
.badge-interac {
  border-color: rgba(255, 102, 0, 0.55);
  color: #ff9944;
}
.badge-visa {
  border-color: rgba(70, 100, 220, 0.55);
  color: #7090ff;
}
.badge-mc {
  border-color: rgba(235, 0, 27, 0.55);
  color: #ff5566;
}

.footer-legal {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.footer-legal p {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--copper);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--anthracite2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  border-color: var(--crimson-light);
  color: var(--crimson-light);
}
.modal-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-sub {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.modal-sub a {
  color: var(--copper);
  cursor: pointer;
}
.modal-sub a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--anthracite3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--copper);
}
.form-group input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--crimson);
}
.form-check label {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check label a {
  color: var(--copper);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: var(--crimson-mid);
}

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 16px;
}
.modal-success.visible {
  display: flex;
}
.success-icon {
  font-size: 3rem;
}
.success-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4caf50;
}
.success-text {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}
.age-gate-inner {
  max-width: 480px;
}
.age-gate-logo {
  margin: 0 auto 32px;
}
.age-gate-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.age-gate-sub {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.age-gate-deco {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-age-confirm {
  padding: 15px 40px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-age-confirm:hover {
  background: var(--crimson-mid);
}
.btn-age-reject {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition);
}
.btn-age-reject:hover {
  color: var(--cream);
}
.age-gate-note {
  margin-top: 24px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: #555;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--anthracite2);
  border-top: 1px solid var(--border);
  border-top-color: var(--copper);
  z-index: 5000;
  padding: 20px 40px;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--copper);
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-cookie {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-settings {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-cookie-settings:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.btn-cookie-reject {
  background: none;
  border: 1px solid var(--border-crimson);
  color: var(--crimson-light);
}
.btn-cookie-reject:hover {
  background: rgba(139, 0, 0, 0.2);
}
.btn-cookie-accept {
  background: var(--copper);
  border: 1px solid var(--copper);
  color: var(--white);
}
.btn-cookie-accept:hover {
  background: var(--copper-light);
}

.cookie-settings-panel {
  display: none;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
}
.cookie-settings-panel.open {
  display: block;
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-info {
}
.cookie-toggle-label {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.cookie-toggle-desc {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--anthracite3);
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--crimson);
  border-color: var(--crimson);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: var(--white);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
  .footer-main .container {
    grid-template-columns: 1fr 1fr;
  }
  .rg-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 0;
  }
  .container {
    padding: 0 20px;
  }
  .hero-badge {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: 1fr;
  }
  .slider-track {
    grid-template-columns: 1fr;
  }
  .footer-main .container {
    grid-template-columns: 1fr;
  }
  .footer-rg-strip {
    margin-left: 20px;
    padding-left: 20px;
  }
  .rg-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cookie-banner {
    padding: 16px 20px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
