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

:root {
  --primary-blue: #1e88e5;
  --primary-blue-dark: #1565c0;
  --gold-accent: #ffc107;
  --success-green: #4caf50;
  --bg-light: #f5f5f5;
  --text-dark: #212121;
  --text-muted: #757575;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

.header-main {
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-blue);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

nav a:hover,
nav a.active {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content */
main {
  padding: 60px 0;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-title p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Casino Card */
.casino-section {
  margin: 40px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.casino-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.casino-logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-blue);
}

.badge {
  background: var(--gold-accent);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--gold-accent);
  font-size: 24px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
}

.features {
  list-style: none;
  margin: 25px 0;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: "✓";
  color: var(--success-green);
  font-weight: bold;
  font-size: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 18px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  margin: 20px 0;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #e8f5e9;
  border-radius: 20px;
  font-size: 13px;
  color: var(--success-green);
  font-weight: 500;
}

.trust-badge::before {
  content: "✓";
  font-weight: bold;
}

/* Content Sections */
.content-section {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 30px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section h3 {
  font-size: 22px;
  margin: 25px 0 15px;
  color: var(--primary-blue);
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.content-section ul {
  margin: 15px 0 15px 30px;
}

.content-section ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Responsible Gaming Styles */
.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.help-resources {
  background: #e3f2fd;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.help-resources h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.help-resources ul {
  list-style: none;
}

.help-resources li {
  padding: 12px 0;
  font-size: 16px;
}

.help-resources a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.help-resources a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.submit-button {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.submit-button:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--gold-accent);
}

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

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-copyright {
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .casino-card {
    padding: 20px;
  }

  .content-section {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Age Badge */
.age-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold-accent);
  color: var(--text-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  box-shadow: var(--shadow-hover);
  z-index: 999;
}
