/* Casino Mester DK - Main Styles */

:root {
  /* Unique Color Scheme - Royal Danish Theme */
  --primary-red: #d63031;
  --primary-orange: #ff6b35;
  --secondary-gold: #f39c12;
  --accent-blue: #0984e3;
  --dark-navy: #2d3436;
  --light-gray: #b2bec3;
  --white: #ffffff;
  --background: #f8f9fa;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --success: #00b894;
  --warning: #fdcb6e;
  --danger: #e17055;
}

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

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

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--white);
}

.logo img {
  width: 32px;
  height: 32px;
}

.age-warning {
  background: var(--secondary-gold);
  color: var(--dark-navy);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Main Content */
.main-content {
  padding: 3rem 0;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-navy);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  border-radius: 2px;
}

/* Casino Cards Grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.casino-card {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

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

.casino-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.casino-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  padding: 5px;
}

.casino-info h3 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.stars {
  color: var(--secondary-gold);
}

.casino-bonus {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
  font-weight: bold;
}

.casino-features {
  list-style: none;
  margin: 1rem 0;
}

.casino-features li {
  padding: 0.3rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.casino-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.casino-button {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-red));
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.casino-terms {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.4;
}

/* Features Section */
.features {
  background: var(--white);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--dark-navy), var(--accent-blue));
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  margin: 3rem 0;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-button:hover {
  background: var(--primary-red);
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-orange);
}

.responsible-gambling {
  background: rgba(255, 107, 53, 0.1);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-orange);
}

.responsible-gambling h3 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--warning);
  color: var(--dark-navy);
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.age-restriction-icon {
  font-size: 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--light-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-content {
    text-align: center;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .casino-card {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

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

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .main-content {
    padding: 2rem 0;
  }

  .casino-card {
    padding: 1rem;
  }

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

  .age-restriction {
    flex-direction: column;
    text-align: center;
  }
}
