/* ===================================
   FOLKSPELET.COM — Main Stylesheet
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@400;500;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
  --blue-dark:    #0E3465;
  --blue-mid:     #164785;
  --blue-light:   #3293D1;
  --blue-footer:  #1B5298;
  --white:        #ffffff;
  --gray-bg:      #f5f6f7;
  --gray-border:  #e0e3e8;
  --gray-light:   #f0f2f5;
  --text-dark:    #1a2a3a;
  --text-mid:     #3d5166;
  --text-muted:   #6b7f94;
  --hero-gradient: linear-gradient(90deg, #164785 0%, #3293D1 100%);
  --shadow-sm:    0 2px 8px rgba(14, 52, 101, 0.08);
  --shadow-md:    0 4px 20px rgba(14, 52, 101, 0.13);
  --shadow-lg:    0 8px 40px rgba(14, 52, 101, 0.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --font-main:    'Nunito', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  font-size: 0.8rem;
  padding: 8px 16px;
}

.btn-blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-1px);
}

.btn-blue-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  font-size: 0.8rem;
  padding: 8px 16px;
}

.btn-blue-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white-solid {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
  font-size: 0.82rem;
  padding: 7px 14px;
}

.btn-white-solid:hover {
  background: #e8f0fb;
  transform: translateY(-1px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  padding: 7px 14px;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--blue-dark);
  text-align: center;
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.announcement-bar p {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

/* === MAIN NAVIGATION === */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 37px;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

/* Left nav group */
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--blue-dark);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-link:hover {
  color: var(--blue-mid);
  border-bottom-color: var(--blue-mid);
}

/* Center logo */
.nav-logo {
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

/* Right nav group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-icon-btn:hover {
  background: var(--gray-light);
  color: var(--blue-mid);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.nav-btn-ok {
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.nav-btn-ok:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

/* Secondary nav */
.nav-secondary {
  border-top: 1px solid var(--gray-border);
  background: var(--gray-bg);
}

.nav-secondary-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-secondary-inner::-webkit-scrollbar {
  display: none;
}

.nav-game-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 9px 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-game-link:hover {
  color: var(--blue-mid);
  border-bottom-color: var(--blue-mid);
}

/* === HERO BANNER === */
.hero {
  background: var(--hero-gradient);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
  gap: 0;
}

.hero-content {
  flex: 1;
  padding: 52px 48px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.hero-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 480px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-meta-item .icon {
  font-size: 1rem;
}

.hero-meta-price {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Hero visual right side */
.hero-visual {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}

.hero-tickets {
  position: relative;
  width: 320px;
  height: 280px;
}

.ticket-card {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.ticket-card .ticket-label {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-card .ticket-name {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.ticket-card .ticket-price {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}

.ticket-dots {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.ticket-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.ticket-dot.revealed {
  background: rgba(255,255,255,0.85);
}

/* ticket styles */
.ticket-1 {
  width: 160px; height: 200px;
  background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
  top: 30px; left: 20px;
  transform: rotate(-5deg);
  z-index: 1;
}

.ticket-2 {
  width: 155px; height: 195px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  top: 20px; left: 140px;
  transform: rotate(4deg);
  z-index: 2;
}

.ticket-3 {
  width: 150px; height: 100px;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  top: 155px; left: 80px;
  transform: rotate(-2deg);
  z-index: 3;
}

/* === SCRATCH CARDS SECTION === */
.section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.section-heading span {
  color: var(--blue-mid);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-border);
}

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

.product-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.product-ticket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.product-card-image .product-ticket-visual {
  width: 90%;
  height: 85%;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-ticket-visual .visual-name {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  z-index: 1;
  position: relative;
  padding: 0 12px;
}

.visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 2px,
    transparent 2px,
    transparent 14px
  );
}

/* Unique color per product card */
.card-sverige       { background: linear-gradient(135deg, #1a9e52, #2ecc71); }
.card-sverige-prem  { background: linear-gradient(135deg, #c0922a, #f1c40f); }
.card-sverige-guld  { background: linear-gradient(135deg, #d4a017, #f39c12); }
.card-sverige-resa  { background: linear-gradient(135deg, #1967a8, #3293D1); }
.card-sverige-bil   { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.card-kosing        { background: linear-gradient(135deg, #16a085, #1abc9c); }
.card-fargfemman    { background: linear-gradient(135deg, #8e44ad, #9b59b6); }

.product-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-las-mer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--blue-mid);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.product-las-mer:hover {
  border-bottom-color: var(--blue-mid);
}

.product-price {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Carousel dots */
.card-carousel-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-border);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--blue-mid);
  width: 18px;
  border-radius: 4px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  flex-wrap: wrap;
}

/* === PROMO BANNER === */
.promo-banner {
  background: url('public/images/bingolotto-pask-hero-desktop-mork-2560x1138.webp') center/cover no-repeat;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.promo-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 320px;
}

.promo-content {
  flex: 1;
  padding: 48px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.promo-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.promo-subheading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.promo-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 440px;
}

.promo-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.promo-visual {
  flex: 0 0 340px;
  display: none;
}

.easter-visual {
  position: relative;
  width: 240px;
  height: 200px;
}

.egg {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.egg-1 {
  width: 80px; height: 100px;
  background: linear-gradient(160deg, #f1c40f, #e67e22);
  top: 20px; left: 10px;
  transform: rotate(-10deg);
}

.egg-2 {
  width: 90px; height: 112px;
  background: linear-gradient(160deg, #ffd700, #ffb800);
  top: 10px; left: 100px;
  transform: rotate(6deg);
}

.egg-3 {
  width: 75px; height: 94px;
  background: linear-gradient(160deg, #e8b94f, #d4a017);
  top: 90px; left: 145px;
  transform: rotate(-8deg);
}

.egg-shine {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 18px;
  height: 10px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  transform: rotate(-20deg);
}

/* === VARA SPEL SECTION === */
.vara-spel-section {
  background: var(--white);
  padding: 60px 24px;
}

.vara-spel-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vara-spel-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.games-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 66.66%;
  margin: 20px auto 0;
}

.game-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 170px;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-md);
}

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

.game-card-bg {
  position: absolute;
  inset: 0;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.38) 100%);
}

.game-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.game-card-name {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
  letter-spacing: -0.01em;
}

.game-card-arrow {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.game-card:hover .game-card-arrow {
  background: rgba(255,255,255,0.35);
  transform: translateX(3px);
}

.game-card-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* Game card backgrounds */
.game-bingolotto {
  background: linear-gradient(135deg, #3f51b5 0%, #7c4dff 50%, #9c27b0 100%);
}

.game-sverigelotten {
  background: linear-gradient(135deg, #1a7a3c 0%, #2ecc71 60%, #b8e994 100%);
}

.game-joyna {
  background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 50%, #ff9a9e 100%);
}

.game-skraplotter {
  background: linear-gradient(135deg, #f57f17 0%, #f9a825 50%, #fff176 100%);
}

.game-bingo-online {
  background: linear-gradient(135deg, #0277bd 0%, #03a9f4 50%, #29b6f6 100%);
}

/* geometric pattern overlay for game cards */
.game-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

/* === ELDSJAL PROMO === */
.eldsjal-section {
  background: linear-gradient(110deg, #164785 0%, #1e6bb8 50%, #3293D1 100%);
  padding: 0;
  overflow: hidden;
}

.eldsjal-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 260px;
}

.eldsjal-content {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.eldsjal-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.eldsjal-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 500px;
}

.eldsjal-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 480px;
}

.eldsjal-dates {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.eldsjal-visual {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.eldsjal-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  position: relative;
  box-shadow: 0 0 60px rgba(255,255,255,0.07);
}

.eldsjal-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}

.eldsjal-badge-year {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eldsjal-badge-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.eldsjal-badge-icon {
  font-size: 1.8rem;
  margin-top: 4px;
}

/* === TJANA PENGAR SECTION === */
.tjana-section {
  background: var(--white);
  padding: 60px 24px;
}

.tjana-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tjana-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.tjana-image {
  flex: 0 0 380px;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.tjana-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tjana-content {
  flex: 1;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.tjana-heading {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.tjana-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.tjana-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  width: fit-content;
}

.tjana-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === FOOTER === */
.footer {
  background: var(--blue-footer);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
  display: block;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-col-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  line-height: 1.3;
}

.footer-col ul li a:hover {
  color: var(--white);
}

/* Footer col 1 special */
.footer-responsible {
  margin-top: 20px;
}

.footer-responsible-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-support-line {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-spelinspektionen {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-spelinspektionen p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-spelinspektionen strong {
  color: rgba(255,255,255,0.75);
}

/* === FOOTER LEGAL DISCLAIMER === */
.footer-legal {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-legal-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.legal-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #E53E3E;
  background: rgba(229,62,62,0.15);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  color: #FEB2B2;
  flex-shrink: 0;
}

.legal-badge-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  color: #FEB2B2;
  letter-spacing: 0.02em;
}

.footer-legal-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal-text p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.footer-legal-text p strong {
  color: rgba(255,255,255,0.85);
}

.footer-legal-text p a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-text p a:hover {
  color: var(--white);
}

.footer-legal-regulator {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.74rem !important;
  color: rgba(255,255,255,0.45) !important;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--blue-dark);
  padding: 40px 24px;
  text-align: center;
}

.stats-number {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stats-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* === COPYRIGHT BAR === */
.copyright-bar {
  background: #071e3d;
  padding: 14px 24px;
  text-align: center;
}

.copyright-bar p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ===================================
   RESPONSIVE — TABLET & MOBILE
   =================================== */

@media (max-width: 1024px) {
  .hero-visual {
    flex: 0 0 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .games-grid-bottom {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-top {
    padding: 10px 16px;
  }

  .nav-left .nav-link {
    display: none;
  }

  .nav-logo-img {
    height: 22px;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    min-height: auto;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .hero-visual {
    flex: none;
    height: 220px;
    padding: 16px;
  }

  .hero-tickets {
    width: 260px;
    height: 180px;
  }

  .ticket-1 { width: 130px; height: 165px; }
  .ticket-2 { width: 128px; height: 162px; top: 10px; left: 115px; }
  .ticket-3 { width: 120px; height: 80px; top: 125px; left: 68px; }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Promo */
  .promo-banner {
    background-image: url('public/images/bingolotto-pask-hero-mobile-768x1129.webp');
    background-position: center top;
  }

  .promo-inner {
    flex-direction: column;
    min-height: 400px;
  }

  .promo-content {
    padding: 36px 24px;
  }

  .promo-visual {
    display: none;
  }

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

  .games-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin-top: 0;
  }

  /* Eldsjal */
  .eldsjal-inner {
    flex-direction: column;
  }

  .eldsjal-content {
    padding: 36px 24px;
  }

  .eldsjal-visual {
    flex: none;
    height: 160px;
    padding: 16px;
  }

  /* Tjana */
  .tjana-card {
    flex-direction: column;
  }

  .tjana-image {
    flex: none;
    min-height: 220px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .tjana-content {
    padding: 28px 24px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer {
    padding: 40px 20px 28px;
  }
}

@media (max-width: 480px) {
  .announcement-bar p {
    font-size: 0.7rem;
  }

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

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

  .games-grid-bottom {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    padding: 28px 18px;
  }

  .nav-right {
    gap: 8px;
  }

  .section {
    padding: 44px 18px;
  }
}
