/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Casino Theme */
  --color-bg: #0a0e1a;
  --color-surface: rgba(15, 20, 35, 0.95);
  --color-surface-hover: rgba(25, 30, 50, 0.98);
  --color-primary: #FFD700;
  --color-primary-hover: #FFED4E;
  --color-accent: #C41E3A;
  --color-accent-hover: #E63950;
  --color-text: #FFFFFF;
  --color-text-muted: #D4D4D8;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  
  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Effects */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0a0e1a;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0a0e1a 0%, #1a1f35 25%, #0f1423 50%, #1a1f35 75%, #0a0e1a 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 215, 0, 0.03) 2px,
      rgba(255, 215, 0, 0.03) 4px
    );
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-hover);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

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

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15, 20, 35, 0.98) 0%, rgba(10, 14, 26, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header__logo-link img {
  height: 40px;
  width: auto;
}

.site-header__nav {
  display: flex;
  gap: 30px;
}

.site-header__nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
}

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

.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

/* Page Header */
.header {
  text-align: center;
  padding: 60px 0 40px;
}

.header__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFED4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.header__subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* Warning Section */
.warning-section {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(196, 30, 58, 0.25) 50%, rgba(239, 68, 68, 0.3) 100%);
  border: 3px solid rgba(239, 68, 68, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(239, 68, 68, 0.3);
  backdrop-filter: blur(15px);
  position: relative;
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(239, 68, 68, 0.3);
  }
  50% {
    border-color: rgba(239, 68, 68, 0.95);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(239, 68, 68, 0.5);
  }
}

.warning-section__container {
  position: relative;
  z-index: 1;
}

.warning-section__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
  20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

.warning-section__title {
  color: #EF4444;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 12px rgba(239, 68, 68, 0.7), 0 0 10px rgba(239, 68, 68, 0.5);
  letter-spacing: 0.5px;
}

.warning-section__text {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.warning-section__text strong {
  color: #ff6666;
  font-weight: 700;
}

.warning-section__link {
  color: #ff6666;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.warning-section__link:hover {
  color: #ff4444;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

.warning-section__button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  color: #ff6666;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 8px;
}

.warning-section__button:hover {
  color: #ff4444;
  background-color: rgba(239, 68, 68, 0.2);
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

/* Casino Cards */
.main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.casino-card {
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 32px;
  align-items: center;
  position: relative;
  transition: var(--transition);
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3), 0 0 20px rgba(196, 30, 58, 0.2);
  background: linear-gradient(135deg, rgba(25, 30, 50, 0.98) 0%, rgba(35, 40, 60, 0.98) 100%);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3), 0 0 20px rgba(196, 30, 58, 0.2), inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.casino-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-top-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.4);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  box-shadow: var(--shadow-sm);
}

.badge--top-choice {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge--popular {
  background: linear-gradient(135deg, #C41E3A 0%, #E63950 100%);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge--editors-pick {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.casino-card__info {
  display: flex;
  gap: 24px;
  grid-column: 1 / 3;
}

.casino-card__logo {
  width: 120px;
  height: 120px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-card__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.casino-card__logo--kwiff {
  background: rgba(255, 255, 255, 0.3) !important;
}

.casino-card__details h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.casino-card__stars {
  color: #FFD700;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.casino-card__score {
  font-weight: 700;
  color: var(--color-text);
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  flex: 1;
}

.feature__checkmark {
  color: #10B981;
  font-weight: bold;
  flex-shrink: 0;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.4));
}

.feature > *:not(.feature__checkmark) {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.offer-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 32px;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.bonus-section__amount {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.bonus-section__subtitle {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.play-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  color: #000000;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.play-btn:hover {
  background: linear-gradient(135deg, #FFED4E 0%, #FFD700 50%, #FFED4E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #000000;
  border-color: rgba(255, 215, 0, 0.8);
}

.terms-notice {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* Info Section */
.info-section {
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.info-section__title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.info-section__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: var(--radius-md);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
}

.faq-section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFED4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.faq-item {
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3), 0 0 15px rgba(196, 30, 58, 0.2);
  transform: translateY(-2px);
}

.faq-item--expanded {
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 20px rgba(196, 30, 58, 0.3);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-text);
  transition: var(--transition);
}

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

.faq-item__question-text {
  font-size: 1.2rem;
  font-weight: 700;
  flex: 1;
  padding-right: 20px;
}

.faq-item__toggle {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 400;
  min-width: 30px;
  text-align: center;
  transition: var(--transition);
}

.faq-item__question:hover .faq-item__toggle {
  transform: scale(1.1);
  color: var(--color-primary-hover);
}

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

.faq-item__answer-content {
  padding: 0 28px 28px 28px;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsible Gaming */
.responsible-gaming {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-gaming__organizations {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.org-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  padding: 20px;
  border-radius: var(--radius-md);
  width: 180px;
  transition: var(--transition);
  border: 2px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.org-card:hover {
  background-color: var(--color-surface-hover);
}

.org-card__logo-img {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

.org-card__logo-img--dark-bg {
  background: var(--color-surface);
  padding: 4px;
  border-radius: 4px;
}

.org-card__title {
  font-weight: 600;
  font-size: 0.9rem;
}

.org-card__subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.help-section {
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.help-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.98) 0%, rgba(5, 7, 13, 0.95) 100%);
  padding: 60px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer__text {
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.footer__link {
  color: var(--color-text-muted);
  text-decoration: underline;
}

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

/* Terms Page Styles */
.terms-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 40px;
}

.terms-header__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FFD700 60%, #FFED4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.terms-header__subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.terms-header__date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  opacity: 0.8;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto 60px;
}

.terms-section {
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(25, 30, 50, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.terms-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.terms-section__content {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.terms-section__content p {
  margin-bottom: 16px;
}

.terms-section__content p:last-child {
  margin-bottom: 0;
}

.terms-section__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.terms-section__content h3:first-child {
  margin-top: 0;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.terms-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.warning-text {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 3px solid var(--color-danger);
  padding: 16px;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}

.help-resources {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.help-resources h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.help-resources p {
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

.help-resources a {
  color: var(--color-primary);
  text-decoration: underline;
}

.help-resources a:hover {
  color: var(--color-primary-hover);
}

.contact-info {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

.contact-info strong {
  color: var(--color-text);
  margin-right: 8px;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--color-primary-hover);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .casino-card__info {
    grid-column: auto;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .casino-card__rating {
    justify-content: center;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }
  
  .feature {
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    padding: 4px 0;
    line-height: 1.5;
  }
  
  .info-list {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  
  .info-list .feature {
    width: 100%;
    max-width: 100%;
  }
  
  .offer-section {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 24px;
  }
  
  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(30, 25, 20, 0.95);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .site-header__nav--open {
    display: flex;
  }
  
  .site-header__menu-toggle {
    display: block;
    color: white;
  }
  
  .site-header__menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
  }
  
  .terms-header {
    padding: 40px 0 30px;
  }
  
  .terms-header__title {
    font-size: 2rem;
  }
  
  .terms-section {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .terms-section__title {
    font-size: 1.25rem;
  }
  
  .terms-content {
    padding: 0 10px;
  }
  
  .help-resources,
  .contact-info {
    padding: 20px;
  }
  
  .faq-section__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .faq-item {
    margin-bottom: 16px;
  }
  
  .faq-item__question {
    padding: 20px;
  }
  
  .faq-item__question-text {
    font-size: 1.1rem;
    padding-right: 15px;
  }
  
  .faq-item__toggle {
    font-size: 1.5rem;
  }
  
  .faq-item__answer-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }
  
  .warning-section {
    padding: 24px 20px;
    margin-bottom: 30px;
  }
  
  .warning-section__icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .warning-section__title {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 8px;
  }
  
  .warning-section__text {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .warning-section__button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}
