/* Danish Casino Portal - Main Styles */

/* CSS Variables for Nordic Color Scheme */
:root {
  --primary-blue: #1a237e;
  --secondary-blue: #283593;
  --accent-gold: #ffd700;
  --accent-red: #c62828;
  --dark-navy: #0d1421;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #212121;
  --text-light: #666666;
  --border-light: #e0e0e0;
  --success-green: #388e3c;
  --warning-orange: #f57c00;
}

/* Reset and Base Styles */
* {
  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(--light-gray);
}

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

/* Age Verification Banner */
.age-banner {
  background: linear-gradient(135deg, var(--accent-red), #d32f2f);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.age-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.help-link {
  color: white;
  text-decoration: underline;
  font-weight: normal;
}

.help-link:hover {
  text-decoration: none;
}

/* Header */
.header {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.logo .dk {
  color: var(--accent-gold);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  border: 2px solid var(--accent-gold);
}

/* Casino Section */
.casino-section {
  padding: 80px 0;
  background: white;
}

.casino-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.casino-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

/* Casino Cards */
.casino-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

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

.casino-card.featured {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, #fff9c4, white);
}

.casino-card.featured::before {
  content: "⭐ ANBEFALET";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent-gold);
  color: var(--dark-navy);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.casino-card.new {
  border-color: var(--success-green);
}

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

.casino-logo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.casino-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.casino-info h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.casino-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge.mobile {
  background: var(--success-green);
  color: white;
}

.badge.new-casino {
  background: var(--warning-orange);
  color: white;
}

.rating {
  color: var(--accent-gold);
  font-weight: 600;
}

.reviews {
  color: var(--text-light);
  font-size: 0.9rem;
}

.casino-offer {
  margin-bottom: 25px;
}

.bonus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--success-green);
  margin-bottom: 10px;
}

.terms {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  background: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

.play-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--success-green), #4caf50);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #4caf50, var(--success-green));
}

/* Load More Button */
.load-more {
  text-align: center;
}

.load-more-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: white;
  padding: 60px 0;
}

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

.newsletter h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

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

.newsletter-form button {
  background: var(--accent-gold);
  color: var(--dark-navy);
  border: none;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.feature {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* Footer */
.footer {
  background: var(--dark-navy);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
}

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

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

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.age-reminder {
  background: rgba(198, 40, 40, 0.2);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-red);
  margin-top: 20px;
}

.age-reminder strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
