:root {
  --background: #1a1625;
  --foreground: #f8f8f8;
  --card: #221e2d;
  --card-foreground: #f8f8f8;
  --primary: #d4a853;
  --primary-foreground: #1a1625;
  --secondary: #2a2538;
  --secondary-foreground: #f8f8f8;
  --muted: #342f42;
  --muted-foreground: #a0a0a0;
  --accent: #e05555;
  --accent-foreground: #f8f8f8;
  --border: #3d3750;
  --gold-dark: #b8923f;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--muted);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: rgba(26, 22, 37, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .header {
    padding: 16px 32px;
  }
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .logo {
    height: 36px;
  }
}

.header-nav {
  display: none;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-btn {
  padding: 10px 20px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .header-btn {
    padding: 12px 24px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .hero {
    min-height: 700px;
    padding-top: 70px;
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.5s ease-out;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #2a2538 0%, #1a1625 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide img.desktop-banner {
  display: none;
}

.hero-slide img.mobile-banner {
  display: block;
}

@media (min-width: 768px) {
  .hero-slide img.desktop-banner {
    display: block;
  }
  .hero-slide img.mobile-banner {
    display: none;
  }
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background) 0%, rgba(26, 22, 37, 0.6) 40%, rgba(26, 22, 37, 0.3) 100%);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(42, 37, 56, 0.8);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .slider-btn {
    padding: 12px;
  }
}

.slider-btn:hover {
  background: var(--secondary);
}

.slider-btn-prev {
  left: 12px;
}

.slider-btn-next {
  right: 12px;
}

@media (min-width: 768px) {
  .slider-btn-prev {
    left: 24px;
  }
  .slider-btn-next {
    right: 24px;
  }
}

.slider-dots {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-dots {
    bottom: 160px;
  }
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 0 16px 100px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 32px 64px;
  }
}

.hero-content h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 52px;
  }
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .highlight {
  color: var(--primary);
}

.hero-content p {
  font-size: 15px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    max-width: none;
  }
}

.hero-buttons .btn-primary {
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

/* Section Styles */
.section {
  padding: 48px 0;
}

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

.section-alt {
  background: rgba(42, 37, 56, 0.3);
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

/* Trust Bar */
.trust-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .trust-bar {
    padding: 24px;
    margin-bottom: 48px;
  }
}

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

@media (min-width: 768px) {
  .trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .trust-item {
    font-size: 14px;
  }
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .trust-item svg {
    width: 20px;
    height: 20px;
  }
}

.trust-item strong {
  color: var(--foreground);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

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

.benefit-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }
}

.benefit-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .benefit-card h3 {
    font-size: 16px;
  }
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .benefit-card p {
    font-size: 14px;
  }
}

/* Bonus Table */
.bonus-table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .bonus-table-wrapper {
    margin-bottom: 32px;
  }
}

.bonus-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.bonus-table th,
.bonus-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .bonus-table th,
  .bonus-table td {
    padding: 16px 20px;
  }
}

.bonus-table th {
  background: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .bonus-table th {
    font-size: 14px;
  }
}

.bonus-table td {
  font-size: 13px;
  color: var(--muted-foreground);
  vertical-align: top;
}

@media (min-width: 768px) {
  .bonus-table td {
    font-size: 14px;
  }
}

.bonus-table td strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 4px;
}

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

.bonus-table tr:hover td {
  background: rgba(42, 37, 56, 0.3);
}

/* Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

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

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

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

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

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 37, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .game-card-title {
    font-size: 14px;
  }
}

.game-card .btn {
  padding: 8px 16px;
  font-size: 12px;
}

/* Game Categories */
.game-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

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

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

.game-category {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

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

.game-category:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.game-category h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .game-category h3 {
    font-size: 16px;
  }
}

.game-category p {
  font-size: 13px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .game-category p {
    font-size: 14px;
  }
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .providers-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

.provider-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  min-height: 60px;
}

@media (min-width: 768px) {
  .provider-card {
    padding: 20px;
    min-height: 80px;
  }
}

.provider-card:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.provider-card img {
  max-height: 28px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .provider-card img {
    max-height: 36px;
  }
}

.provider-card:hover img {
  opacity: 1;
}

/* Providers Text */
.providers-text {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 24px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .providers-text {
    font-size: 14px;
    margin-top: 32px;
  }
}

.providers-text strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 8px;
}

/* Payment Features */
.payment-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .payment-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
}

.payment-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .payment-feature {
    flex-direction: row;
    text-align: left;
    padding: 20px;
  }
}

.payment-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.payment-feature h3 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .payment-feature h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.payment-feature p {
  font-size: 12px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .payment-feature p {
    font-size: 14px;
  }
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

@media (min-width: 1024px) {
  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

.payment-method {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  min-height: 50px;
}

@media (min-width: 768px) {
  .payment-method {
    padding: 16px 24px;
    min-height: 60px;
  }
}

.payment-method:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.payment-method img {
  max-height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .payment-method img {
    max-height: 32px;
  }
}

.payment-method:hover img {
  opacity: 1;
}

/* Payment Info Text */
.payment-info {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 24px;
  font-size: 13px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .payment-info {
    font-size: 14px;
    margin-top: 32px;
  }
}

.payment-info strong {
  color: var(--foreground);
}

/* VIP Table */
.vip-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .vip-table-wrapper {
    margin-top: 32px;
  }
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 600px;
}

.vip-table th,
.vip-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .vip-table th,
  .vip-table td {
    padding: 16px 20px;
  }
}

.vip-table th {
  background: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .vip-table th {
    font-size: 14px;
  }
}

.vip-table td {
  font-size: 13px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .vip-table td {
    font-size: 14px;
  }
}

.vip-table td:first-child {
  font-weight: 600;
  color: var(--foreground);
}

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

.vip-table tr:hover td {
  background: rgba(42, 37, 56, 0.3);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
  }
}

.faq-question:hover {
  background: rgba(42, 37, 56, 0.3);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .faq-icon {
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }
}

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

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 16px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14px;
  }
}

/* Responsible Gaming */
.responsible-gaming-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .responsible-gaming-card {
    padding: 48px;
  }
}

.responsible-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .responsible-header {
    margin-bottom: 24px;
  }
}

.responsible-icon {
  width: 44px;
  height: 44px;
  background: rgba(224, 85, 85, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .responsible-icon {
    width: 48px;
    height: 48px;
  }
}

.responsible-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .responsible-icon svg {
    width: 24px;
    height: 24px;
  }
}

.responsible-header h2 {
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .responsible-header h2 {
    font-size: 28px;
  }
}

.responsible-gaming-card > p {
  color: var(--muted-foreground);
  margin-bottom: 20px;
  max-width: 800px;
  line-height: 1.6;
  font-size: 14px;
}

@media (min-width: 768px) {
  .responsible-gaming-card > p {
    margin-bottom: 24px;
  }
}

.responsible-tools {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .responsible-tools {
    margin-bottom: 32px;
  }
}

.responsible-tools h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .responsible-tools h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.responsible-tools ul {
  list-style: none;
  color: var(--muted-foreground);
  font-size: 13px;
}

@media (min-width: 768px) {
  .responsible-tools ul {
    font-size: 14px;
  }
}

.responsible-tools li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .responsible-tools li {
    padding: 8px 0;
    padding-left: 24px;
  }
}

.responsible-tools li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.responsible-tools li strong {
  color: var(--foreground);
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .responsible-links {
    gap: 16px;
    font-size: 14px;
  }
}

.responsible-links span {
  color: var(--foreground);
  font-weight: 600;
}

.responsible-links a {
  transition: color 0.2s;
  color: var(--primary);
}

.responsible-links a:hover {
  color: var(--foreground);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(42, 37, 56, 0.5) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
}

.cta-section > .container > p {
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

@media (min-width: 768px) {
  .cta-section > .container > p {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.cta-note {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .cta-note {
    font-size: 14px;
    margin-top: 24px;
  }
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

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

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

@media (min-width: 768px) {
  .contact-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.contact-card p {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .contact-card p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.contact-card strong {
  color: var(--foreground);
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
}

.footer-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.footer-section p {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-section p {
    font-size: 14px;
  }
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .footer-section li {
    margin-bottom: 8px;
  }
}

.footer-section a {
  font-size: 13px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .footer-section a {
    font-size: 14px;
  }
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-license {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-license {
    padding: 24px;
    margin-bottom: 32px;
  }
}

.footer-license h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .footer-license h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.footer-license p {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .footer-license p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.footer-license strong {
  color: var(--foreground);
}

.footer-license a {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: 32px;
  }
}

.footer-bottom p {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-bottom p {
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.footer-bottom .age-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 85, 85, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 768px) {
  .footer-bottom .age-warning {
    font-size: 14px;
  }
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  z-index: 50;
  display: flex;
  gap: 10px;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
}

/* Add padding for mobile CTA */
main {
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  main {
    padding-bottom: 0;
  }
}

/* Center text utility */
.text-center {
  text-align: center;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 32px;
}

/* Scroll margin for anchor links */
[id] {
  scroll-margin-top: 80px;
}
