:root {
  /* Candy Color Palette */
  --bg-primary: #fff7fb;
  --bg-secondary: #ffe3f1;
  --bg-card: #ffffff;
  --border-color: #ffd1e8;
  
  /* Accents */
  --accent-primary: #ff4fa3;
  --accent-secondary: #6dd3ff;
  --accent-highlight: #ffd84d;
  --accent-mint: #7cf5c6;
  
  /* Text */
  --text-primary: #2b2b2b;
  --text-secondary: #6b7280;
  
  /* Layout */
  --max-width: 1200px;
  --game-max-width: 1100px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-btn: 16px;
  
  /* Spacing */
  --spacing-desktop: 90px;
  --spacing-mobile: 50px;
}

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

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-secondary);
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-padding {
  padding: var(--spacing-mobile) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--spacing-desktop) 0;
  }
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e63e8f;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--accent-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #5bc0e8;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Header */
.site-header {
  background-color: var(--bg-card);
  border-bottom: 2px solid var(--border-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent-primary);
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e0f7fa 50%, var(--bg-primary) 100%);
  border-bottom: 2px solid var(--border-color);
}

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

.hero-content h1 {
  color: var(--accent-primary);
}

.disclaimer-badge {
  display: inline-block;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-highlight);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Game Section */
.game-section {
  background-color: var(--bg-primary);
}

.game-container {
  max-width: var(--game-max-width);
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(255, 79, 163, 0.05); /* Very light pastel shadow */
}

.game-wrapper {
  width: 100%;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

@media (min-width: 992px) {
  .game-iframe {
    height: 700px;
  }
}

/* Features Section */
.features-section {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

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

.feature-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

/* CTA Section */
.cta-section {
  background: var(--accent-mint);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Simple Pages (About, Terms, Privacy, Responsible Gaming) */
.page-header {
  background-color: var(--bg-secondary);
  padding: 60px 0;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
}

.content-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: -30px;
  margin-bottom: var(--spacing-desktop);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.content-section h2 {
  color: var(--accent-primary);
  margin-top: 30px;
}

.content-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--bg-primary);
}

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

/* Footer */
.site-footer {
  background-color: var(--bg-card);
  border-top: 2px solid var(--border-color);
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.footer-nav {
  margin: 20px 0;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.footer-nav a {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-primary);
}

.legal-notice {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.legal-notice p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.legal-notice .age-limit {
  display: inline-block;
  background-color: var(--accent-primary);
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Company Info */
.company-info {
  margin-bottom: 15px;
}

.company-info strong {
  color: var(--text-primary);
}