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

:root {
  --primary: #121212;
  --dark: #191919;
  --darker: #0e0e0e;
  --light: #E5E5E5;
  --secondary: #FFD700;
  --secondary-light: #FFEAA7;
  --warning: #FF6B6B;
  --gray-800: #333333;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-400: #999999;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--primary);
  color: var(--light);
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%23333333' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--secondary), #FFF8DC, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-desc {
  max-width: 768px;
  margin: 0 auto;
  color: var(--light);
  font-size: 1.125rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--secondary);
  margin: 0 auto 1.5rem;
}

/* Header and Navigation */
.header {
  background-color: var(--primary);
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--secondary), #FFF8DC, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: none;
}

.nav-link {
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--secondary);
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--dark);
  margin-top: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: absolute;
  width: calc(100% - 3rem);
  z-index: 100;
  left: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.mobile-link:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1606167668584-78701c57f13d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.hero-container {
  text-align: center;
  z-index: 1;
}

.uk-flag {
  display: inline-block;
  margin-bottom: 1rem;
}

.uk-flag img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  object-fit: cover;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--secondary), #FFF8DC, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 768px;
  margin: 0 auto 2rem;
}

.cta-button,
.bonus-button {
  display: inline-block;
  background: linear-gradient(to right, var(--secondary), #FFF8DC, var(--secondary));
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  text-align: center;
}

.cta-button:hover,
.bonus-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-text {
    font-size: 1.5rem;
  }
}

/* Casino Listings */
.casino-section {
  padding: 4rem 0;
  background-color: var(--primary);
}

.casino-card {
  background-color: var(--dark);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-800);
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.casino-card-inner {
  display: flex;
  flex-direction: column;
}

.casino-logo-section {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--gray-800);
}

.casino-logo-container {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #bd583a;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.casino-logo {
  width: 100%;
  height: auto;
}

.casino-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-right: 0.5rem;
}

.stars {
  display: flex;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.star::before {
  content: "★";
  position: absolute;
  color: var(--gray-400);
}

.star.filled::before {
  color: var(--secondary);
}

.star.half-filled::before {
  color: var(--secondary);
  width: 50%;
  overflow: hidden;
}

.reviews-count {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.casino-details {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.casino-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.casino-license {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.casino-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--secondary);
}

.feature-icon.check::before {
  content: "✓";
  font-weight: bold;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.exclusive-badge {
  background-color: rgba(255, 215, 0, 0.2);
  color: var(--secondary);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.terms-text {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .casino-card-inner {
    flex-direction: row;
  }
  
  .casino-logo-section {
    width: 25%;
    border-bottom: none;
    border-right: 1px solid var(--gray-800);
  }
  
  .casino-details {
    width: 75%;
  }
  
  .casino-info {
    display: flex;
    flex-direction: column;
  }
  
  .casino-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .casino-details {
    display: flex;
    justify-content: space-between;
  }
  
  .casino-info {
    width: 70%;
  }
  
  .casino-cta {
    width: 30%;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  
  .bonus-button {
    width: auto;
  }
}

/* About Us Section */
.about-section {
  padding: 4rem 0;
  background-color: var(--dark);
}

.about-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.about-image-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-text {
  width: 100%;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.review-process {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
}

.review-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-right: 0.75rem;
  line-height: 1;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image-wrapper {
    width: 33.333%;
    margin-bottom: 0;
    margin-right: 2rem;
  }
  
  .about-text {
    width: 66.667%;
  }
  
  .review-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--primary);
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--dark);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-toggle {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  background-color: var(--gray-800);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.25rem;
  max-height: 500px;
}

/* Responsible Gambling Section */
.responsible-section {
  padding: 4rem 0;
  background-color: var(--dark);
}

.responsible-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.age-restriction {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.age-logo {
  height: 3rem;
  width: 3rem;
}

.responsible-content {
  background-color: var(--primary);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 2.5rem;
}

.responsible-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.warning-signs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.warning-sign {
  display: flex;
  align-items: flex-start;
}

.warning-icon {
  display: inline-block;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  color: var(--warning);
}

.warning-icon::before {
  content: "⚠";
  position: absolute;
  top: 0;
  left: 0;
}

.warning-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.warning-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.resource {
  background-color: var(--dark);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s;
}

.resource:hover {
  transform: scale(1.05);
}

.resource-logo {
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.resource-logo.gamble-aware {
  background-color: #ffc845;
  border-radius: 0.25rem;
  color: #333;
  padding: 0.5rem;
}

.resource-logo.gamble-aware::after {
  content: "BeGambleAware";
  font-weight: bold;
}

.resource-logo.gamcare {
  background-color: #e11383;
  border-radius: 0.25rem;
  color: white;
  padding: 0.5rem;
}

.resource-logo.gamcare::after {
  content: "GamCare";
  font-weight: bold;
}

.resource-logo.ukgc {
  background-color: #1a1a1a;
  border-radius: 0.25rem;
  color: white;
  padding: 0.5rem;
}

.resource-logo.ukgc::after {
  content: "UK Gambling Commission";
  font-weight: bold;
  font-size: 0.875rem;
}

.resource-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.resource-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

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

.help-button {
  display: inline-block;
  background-color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--secondary);
  color: var(--light);
  transition: background-color 0.3s, color 0.3s;
}

.help-button:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

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

/* Footer */
.footer {
  background-color: black;
  padding: 2.5rem 0;
}

.footer-main {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-logo {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--secondary), #FFF8DC, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-desc {
  color: var(--gray-400);
  max-width: 32rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-heading {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--gray-400);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
}

.footer-logos {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-item {
  height: 2.5rem;
  width: 2.5rem;
  background-color: #333;
  border-radius: 0.25rem;
}

.age-restriction-small {
  background-color: red;
  position: relative;
}

.age-restriction-small::after {
  content: "18+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.ukgc-small {
  background-color: #1a1a1a;
}

.gamble-aware-small {
  background-color: #ffc845;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-info {
    width: 33.333%;
    margin-bottom: 0;
  }
  
  .footer-links {
    width: 66.667%;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-logos {
    margin-bottom: 0;
  }
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .casino-name {
    font-size: 2rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
}

/* Additional Utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Additional styles for the legal pages */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.max-w-4xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-dark {
  background-color: var(--dark);
}

.p-8 {
  padding: 2rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-3xl {
  font-size: 1.875rem;
}

.md\:text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-secondary {
  color: var(--secondary);
}

.prose {
  max-width: 65ch;
  color: var(--light);
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.prose a {
  color: var(--secondary);
  text-decoration: underline;
}

.prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.legal-content {
  line-height: 1.7;
}

/* Custom counters for lists */
.ml-8 {
  margin-left: 2rem;
}