/* ===== Unique Vibrant Light Theme Casino Guide Design ===== */
/* Design Tokens */
:root {
  /* Vibrant, light color palette with high contrast */
  --new-bg: #f5f5f5; /* Light gray background */
  --new-surface: #ffffff; /* White card background */
  --new-panel: #e8f4f8; /* Light blue elevated surfaces */
  --new-text: #333333; /* Dark text for readability */
  --new-muted: #666666; /* Muted gray text */
  --new-primary: #ff6b6b; /* Vibrant coral for accents */
  --new-secondary: #4ecdc4; /* Bright teal for secondary */
  --new-accent: #ffd93d; /* Bright yellow for highlights */
  --new-line: rgba(0, 0, 0, 0.1); /* Soft borders */
  --new-glow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Light shadow */
  --new-radius: 16px; /* Softer rounded corners */
  --new-grad-hero: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%); /* Light gradient */
  --new-grad-cta: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%); /* Vibrant CTA gradient */
}

/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  min-height: 100vh;
}
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--new-grad-hero);
  color: var(--new-text);
  line-height: 1.6;
  font-size: 16px;
  position: relative;
}
/* Vibrant background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05), transparent 80%);
  opacity: 0.3;
}
/* Accessibility: Focus styles */
:where(a, button, [role="button"]):focus-visible {
  outline: 2px dashed var(--new-primary);
  outline-offset: 2px;
  border-radius: 6px;
}
/* Skip Link */
.new-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--new-surface);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--new-text);
  z-index: 1000;
  font-weight: 600;
}
.new-skip-link:focus {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
}
/* Container */
.new-container {
  width: min(1300px, 95%);
  margin-inline: auto;
}
/* Typography */
.new-section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--new-primary);
}
.new-section-lead {
  color: var(--new-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
/* Buttons */
.new-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--new-line);
  background: var(--new-surface);
  color: var(--new-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  width: max-content;
}
.new-button--primary {
  background: var(--new-grad-cta);
  color: #fff;
  border: none;
}
.new-button:hover {
  background: var(--new-secondary);
  color: #fff;
}
.new-button:active {
  opacity: 0.9;
}
/* Badges */
.new-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: var(--new-accent);
  border: 1px solid var(--new-line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--new-text);
}
.new-badge--age {
  background: var(--new-primary);
  color: #fff;
  border: none;
}
/* Hero Section */
.new-hero-section {
  padding: 4rem 0 2.5rem;
}
.new-hero-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 960px) {
  .new-hero-container {
    flex-direction: column;
  }
}
.new-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.new-hero-date {
  color: var(--new-muted);
  font-size: 1rem;
}
.new-hero-title {
  font-size: clamp(2.5rem, 1.8rem + 3vw, 3.5rem);
  line-height: 1.1;
  margin: 0.75rem 0;
}
.new-hero-title em {
  font-style: normal;
  color: var(--new-secondary);
}
.new-hero-subtitle {
  color: var(--new-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.new-advantages {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 0;
  margin-top: 1.5rem;
}
.new-advantages-item {
  background: var(--new-panel);
  border: 1px solid var(--new-line);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}
/* Casino Card */
.new-casino-card {
  background: var(--new-surface);
  border-radius: var(--new-radius);
  border: 1px solid var(--new-line);
  box-shadow: var(--new-glow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.5rem;
  transition: box-shadow 0.3s ease;
}
.new-casino-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.new-casino-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--new-grad-cta);
}
.new-casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.new-casino-logo {
  width: 120px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--new-muted);
  border-radius: 12px;
  border: 1px solid var(--new-line);
}
.new-casino-brand {
  width: 100%;
  height: auto;
}
.new-rating {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--new-panel);
  display: grid;
  place-items: center;
  position: relative;
}
.new-rating-circle {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--new-accent) 0 var(--new-rating, 95%), rgba(0, 0, 0, 0.05) var(--new-rating, 95%) 100%);
  mask: radial-gradient(circle 25px at 50% 50%, transparent 70%, #000 71%);
}
.new-rating-value {
  font-weight: 900;
  font-size: 1rem;
}
.new-casino-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.new-label {
  display: inline-block;
  background: var(--new-primary);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.new-casino-bonus {
  margin: 0;
  font-size: 1rem;
}
.new-disclaimer {
  color: var(--new-muted);
  font-size: 0.9rem;
  margin: 0;
}
/* Content Section */
.new-content-section {
  padding: 3.5rem 0;
}
.new-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.new-feature-box {
  background: var(--new-surface);
  border-radius: var(--new-radius);
  border: 1px solid var(--new-line);
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s ease;
}
.new-feature-box:hover {
  transform: translateY(-6px);
}
.new-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--new-secondary);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
}
.new-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.new-feature-desc {
  color: var(--new-muted);
  font-size: 0.95rem;
}
.new-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.new-checklist i {
  color: var(--new-accent);
  margin-right: 0.75rem;
}
/* FAQ Section */
.new-faq-section {
  padding: 2.5rem 0 4rem;
}
.new-accordion {
  background: var(--new-panel);
  border-radius: var(--new-radius);
  border: 1px solid var(--new-line);
  margin: 1rem 0;
  overflow: hidden;
}
.new-accordion-header {
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  color: var(--new-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  font-size: 1.05rem;
}
.new-accordion-icon {
  transition: transform 0.4s ease;
}
.new-accordion.is-open .new-accordion-icon {
  transform: rotate(180deg);
}
.new-accordion-content {
  padding: 0 1.25rem;
  color: var(--new-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.new-accordion.is-open .new-accordion-content {
  padding: 1.25rem;
}
/* Footer */
.new-footer {
  padding: 3rem 0;
  background: var(--new-surface);
  border-top: 2px solid var(--new-line);
}
.new-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 960px) {
  .new-footer-grid {
    flex-direction: column;
  }
}
.new-footer-logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
}
.new-footer-text {
  color: var(--new-muted);
  font-size: 1rem;
}
.new-footer-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.new-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.new-footer-link {
  color: var(--new-primary);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
}
.new-footer-link:hover {
  background: var(--new-panel);
}
.new-footer-muted {
  color: var(--new-muted);
  font-size: 0.9rem;
}
.new-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--new-line);
}
.new-footer-copyright {
  color: var(--new-muted);
  font-size: 0.9rem;
}
/* Trust Section */
.new-trust-section {
  padding: 2rem 0;
}
.new-trust-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.new-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.new-trust-item {
  background: var(--new-muted);
  border: 1px solid var(--new-line);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 60px;
  transition: transform 0.3s ease;
}
.new-trust-item:hover {
  transform: scale(1.1);
}
.new-trust-item img {
  max-height: 40px;
  width: auto;
}
/* Utilities */
.new-mt-3 {
  margin-top: 2.5rem;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .new-hero-title,
  .new-hero-subtitle,
  .new-casino-card-content,
  .new-content-section,
  .new-section-title,
  .new-footer {
    text-align: left;
  }
  .new-feature-icon {
    margin: 0 0 1rem;
  }
  .new-advantages,
  .new-trust-row,
  .new-footer-brand {
    justify-content: flex-start;
  }
  .new-hero-section {
    padding: 2.5rem 0 1.5rem;
  }
  .new-casino-card {
    max-width: 100%;
    margin-inline: 0;
  }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}