/* CSS Variables */
:root {
  --bg-main: #050b1a;
  --bg-card: #101632;
  --bg-card-hover: #1a2342;
  --accent: #f6c144;
  --accent-soft: #ffefc4;
  --accent-dark: #d4a030;
  --text-main: #ffffff;
  --text-muted: #a9b0d2;
  --text-secondary: #7a82a0;
  --border-color: rgba(246, 193, 68, 0.2);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 193, 68, 0.4);
}

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

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(246, 193, 68, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  position: relative;
}

@media (max-width: 1023px) {
  .header__inner {
    justify-content: center;
    padding: 34px 0;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}

.header__logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .header__logo-img {
    width: 100px;
    height: 100px;
  }
}

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
    flex: 1;
  }
}

.header__nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.header__nav-link:hover {
  color: var(--accent);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: none;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header__actions {
    display: flex;
    align-items: center;
  }
}

.header__actions-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 193, 68, 0.2);
}

@media (max-width: 1023px) {
  .header__nav.mobile-open .header__actions-mobile {
    display: flex;
  }

  .header__actions-mobile .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
  }
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1000;
  position: relative;
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header__burger {
    position: absolute;
    right: 16px;
    z-index: 1001;
  }
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s ease;
  position: absolute;
  border-radius: 2px;
}

.header__burger span:nth-child(1) {
  top: 9px;
}

.header__burger span:nth-child(2) {
  top: 14px;
}

.header__burger span:nth-child(3) {
  top: 19px;
}

.header__burger.active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.active span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* Mobile Menu */
@media (max-width: 1023px) {
  .header__nav.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .header__nav.mobile-open.active {
    transform: translateX(0);
  }

  .header__nav.mobile-open .header__nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 20px;
    margin: 4px 0;
    border-radius: var(--radius-md);
    color: var(--text-main);
    transition: var(--transition);
    border-bottom: none;
    position: relative;
  }

  .header__nav.mobile-open .header__nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
  }

  .header__nav.mobile-open .header__nav-link:hover,
  .header__nav.mobile-open .header__nav-link:active {
    background: rgba(246, 193, 68, 0.1);
    color: var(--accent);
    padding-left: 28px;
  }

  .header__nav.mobile-open .header__nav-link:hover::before,
  .header__nav.mobile-open .header__nav-link:active::before {
    height: 60%;
  }

  .header__nav.mobile-open .header__actions-mobile {
    display: flex;
  }
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(5, 11, 26, 0.9) 100%),
              url('images/bannermain.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(246, 193, 68, 0.15) 0%, transparent 50%);
  z-index: 0;
}

@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    max-width: 800px;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero__feature-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
  }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero__badges {
    justify-content: flex-start;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(246, 193, 68, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
}

.badge svg {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.section__intro {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 24px;
  color: var(--text-main);
}

/* Categories */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.category-btn:hover {
  background: var(--bg-card-hover);
  color: var(--accent);
  border-color: var(--accent);
}

.category-btn--active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(246, 193, 68, 0.1);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}

.game-card__thumb {
  position: relative;
  padding-top: 133.33%;
  overflow: hidden;
  background: var(--bg-card);
}

.game-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-card__label {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  background: #e74c3c;
  color: white;
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.game-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.game-card__provider {
  font-size: 12px;
  color: var(--text-muted);
}

.game-card__btn {
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.game-card__btn:hover {
  background: var(--accent-dark);
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.advantage-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}

.advantage-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.advantage-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Bonus Card */
.bonus-card {
  background: linear-gradient(135deg, rgba(246, 193, 68, 0.1) 0%, rgba(246, 193, 68, 0.05) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .bonus-card {
    padding: 60px;
  }
}

.bonus-card__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.bonus-card__description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bonus-card__list {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-card__list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-main);
  font-size: 14px;
}

.bonus-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.spinsy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 14px;
}

.spinsy-table thead {
  background: rgba(246, 193, 68, 0.1);
}

.spinsy-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--border-color);
}

.spinsy-table td {
  padding: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(246, 193, 68, 0.1);
}

.spinsy-table tbody tr:hover {
  background: rgba(246, 193, 68, 0.05);
}

.spinsy-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 767px) {
  .spinsy-table {
    font-size: 12px;
  }
  
  .spinsy-table th,
  .spinsy-table td {
    padding: 12px 8px;
  }
}

/* Payment Badges */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.payment-badge {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
}

.payment-badge:hover {
  opacity: 1;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  text-align: center;
  padding: 24px;
}

.step__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step__icon {
  width: 64px;
  height: 64px;
  margin: 32px auto 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mobile Section */
.mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .mobile__inner {
    flex-direction: row;
    text-align: left;
    max-width: 1200px;
  }
}

.mobile__title {
  order: 1;
  width: 100%;
  margin-bottom: 0;
}

.mobile__image {
  flex: 1;
  max-width: 500px;
  order: 2;
}

.mobile__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 3;
}

@media (min-width: 1024px) {
  .mobile__title {
    display: none;
  }
  
  .mobile__image {
    order: 1;
  }
  
  .mobile__content {
    order: 2;
    align-items: flex-start;
  }
  
  .mobile__content::before {
    content: 'Spinsy sur mobile';
    display: block;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
    text-align: left;
    width: 100%;
  }
}

.mobile__banner {
  width: 100%;
  border-radius: var(--radius-lg);
}

.mobile__text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.mobile__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .mobile__features {
    align-items: flex-start;
  }
}

.mobile__features li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  text-align: left;
}

.mobile__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.mobile__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(246, 193, 68, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
}

.mobile__download-btn {
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .mobile__download-btn {
    margin-top: 16px;
  }
}

/* Security Section */
.security__content {
  max-width: 800px;
  margin: 0 auto;
}

.security__content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.security__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 20px;
  color: var(--text-main);
}

.security__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security__list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.security__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* SEO Content */
.seo-content {
  padding: 60px 0;
  background: var(--bg-card);
}

.seo-content article {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
}

.seo-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--text-main);
}

.seo-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--text-main);
}

.seo-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.5fr 2.5fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  width: 120px;
  height: auto;
}

.footer__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .footer__links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__column-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer__licenses {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer__license {
  padding: 6px 12px;
  background: rgba(246, 193, 68, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--accent);
}

.footer__disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Fixed Bottom Buttons (Mobile) */
.fixed-buttons {
  display: none;
}

@media (max-width: 1023px) {
  .fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-top: 1px solid rgba(246, 193, 68, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 997;
    backdrop-filter: blur(10px);
  }

  body {
    padding-bottom: 80px;
  }
}

.btn--fixed {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.btn--fixed.btn--outline {
  border-width: 2px;
}

.btn--fixed.btn--primary {
  box-shadow: 0 4px 12px rgba(246, 193, 68, 0.3);
}

.btn--fixed:active {
  transform: scale(0.98);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1023px) {
  .scroll-top {
    bottom: 100px;
  }
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}



