:root {
  --color-primary: #ffffff;
  --color-secondary: #f8f9fa;
  --color-accent: #007bff;
  --color-text-light: #6c757d;
  --color-text-dark: #212529;
  --color-gradient-start: #ffffff;
  --color-gradient-end: #f8f9fa;
  --color-card-bg: rgba(255, 255, 255, 0.95);
  --color-border: rgba(0, 0, 0, 0.1);
  --color-button-gradient-start: #007bff;
  --color-button-gradient-end: #0056b3;
  --color-faq-title: #007bff;
  --color-faq-icon-bg: #007bff;
  --color-footer-bg: #d2691e;
  --color-cookie-banner-bg: linear-gradient(90deg, #ffffff, #f8f9fa);
  --color-header-bg: #ffffff;
  --color-header-shadow: rgba(0, 0, 0, 0.1);
  --color-casino-card-bg: #d2691e;
  --color-casino-card-gradient: linear-gradient(135deg, #d2691e, #b8860b);
  --color-casino-card-text: #ffffff;
  --color-casino-card-border: #cd853f;
  --font-family-primary: 'Inter', sans-serif;
  --font-family-secondary: 'Poppins', sans-serif;
}

/* ===== Global Reset ===== */
html, body {
  height: 100%;
}

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

/* ===== Body & Background ===== */
body {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--color-text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* ===== Utility Container ===== */
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  background: var(--color-header-bg);
  box-shadow: 0 2px 20px var(--color-header-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text-dark);
}

.header__logo-svg {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-family: var(--font-family-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.header__cta {
  background: linear-gradient(135deg, var(--color-button-gradient-start), var(--color-button-gradient-end));
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ===== Age Gate Popup ===== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.age-gate__dialog {
  background: var(--color-primary);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

.age-restriction-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent), #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.age-gate h2 {
  font-family: var(--font-family-secondary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.age-gate p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-text-light);
}

.age-gate__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-button-gradient-start), var(--color-button-gradient-end));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: white;
}

/* ===== Main Content ===== */
main {
  flex: 1;
  padding-top: 0;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.1) 100%), url('/img/neon-blue-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.update-date {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-family-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-card-bg);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ===== Casino Card ===== */
.casino-card {
  background: var(--color-casino-card-gradient);
  border: 2px solid var(--color-casino-card-border);
  border-radius: 25px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 15px 50px rgba(210, 105, 30, 0.3);
  backdrop-filter: blur(15px);
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stars {
  color: #ffd700;
  font-size: 1.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-value {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-casino-card-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.votes {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.card-right {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
}

.card-tag {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-casino-card-text);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-casino-card-text);
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-gradient {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: var(--color-casino-card-bg);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.min-deposit {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Info Section ===== */
.info-section {
  padding: 4rem 0;
  background: var(--color-secondary);
}

.info-section h2 {
  font-family: var(--font-family-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.info-section > p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.info-item {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
  font-family: var(--font-family-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.info-item p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-item ul {
  list-style: none;
  padding: 0;
}

.info-item li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

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

/* ===== FAQ Section ===== */
.faq-main-title {
  font-family: var(--font-family-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin: 3rem 0 2rem;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-title {
  padding: 1.5rem 2rem;
  background: var(--color-secondary);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.faq-title::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-title::after {
  transform: rotate(45deg);
}

.faq-text {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--color-text-light);
  line-height: 1.6;
  opacity: 0;
}

.faq-item.open .faq-text {
  padding: 1.5rem 2rem;
  max-height: 500px;
  opacity: 1;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-footer-bg);
  padding: 3rem 0 1rem;
  border-top: 3px solid #b8860b;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.trust-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-badge img {
  max-width: 80px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.trust-badge:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.age-restriction-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-footer-bg);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer__inner {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-cookie-banner-bg);
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__text {
  color: var(--color-text-light);
  margin: 0;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn--accept {
  background: var(--color-accent);
  color: white;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* ===== Contact Details ===== */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-item h3 i {
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--color-text-light);
  margin: 0;
}

/* ===== Cookie List ===== */
.cookie-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.cookie-item {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-item h4 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-secondary);
}

.cookie-item p {
  margin: 0.25rem 0;
  color: var(--color-text-light);
}

.cookie-item p strong {
  color: var(--color-text-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header__inner {
    padding: 0 15px;
  }

  .header__logo-text {
    font-size: 1.2rem;
  }

  .header__cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%), url('img/neon-blue-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .casino-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }

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

  .card-logo img {
    width: 120px;
  }

  .bonus-text {
    font-size: 1.3rem;
  }

  .btn-gradient {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .faq-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-badges {
    gap: 1rem;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%), url('img/neon-blue-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  .age-gate__dialog {
    padding: 2rem;
    margin: 1rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .info-item {
    padding: 1.5rem;
  }
}