/* ====================================
   WORLD LEADING CASINOS - PREMIUM DESIGN
   ==================================== */

/* CSS Variables */
:root {
  /* Colors */
  --betsson-orange: #ff0000;
  --deep-blue: #1a2332;
  --dark-slate: #2d3748;
  --white: #FFFFFF;
  --light-gray: #c3e6ff;
  --medium-gray: #718096;
  --border-gray: #e2e8f0;
  --success-green: #b9ae10;
  --gold: #0bf52a;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.10), 0 3px 7px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.12), 0 6px 10px -3px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.10);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.20);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--dark-slate);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--deep-blue);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-highlight {
  color: var(--betsson-orange);
}

.nav {
  display: flex;
  gap: var(--space-2xl);
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--betsson-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.75rem;
}

.mobile-nav {
  display: none;
  background: var(--deep-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-md);
}

.mobile-nav-link {
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 121, 0, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(26, 35, 50, 0.95) 0%, 
    rgba(26, 35, 50, 0.85) 30%,
    rgba(255, 121, 0, 0.3) 70%,
    rgba(255, 157, 77, 0.4) 100%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, 
    rgba(255, 121, 0, 0.2) 0%, 
    transparent 70%);
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1100px;
  padding: var(--space-3xl) var(--space-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 121, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 121, 0, 0.3);
  border-radius: var(--radius-full);
  color: var(--betsson-orange);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: var(--betsson-orange);
  background: linear-gradient(135deg, var(--betsson-orange), #ff9d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-badge {
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Featured Card */
.featured-card {
  background: linear-gradient(135deg, 
    var(--betsson-orange) 0%, 
    #ff6b4a 50%, 
    #ff5533 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 700px;
  margin: 0 auto;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
  opacity: 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.featured-logo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.featured-logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--betsson-orange);
  text-transform: lowercase;
}

.featured-info {
  color: var(--white);
  text-align: left;
}

.star-rating {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.star {
  color: var(--gold);
  font-size: 1.25rem;
}

.rating-text {
  margin-left: var(--space-sm);
  font-weight: 700;
  font-size: 1.125rem;
}

.featured-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.featured-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.featured-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--white);
  color: var(--betsson-orange);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.featured-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-md);
}

/* Section */
.section {
  padding: var(--space-5xl) 0;
}

.section-alt {
  background: var(--light-gray);
}

.section-dark {
  background: var(--deep-blue);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Casino Cards */
.casino-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  margin-bottom: var(--space-xl);
  transition: all 0.3s ease;
}

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

.casino-card-content {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

.casino-logo {
  background: linear-gradient(135deg, 
    var(--betsson-orange) 0%, 
    #ff6b4a 50%, 
    #ff5533 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.casino-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  text-transform: lowercase;
}

.casino-info {
  flex: 1;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.casino-stars {
  display: flex;
  gap: 2px;
}

.casino-rating-text {
  font-weight: 700;
  color: var(--dark-slate);
}

.casino-bonus-badge {
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.casino-description {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.casino-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark-slate);
}

.check-icon {
  color: var(--success-green);
  font-size: 0.875rem;
}

.casino-cta {
  display: flex;
  align-items: center;
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn-orange {
  background: var(--betsson-orange);
  color: var(--white);
}

.btn-orange:hover {
  background: #e66d00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* License Section */
.license-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.license-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon {
  font-size: 3rem;
  color: var(--success-green);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  color: var(--success-green);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}

.license-title {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--dark-slate);
}

.license-description {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.license-details {
  background: rgba(247, 250, 252, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.license-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.license-detail:last-child {
  margin-bottom: 0;
}

.license-detail-icon {
  color: var(--success-green);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.license-detail-title {
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.license-detail-text {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.license-disclaimer {
  font-size: 0.75rem;
  color: var(--medium-gray);
  margin-top: var(--space-xl);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-text h2 {
  color: var(--dark-slate);
}

.about-text .highlight {
  color: var(--betsson-orange);
}

.about-description {
  font-size: 1.125rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  display: flex;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  background: rgba(255, 121, 0, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: var(--betsson-orange);
  font-size: 1.75rem;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-slate);
}

.feature-content p {
  color: var(--medium-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Mobile Section */
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.mobile-image {
  display: flex;
  justify-content: center;
}

.mobile-image img {
  max-width: 400px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.mobile-content h2 {
  color: var(--dark-slate);
}

.mobile-content .highlight {
  color: var(--betsson-orange);
}

.mobile-description {
  font-size: 1.125rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.mobile-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  display: flex;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.mobile-feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.mobile-feature-icon {
  color: var(--betsson-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mobile-feature-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--dark-slate);
}

.mobile-feature-content p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--dark-slate);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--betsson-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--dark-slate);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--betsson-orange);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}

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

.btn-submit {
  background: var(--betsson-orange);
  color: var(--white);
  padding: var(--space-md) var(--space-3xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-submit:hover {
  background: #e66d00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-content {
  display: flex;
  gap: var(--space-lg);
}

.contact-card-icon {
  background: rgba(255, 121, 0, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  color: var(--betsson-orange);
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-slate);
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Responsible Gambling */
.age-badge {
  width: 120px;
  height: 120px;
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
}

.age-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.responsible-title {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.responsible-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.warning-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}

.warning-content {
  display: flex;
  gap: var(--space-lg);
}

.warning-icon {
  color: var(--gold);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.warning-text {
  flex: 1;
}

.warning-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.warning-text p:last-child {
  margin-bottom: 0;
}

.warning-text strong {
  color: var(--white);
}

.help-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.help-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.btn-outline {
  padding: var(--space-md) var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.responsible-footer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: var(--deep-blue);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.footer-brand .highlight {
  color: var(--betsson-orange);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--betsson-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  text-align: right;
}

/* Legal Pages */
.legal-page {
  padding: var(--space-4xl) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.breadcrumb a {
  color: var(--medium-gray);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--betsson-orange);
}

.breadcrumb-separator {
  color: var(--border-gray);
}

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

.legal-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark-slate);
}

.legal-updated {
  color: var(--medium-gray);
  margin-bottom: var(--space-3xl);
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  color: var(--dark-slate);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--dark-slate);
}

.legal-content p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.legal-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-2xl);
}

.legal-content li {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-content a {
  color: var(--betsson-orange);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #e66d00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-card-content {
    grid-template-columns: 120px 1fr;
    gap: var(--space-lg);
  }
  
  .casino-cta {
    grid-column: 1 / -1;
    margin-top: var(--space-lg);
  }
  
  .casino-cta .btn {
    width: 100%;
  }
  
  .about-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 3rem;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .header-content {
    padding: var(--space-md) var(--space-lg);
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .featured-card {
    padding: var(--space-xl);
  }
  
  .featured-card-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .featured-logo {
    margin: 0 auto;
  }
  
  .featured-info {
    text-align: center;
  }
  
  .star-rating {
    justify-content: center;
  }
  
  .casino-card {
    padding: var(--space-xl);
  }
  
  .casino-card-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .casino-logo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }
  
  .casino-rating {
    justify-content: center;
  }
  
  .casino-benefits {
    justify-content: center;
  }
  
  .mobile-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-image {
    order: 1;
  }
  
  .mobile-content {
    order: 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-badges {
    flex-direction: column;
  }
  
  .featured-card {
    padding: var(--space-lg);
  }
  
  .casino-card {
    padding: var(--space-lg);
  }
  
  .help-buttons {
    flex-direction: column;
  }
  
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
