:root {
  --prize-primary: #16a34a;
  --prize-secondary: #ffd700;
  --prize-dark: #0f172a;
  --prize-light: #f8fafc;
  --prize-text: #1e293b;
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Lato", sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  background: var(--prize-light);
  color: var(--prize-text);
  line-height: 1.6;
}

.prize-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  z-index: -1;
}

.prize-header {
  position: fixed; top: 0; width: 100%;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000; padding: 1rem 0;
}

.prize-nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; padding: 0 2rem;
}

.prize-brand { text-decoration: none; color: var(--prize-text); }

.brand-logo { display: flex; align-items: center; gap: 0.75rem; }

.brand-name {
  font-family: var(--font-primary);
  font-size: 1.8rem; font-weight: 700;
  color: var(--prize-primary);
}

.nav-menu { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }

.nav-item {
  text-decoration: none; color: #64748b;
  font-weight: 500; transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active { color: var(--prize-primary); }

.nav-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.prize-btn {
  padding: 0.75rem 1.5rem; border: none;
  border-radius: 8px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
  font-family: var(--font-secondary);
}

.prize-btn.primary {
  background: linear-gradient(45deg, var(--prize-primary), var(--prize-secondary));
  color: white;
}

.prize-btn.secondary {
  background: transparent; color: var(--prize-primary);
  border: 2px solid var(--prize-primary);
}

.prize-btn.large { padding: 1rem 2rem; font-size: 1.1rem; }

.prize-main { margin-top: 80px; padding: 2rem 0; }

.hero-section {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--prize-primary), var(--prize-secondary));
  color: white; padding: 0.5rem 1rem;
  border-radius: 20px; margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem; color: var(--prize-primary);
}

.hero-subtitle {
  font-size: 1.2rem; color: #64748b;
  margin-bottom: 2rem; max-width: 600px;
  margin-left: auto; margin-right: auto;
}

.hero-disclaimer {
  margin-top: 1rem; font-size: 0.9rem; color: #64748b;
}

.games-section {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
}

.games-section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem; margin-bottom: 2rem;
  color: var(--prize-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  position: relative; background: white;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

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

.game-card img { width: 100%; height: 200px; object-fit: cover; }

.game-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(22, 163, 74, 0.9));
  padding: 1.5rem; opacity: 0; transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-overlay h3 {
  color: white; margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.play-btn {
  background: white; color: var(--prize-primary);
  text-decoration: none; padding: 0.5rem 1rem;
  border-radius: 6px; font-weight: 600;
}

.prize-footer {
  background: white; border-top: 1px solid #e2e8f0;
  margin-top: 4rem; padding: 2rem;
}

.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  flex-direction: column;
  text-align: center;
}

.footer-disclaimer {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 1rem 0;
}

.responsible-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.responsible-links a {
  color: var(--prize-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.responsible-links a:hover {
  color: var(--prize-secondary);
  text-decoration: underline;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: #64748b; text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--prize-primary); }

.modal {
  display: none; position: fixed; z-index: 2000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: white; margin: 15% auto;
  padding: 2rem; border-radius: 12px;
  width: 90%; max-width: 400px; text-align: center;
}

.age-buttons {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 2rem;
}

.game-frame {
  width: 100%; height: 600px; border: none;
  border-radius: 12px;
}

.center { display: flex; justify-content: center; margin: 2rem 0; }

/* About Page Styles */
.about-hero {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
  background: white; border-radius: 12px;
  margin-bottom: 3rem; box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
}

.about-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--prize-primary); margin-bottom: 1.5rem;
}

.mission-section, .values-section, .team-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}

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

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem; color: var(--prize-primary);
  margin-bottom: 1rem;
}

.mission-content {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 3rem; align-items: center;
}

.mission-stats {
  display: flex; flex-direction: column; gap: 1rem;
}

.stat-card {
  background: white; padding: 1.5rem;
  border-radius: 8px; text-align: center;
  border: 2px solid var(--prize-primary);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2rem; color: var(--prize-primary);
  font-weight: 700;
}

.values-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; margin-top: 2rem;
}

.value-card, .team-card {
  background: white; padding: 2rem;
  border-radius: 12px; text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.value-card:hover, .team-card:hover {
  border-color: var(--prize-primary);
  transform: translateY(-5px);
}

.value-icon, .team-avatar {
  font-size: 2.5rem; margin-bottom: 1rem;
  display: block;
}

.value-card h3, .team-card h3 {
  font-family: var(--font-primary);
  color: var(--prize-primary); margin-bottom: 1rem;
}

.team-role {
  color: var(--prize-secondary); font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-cta {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
}

.cta-content {
  background: white; padding: 3rem;
  border-radius: 12px;
  border: 2px solid var(--prize-primary);
}

.cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center; margin-top: 2rem;
}

/* Contact Page Styles */
.contact-hero {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2rem;
}

.contact-card {
  background: white; padding: 2rem;
  border-radius: 12px; text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--prize-primary);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem; margin-bottom: 1rem;
  display: block;
}

.contact-methods {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; text-align: center;
}

.contact-methods h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem; font-weight: 700;
  color: var(--prize-primary); margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 2rem;
}

.contact-card {
  background: white; border: 2px solid #e2e8f0;
  border-radius: 12px; padding: 2rem;
  text-align: center; transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--prize-primary);
}

.contact-card h3 {
  font-family: var(--font-primary);
  color: var(--prize-primary);
  margin-bottom: 1rem; font-size: 1.3rem;
}

.contact-card p {
  color: var(--prize-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-card a {
  color: var(--prize-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--prize-primary);
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Office Info Styles */
.office-info {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; background: #f8fafc;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem; margin-top: 2rem;
}

.office-card {
  background: white; border: 2px solid #e2e8f0;
  border-radius: 12px; padding: 2rem;
  transition: all 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  border-color: var(--prize-primary);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
}

.office-card h3 {
  font-family: var(--font-primary);
  color: var(--prize-primary);
  margin-bottom: 1.5rem; font-size: 1.4rem;
}

.office-details {
  margin-bottom: 2rem;
}

.office-details p {
  margin-bottom: 1rem; line-height: 1.6;
  color: var(--prize-text);
}

.office-details strong {
  color: var(--prize-primary);
  font-weight: 600;
}

/* Mobile Styles for Office */
@media (max-width: 768px) {
  .office-info {
    padding: 2rem 1rem;
  }
  
  .office-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .office-card {
    padding: 1.5rem;
  }
}

/* Contact Form Styles */
.contact-form-section {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem; background: white;
}

.form-container {
  max-width: 600px; margin: 0 auto;
}

.contact-form {
  background: #f8fafc; padding: 2rem;
  border-radius: 12px; border: 2px solid #e2e8f0;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block; margin-bottom: 0.5rem;
  font-weight: 600; color: var(--prize-primary);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem;
  border: 2px solid #e2e8f0; border-radius: 8px;
  font-size: 1rem; transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--prize-primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer; font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto; margin: 0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section {
    padding: 2rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

.contact-card h3 {
  font-family: var(--font-primary);
  color: var(--prize-primary); margin-bottom: 1rem;
}

/* Modal Styles */
.modal-content.prize {
  border: 2px solid var(--prize-primary);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.3);
}

.auth-form {
  display: flex; flex-direction: column; gap: 1rem;
}

.auth-form input, .auth-form select, .auth-form textarea {
  padding: 0.75rem; border: 2px solid #e2e8f0;
  border-radius: 6px; background: var(--prize-light);
  color: var(--prize-text); font-size: 1rem;
}

.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus {
  outline: none; border-color: var(--prize-primary);
}

.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: #64748b;
}

.checkbox-label input[type="checkbox"] { width: auto; }

.checkbox-label a {
  color: var(--prize-primary); text-decoration: none;
}

.modal-footer {
  text-align: center; margin-top: 1rem;
  color: #64748b; font-size: 0.9rem;
}

.modal-footer a {
  color: var(--prize-primary); text-decoration: none;
}

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--prize-surface); border-top: 2px solid var(--prize-primary);
  padding: 1rem; z-index: 1000; box-shadow: 0 -2px 10px rgba(22, 163, 74, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.prize-btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.prize-btn.outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #64748b;
}

.prize-btn.outline:hover {
  background: #f8fafc;
  border-color: var(--prize-primary);
}

/* About Page Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--prize-primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--prize-muted);
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--prize-text);
  margin-bottom: 1.5rem;
}

.mission-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--prize-primary);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--prize-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--prize-muted);
  font-weight: 600;
}

/* Responsible Gaming Page Styles */
.responsible-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.responsible-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--prize-primary);
}

.responsible-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--prize-text);
  max-width: 800px;
  margin: 0 auto;
}

.guidelines-section, .tools-section, .warning-signs, .support-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.guidelines-section h2, .tools-section h2, .warning-signs h2, .support-section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--prize-primary);
}

.guidelines-grid, .tools-grid, .warning-grid, .support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guideline-card, .tool-card, .support-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guideline-card:hover, .tool-card:hover, .support-card:hover {
  transform: translateY(-5px);
  border-color: var(--prize-primary);
}

.guideline-icon, .tool-icon, .support-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.guideline-card h3, .tool-card h3, .support-card h3 {
  font-family: var(--font-primary);
  color: var(--prize-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guideline-card p, .tool-card p, .support-card p {
  color: var(--prize-text);
  line-height: 1.6;
}

.cookie-content p { color: #64748b; margin: 0; }

.cookie-content a {
  color: var(--prize-primary); text-decoration: none;
}

/* Game/Slot Page Styles */
.game-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.game-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.game-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--prize-primary), var(--prize-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--prize-text);
  margin-bottom: 2rem;
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--prize-surface);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  color: var(--prize-text);
}

.stat-icon {
  font-size: 1.3rem;
}

.game-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem;
}

.game-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border: 3px solid var(--prize-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--prize-dark);
}

.game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.game-info {
  background: var(--prize-surface);
  border: 2px solid var(--prize-border);
  border-radius: 8px;
  padding: 2rem;
}

.game-info h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--prize-primary);
  margin-bottom: 1rem;
}

.game-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.related-games {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.related-games h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--prize-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.play-btn {
  background: var(--prize-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: var(--prize-secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .prize-nav { 
    flex-direction: column; 
    gap: 1rem; 
    padding: 1rem;
  }
  
  .nav-menu { 
    order: 3; 
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-item {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .nav-actions { 
    order: 2; 
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .prize-btn {
    width: 100%;
    text-align: center;
  }
  
  .games-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  
  .hero-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-content {
    margin: 20% auto;
    padding: 1.5rem;
    width: 95%;
  }
  
  .footer-content { 
    flex-direction: column; 
    gap: 1rem; 
    text-align: center;
  }
  
  .age-buttons { 
    flex-direction: column; 
  }
  
  .mission-content { 
    grid-template-columns: 1fr; 
  }
  
  .cta-buttons { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .cookie-content { 
    flex-direction: column; 
    text-align: center; 
  }
  
  .game-container {
    grid-template-columns: 1fr;
  }
  
  .game-frame-wrapper {
    height: 400px;
  }
  
  .game-hero, .game-section, .related-games {
    padding: 2rem 1rem;
  }
  
  .game-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}
