:root {
  --color-bg: #0c0c0f;
  --color-bg-soft: #131419;
  --color-card: #191a20;
  --color-card-light: #22232a;
  --color-yellow: #f2cf2f;
  --color-yellow-hover: #ffdf47;
  --color-red: #e5242d;
  --color-red-dark: #b71922;
  --color-text: #f5f5f2;
  --color-muted: #b6b7bd;
  --color-border: rgba(242, 207, 47, 0.22);
  --color-border-subtle: rgba(255, 255, 255, 0.08);

  --color-twitch: #9146ff;
  --color-kick: #53fc18;
  --color-youtube: #ff0000;
  --color-instagram: #e1306c;
  --color-facebook: #1877f2;

  --font-base: Inter, Arial, Helvetica, sans-serif;
  --font-heading: "Arial Black", Impact, Arial, sans-serif;

  --max-width-site: 1240px;
  --max-width-text: 820px;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-yellow);
  color: #000;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 4.5rem);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  background: var(--color-yellow);
  margin-top: 10px;
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-yellow);
}

p {
  font-size: 1.08rem;
  color: var(--color-text);
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }
  h1 {
    font-size: clamp(1.55rem, 6vw, 2.4rem);
    letter-spacing: -0.02em;
  }
  h2 {
    font-size: 1.45rem;
  }
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  overflow-wrap: break-word;
}

a {
  color: var(--color-yellow);
  text-decoration: underline;
  transition: var(--transition);
}

a:hover {
  color: var(--color-yellow-hover);
}

.container {
  width: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
}

.text-container {
  max-width: var(--max-width-text);
}

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 70px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  width: 100%;
}

section:nth-child(even) {
  background-color: var(--color-bg-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 46px;
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  background-color: var(--color-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(229, 36, 45, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-red-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 36, 45, 0.5);
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: #0c0c0f;
  box-shadow: 0 4px 14px rgba(242, 207, 47, 0.3);
}

.btn-yellow:hover {
  background-color: var(--color-yellow-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 207, 47, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
  background-color: rgba(242, 207, 47, 0.05);
}

.btn-twitch {
  background-color: var(--color-twitch);
  color: #fff;
}

.btn-twitch:hover {
  background-color: #772ce8;
  color: #fff;
  transform: translateY(-2px);
}

.btn-kick {
  background-color: #191a20;
  color: var(--color-kick);
  border: 1.5px solid var(--color-kick);
}

.btn-kick:hover {
  background-color: var(--color-kick);
  color: #000;
  transform: translateY(-2px);
}

.btn-youtube {
  background-color: var(--color-youtube);
  color: #ffffff;
}

.btn-youtube:hover {
  background-color: #cc0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background-color: rgba(242, 207, 47, 0.12);
  color: var(--color-yellow);
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  max-width: 100%;
}

.badge-red {
  background-color: rgba(229, 36, 45, 0.15);
  color: #ff5e65;
  border-color: rgba(229, 36, 45, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(12, 12, 15, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--color-yellow);
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-yellow);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1020;
  align-items: center;
  justify-content: center;
}

.burger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle[aria-expanded="true"] .burger-icon span:nth-child(1) {
  transform: translateY(7.75px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .burger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .burger-icon span:nth-child(3) {
  transform: translateY(-7.75px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  .header-logo-text {
    font-size: 1.1rem;
  }
  .nav-menu {
    gap: 14px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 82vw;
    height: 100vh;
    background-color: var(--color-bg-soft);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    border-left: 1px solid var(--color-border);
    padding: 85px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 1010;
    margin-left: 0;
  }

  .nav-menu-wrapper.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: 10px;
  }
}

.hero-section {
  padding: 50px 0 70px;
  background: radial-gradient(circle at 75% 30%, rgba(242, 207, 47, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(229, 36, 45, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}

.hero-tag {
  background-color: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-yellow);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-border);
}

.hero-media-bg-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 207, 47, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: -5%;
  z-index: 0;
  filter: blur(20px);
}

.hero-media-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color-red);
  bottom: -20px;
  left: -20px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
  opacity: 0.8;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-media-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-media {
    order: -1;
  }
  .hero-media-wrapper {
    max-width: 320px;
  }
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
  margin-bottom: 2rem;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 12, 15, 0.88);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--color-yellow);
  font-weight: 600;
  border-top: 1px solid var(--color-border-subtle);
}

@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 1rem;
}

tr:last-child th, tr:last-child td {
  border-bottom: none;
}

th {
  background-color: var(--color-card-light);
  color: var(--color-yellow);
  font-weight: 700;
  font-family: var(--font-base);
  width: 32%;
}

td {
  color: var(--color-text);
}

.table-top-line {
  border-top: 4px solid var(--color-yellow);
}

@media (max-width: 768px) {
  .overview-table table, 
  .overview-table tbody, 
  .overview-table tr, 
  .overview-table th, 
  .overview-table td {
    display: block;
    width: 100%;
  }

  .overview-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .overview-table th {
    width: 100%;
    padding: 0 0 6px 0;
    background: transparent;
    font-size: 0.88rem;
    text-transform: uppercase;
    color: var(--color-yellow);
  }

  .overview-table td {
    padding: 0;
    font-size: 0.98rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card-twitch {
  border-left: 4px solid var(--color-twitch);
}

.card-kick {
  border-left: 4px solid var(--color-kick);
}

.card-youtube {
  border-left: 4px solid var(--color-youtube);
}

.card-instagram {
  border-left: 4px solid var(--color-instagram);
}

.card-header-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: inline-block;
  align-self: flex-start;
}

.card-twitch .card-header-badge {
  background: rgba(145, 70, 255, 0.2);
  color: #b9a3ff;
}

.card-kick .card-header-badge {
  background: rgba(83, 252, 24, 0.2);
  color: var(--color-kick);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 2.5rem 0;
}

.feature-block {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.feature-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(242, 207, 47, 0.12);
  line-height: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(242, 207, 47, 0.15);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.notice-panel {
  background-color: var(--color-card);
  border-left: 4px solid var(--color-yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.notice-panel-red {
  border-left-color: var(--color-red);
  background-color: rgba(229, 36, 45, 0.08);
}

.notice-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-yellow);
}

.notice-panel-red .notice-icon {
  color: var(--color-red);
}

.bonus-section-container {
  background: radial-gradient(circle at 50% 0%, rgba(242, 207, 47, 0.08) 0%, transparent 70%), var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 2rem 0;
}

@media (max-width: 600px) {
  .bonus-section-container {
    padding: 20px 16px;
  }
}

.code-card {
  background-color: var(--color-bg);
  border: 2px dashed var(--color-yellow);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin: 1.8rem 0;
}

.code-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.code-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-yellow);
  letter-spacing: 0.08em;
  user-select: all;
  margin-bottom: 6px;
}

.code-disclaimer {
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.video-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-thumb-container {
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background-color: rgba(229, 36, 45, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(229, 36, 45, 0.6);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.video-overlay-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-red);
  box-shadow: 0 0 45px rgba(229, 36, 45, 0.9);
}

.video-overlay-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  margin-left: 4px;
}

.video-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .video-card {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  background-color: var(--color-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-item summary {
  padding: 18px 20px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--color-yellow);
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-yellow);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.rg-box {
  background-color: var(--color-card);
  border-left: 6px solid var(--color-red);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 2rem 0;
}

.rg-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.2rem;
}

.badge-18plus {
  background-color: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.site-footer {
  background-color: #070709;
  border-top: 1px solid var(--color-border-subtle);
  padding: 50px 0 30px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 25px 0 25px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border-subtle);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.footer-warning {
  color: #ff6b72;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.footer-copyright {
  color: var(--color-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-ctas {
    flex-direction: column;
    width: 100%;
  }
  .footer-ctas .btn {
    width: 100%;
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--color-yellow);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 990;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-in-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
