@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* CSS Variables - Frölunda HC Theme */
:root {
  /* Brand Colors */
  --primary: #00503c;
  --primary-dark: #003d2e;
  --primary-light: #006b4f;
  --secondary: #ffffff;
  --accent: #c8102e;
  --accent-dark: #a00d25;

  /* Neutrals */
  --background: #ffffff;
  --background-alt: #f5f5f5;
  --foreground: #1a1a1a;
  --foreground-muted: #666666;

  /* Semantic Colors */
  --border: #e0e0e0;
  --card-bg: #ffffff;
  --footer-bg: #1a1a1a;
  --footer-text: #ffffff;

  /* Spacing */
  --max-width: 1200px;
  --section-padding: 80px 20px;
  --section-padding-mobile: 40px 20px;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height);
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 28px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--foreground-muted);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  margin-top: 80px;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=600&width=1920") center / cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.95;
  letter-spacing: -0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-success {
  background: #10b981;
  color: white;
}

.btn-success:hover {
  background: #059669;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
  color: var(--foreground);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--foreground-muted);
  margin-top: -40px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Card Styles */
.card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--background-alt);
}

.card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
  line-height: 1.3;
}

.card-text {
  font-size: 15px;
  color: var(--foreground-muted);
  line-height: 1.6;
  flex: 1;
}

.card-date {
  font-size: 13px;
  color: var(--foreground-muted);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Match Card */
.match-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

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

.match-info {
  flex: 1;
}

.match-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.match-teams {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--foreground);
}

.match-venue {
  font-size: 14px;
  color: var(--foreground-muted);
}

/* Championships Section */
.championships {
  background: var(--background-alt);
  padding: var(--section-padding);
}

.championship-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.championship-badge {
  background: white;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 4px solid var(--primary);
}

.championship-badge:hover {
  transform: scale(1.05) rotate(-5deg);
}

.championship-year {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
}

.championship-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Venue Section */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.venue-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

.venue-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

.venue-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.venue-card p {
  font-size: 16px;
  color: var(--foreground-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 18px;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--foreground);
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-detail-text {
  flex: 1;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail p {
  font-size: 16px;
  color: var(--foreground);
}

.contact-detail a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-detail a:hover {
  color: var(--primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-family);
  transition: var(--transition);
  background: white;
}

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

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

.form-group.required label::after {
  content: " *";
  color: var(--primary);
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--background-alt);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* About Page Styles */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-year {
  grid-column: 2;
  text-align: left;
}

.timeline-year {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  text-align: right;
  position: relative;
}

.timeline-year::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px var(--primary);
}

.timeline-item:nth-child(odd) .timeline-year::after {
  right: -74px;
}

.timeline-item:nth-child(even) .timeline-year::after {
  left: -74px;
}

.timeline-content {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.timeline-content p {
  font-size: 16px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 60px;
    gap: 20px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 2;
  }

  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .timeline-year {
    text-align: left;
    font-size: 36px;
  }

  .timeline-year::after {
    left: -50px !important;
  }
}

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

.stat-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-evolution {
  background: var(--background-alt);
  padding: 60px 40px;
  border-radius: 12px;
  margin: 40px 0;
}

.logo-evolution h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--foreground);
  text-align: center;
}

.logo-evolution p {
  font-size: 16px;
  color: var(--foreground-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Lottery Page Styles */
.lottery-info-banner {
  background: var(--background-alt);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 60px;
  border: 2px solid var(--border);
}

.info-btn {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.info-btn:hover {
  background: var(--primary);
  color: white;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.responsibility-card {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.responsibility-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stodlinjen-logo {
  font-family: "Brush Script MT", cursive;
  font-size: 48px;
  color: var(--primary);
  font-weight: 700;
  font-style: italic;
}

.age-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.age-icon-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
}

.age-icon-text {
  position: absolute;
  bottom: -8px;
  font-size: 10px;
  background: white;
  padding: 2px 8px;
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
}

.spelinspektionen-badge {
  width: 120px;
  height: 80px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  border-radius: 8px;
  margin: 0 auto;
  text-align: center;
  padding: 12px;
  line-height: 1.2;
}

.responsibility-text {
  font-size: 15px;
  color: var(--foreground);
  line-height: 1.5;
  font-weight: 500;
}

.responsibility-link {
  color: var(--accent);
  text-decoration: underline;
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
}

.block-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  margin-top: 12px;
}

.block-button:hover {
  background: var(--primary);
  color: white;
}

.lottery-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

.btn-lottery {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-find {
  background: #10b981;
  color: white;
}

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

.btn-subscribe {
  background: white;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-subscribe:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.terms-section {
  background: var(--background-alt);
  padding: 60px;
  border-radius: 12px;
  margin-top: 60px;
}

.terms-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--foreground);
}

.terms-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--foreground);
}

.terms-section p,
.terms-section li {
  font-size: 15px;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.terms-section ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.lottery-footer-extra {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-top: 40px;
  border-radius: 8px;
  border-top: 2px solid var(--primary);
}

.lottery-footer-extra h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.lottery-footer-extra p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lottery-footer-extra a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

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

  .responsibility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lottery-actions {
    flex-direction: column;
  }

  .btn-lottery {
    width: 100%;
    justify-content: center;
  }

  .terms-section {
    padding: 30px 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.bg-alt {
  background: var(--background-alt);
}
