@font-face {
  font-family: 'Lilita One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lilita-one.woff2') format('woff2');
}

@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fredoka.woff2') format('woff2');
}

:root {
  --rw-bg-dark: #0c1813;
  --rw-bg-jungle: #11281e;
  --rw-bg-surface: #19382b;
  --rw-bg-surface-elevated: #214838;
  
  --rw-stone-dark: #27303a;
  --rw-stone-mid: #3d4a58;
  --rw-stone-light: #5a6b7c;
  --rw-stone-border: #7c8e9f;
  --rw-stone-highlight: #a2b2c2;
  
  --rw-wood-dark: #3b2219;
  --rw-wood-mid: #5c3524;
  --rw-wood-light: #834f36;
  --rw-wood-border: #a86c4c;
  
  --rw-gold: #f59e0b;
  --rw-gold-light: #fde68a;
  --rw-gold-bright: #fbbf24;
  --rw-gold-dark: #b45309;
  --rw-gold-glow: rgba(245, 158, 11, 0.4);
  
  --rw-green: #10b981;
  --rw-green-bright: #34d399;
  --rw-green-dark: #047857;
  --rw-cyan: #06b6d4;
  --rw-red: #ef4444;
  --rw-red-dark: #b91c1c;
  
  --rw-text-main: #f8fafc;
  --rw-text-muted: #cbd5e1;
  --rw-text-dim: #94a3b8;
  --rw-text-gold: #fef08a;
  
  --rw-font-heading: 'Lilita One', cursive, sans-serif;
  --rw-font-body: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --rw-font-ui: 'Fredoka', sans-serif;
  
  --rw-radius-sm: 8px;
  --rw-radius-md: 14px;
  --rw-radius-lg: 20px;
  --rw-radius-xl: 28px;
  
  --rw-shadow-stone: 0 10px 25px -5px rgba(0, 0, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -4px 0 rgba(0, 0, 0, 0.5);
  --rw-shadow-wood: 0 8px 20px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -4px 0 rgba(0, 0, 0, 0.6);
  --rw-shadow-btn: 0 6px 0 var(--rw-gold-dark), 0 12px 18px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: var(--rw-font-body);
  background-color: var(--rw-bg-dark);
  color: var(--rw-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.15), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.12), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.1), transparent 50%);
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.rushwave-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rushwave-section {
  padding: 4.5rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.rushwave-section-sm {
  padding: 2.5rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 300px;
}

.rushwave-heading-group {
  text-align: center;
  margin-bottom: 3rem;
}

.rushwave-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-family: var(--rw-font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.15);
  color: var(--rw-gold-bright);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
  margin-bottom: 1rem;
}

.rushwave-title {
  font-family: var(--rw-font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 3px 0 #1e293b, 0 6px 12px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.rushwave-title-gold {
  color: var(--rw-gold-bright);
  text-shadow: 0 3px 0 #78350f, 0 6px 15px rgba(245,158,11,0.4);
}

.rushwave-subtitle {
  font-size: 1.1rem;
  color: var(--rw-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.rushwave-stone-panel {
  background: linear-gradient(145deg, #2b3947, #1e2936);
  border: 3px solid var(--rw-stone-border);
  border-radius: var(--rw-radius-lg);
  box-shadow: var(--rw-shadow-stone);
  position: relative;
  overflow: hidden;
}

.rushwave-stone-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.rushwave-wood-panel {
  background: linear-gradient(180deg, #6b3e2b 0%, #4a281a 100%);
  border: 4px solid var(--rw-wood-border);
  border-radius: var(--rw-radius-md);
  box-shadow: var(--rw-shadow-wood);
  position: relative;
}

.rushwave-rivet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cbd5e1, #475569);
  border: 1px solid #1e293b;
  box-shadow: 0 2px 4px rgba(0,0,0,0.6), inset 0 1px 1px #fff;
  position: absolute;
}
.rushwave-rivet.top-left { top: 10px; left: 10px; }
.rushwave-rivet.top-right { top: 10px; right: 10px; }
.rushwave-rivet.bottom-left { bottom: 10px; left: 10px; }
.rushwave-rivet.bottom-right { bottom: 10px; right: 10px; }

.rushwave-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--rw-font-heading);
  font-size: 1.1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--rw-radius-md);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.rushwave-btn-gold {
  background: linear-gradient(180deg, #fde047 0%, #f59e0b 50%, #d97706 100%);
  color: #451a03;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  border: 2px solid #fef08a;
  box-shadow: 0 5px 0 #92400e, 0 10px 15px rgba(0,0,0,0.4);
}

.rushwave-btn-gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 0 #92400e, 0 12px 20px rgba(245,158,11,0.4);
}

.rushwave-btn-gold:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #92400e, 0 4px 6px rgba(0,0,0,0.4);
}

.rushwave-btn-green {
  background: linear-gradient(180deg, #34d399 0%, #10b981 50%, #059669 100%);
  color: #064e3b;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  border: 2px solid #a7f3d0;
  box-shadow: 0 5px 0 #065f46, 0 10px 15px rgba(0,0,0,0.4);
}

.rushwave-btn-green:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 0 #065f46, 0 12px 20px rgba(16,185,129,0.4);
}

.rushwave-btn-green:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #065f46, 0 4px 6px rgba(0,0,0,0.4);
}

.rushwave-btn-stone {
  background: linear-gradient(180deg, #64748b 0%, #475569 50%, #334155 100%);
  color: #ffffff;
  border: 2px solid #94a3b8;
  box-shadow: 0 5px 0 #1e293b, 0 10px 15px rgba(0,0,0,0.4);
}

.rushwave-btn-stone:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 0 #1e293b, 0 12px 20px rgba(0,0,0,0.5);
}

.rushwave-btn-stone:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #1e293b, 0 4px 6px rgba(0,0,0,0.4);
}

.rushwave-topbar {
  background: rgba(12, 24, 19, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 0;
  font-family: var(--rw-font-ui);
  font-size: 0.82rem;
  color: var(--rw-text-dim);
}

.rushwave-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rushwave-topbar-flags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.rushwave-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #cbd5e1;
  font-size: 0.75rem;
  white-space: nowrap;
}

.rushwave-topbar-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.rushwave-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 40, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  width: 100%;
}

.rushwave-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
}

.rushwave-logo {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: 220px;
  flex-shrink: 0;
}

.rushwave-logo svg,
.rushwave-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
}

.rushwave-nav {
  display: flex;
  align-items: center;
}

.rushwave-nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.rushwave-nav-link {
  font-family: var(--rw-font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #e2e8f0;
  padding: 0.5rem 0.85rem;
  border-radius: var(--rw-radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.rushwave-nav-link:hover,
.rushwave-nav-link.active {
  color: var(--rw-gold-bright);
  background: rgba(245, 158, 11, 0.12);
  text-shadow: 0 0 10px rgba(245,158,11,0.5);
}

.rushwave-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.rushwave-burger-btn {
  display: none;
  background: linear-gradient(180deg, #3d4a58, #27303a);
  border: 2px solid var(--rw-stone-border);
  border-radius: var(--rw-radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--rw-shadow-stone);
  flex-shrink: 0;
}

.rushwave-burger-btn svg {
  width: 24px;
  height: 24px;
  fill: #f8fafc;
}

.rushwave-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #132a20 0%, #0c1813 100%);
  border-left: 3px solid var(--rw-gold);
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.rushwave-mobile-drawer.open {
  right: 0;
}

.rushwave-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.rushwave-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.rushwave-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.rushwave-drawer-close {
  background: #334155;
  border: 1px solid #475569;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rushwave-drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rushwave-drawer-link {
  font-family: var(--rw-font-heading);
  font-size: 1.15rem;
  color: #f1f5f9;
  padding: 0.75rem 1rem;
  border-radius: var(--rw-radius-md);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rushwave-drawer-link:hover,
.rushwave-drawer-link.active {
  background: rgba(245, 158, 11, 0.2);
  color: var(--rw-gold-bright);
}

.rushwave-hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.2), transparent 70%);
}

.rushwave-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.rushwave-hero-img-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto 2rem;
  border-radius: var(--rw-radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 4px rgba(245,158,11,0.5);
}

.rushwave-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.rushwave-hero-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.rushwave-store-badge {
  display: inline-block;
  height: 48px;
  transition: transform 0.2s ease;
}

.rushwave-store-badge svg,
.rushwave-store-badge img {
  height: 48px;
  width: auto;
}

.rushwave-store-badge:hover {
  transform: translateY(-2px);
}

.rushwave-video-showcase {
  background: linear-gradient(180deg, #1c2833 0%, #111a22 100%);
  border: 5px solid #4a5c6d;
  border-radius: var(--rw-radius-xl);
  box-shadow: var(--rw-shadow-stone);
  padding: 1.25rem;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.rushwave-video-showcase::before {
  content: 'RUSH ENGINE PREVIEW';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #5a6b7c, #334155);
  border: 2px solid #94a3b8;
  border-radius: 9999px;
  padding: 0.2rem 1.2rem;
  font-family: var(--rw-font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.rushwave-video-screen {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--rw-radius-md);
  overflow: hidden;
  border: 2px solid #2d3b48;
}

.rushwave-video-placeholder {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #2d453b 0%, #0b1a13 100%);
  cursor: pointer;
}

.rushwave-play-trigger-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fde047, #f59e0b);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(245,158,11,0.8), 0 6px 12px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.rushwave-video-placeholder:hover .rushwave-play-trigger-btn {
  transform: scale(1.1);
}

.rushwave-play-trigger-btn svg {
  width: 30px;
  height: 30px;
  fill: #451a03;
  margin-left: 4px;
}

.rushwave-wooden-carousel-wrap {
  background: linear-gradient(180deg, #784531 0%, #522d1e 100%);
  border: 5px solid #a36647;
  border-radius: var(--rw-radius-xl);
  box-shadow: var(--rw-shadow-wood);
  padding: 2.25rem 1.25rem 1.25rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.rushwave-wooden-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  border: 3px solid #93c5fd;
  border-radius: var(--rw-radius-md);
  padding: 0.3rem 1.8rem;
  font-family: var(--rw-font-heading);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.rushwave-carousel-stage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.rushwave-gallery-card {
  flex: 1 1 30%;
  border-radius: var(--rw-radius-md);
  overflow: hidden;
  border: 3px solid #3b2219;
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: #000;
}

.rushwave-gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--rw-gold);
}

.rushwave-gallery-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.rushwave-carousel-controls {
  display: none;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -18px;
  right: -18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.rushwave-arrow-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #10b981, #059669);
  border: 2px solid #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.5);
  transition: transform 0.15s ease;
}

.rushwave-arrow-btn:hover {
  transform: scale(1.1);
}

.rushwave-arrow-btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.rushwave-story-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.rushwave-story-character-wrap {
  flex: 1 1 40%;
  text-align: center;
}

.rushwave-story-character-img {
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--rw-radius-xl);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.rushwave-story-tablet {
  flex: 1 1 55%;
  background: linear-gradient(145deg, #303d4a, #1f2832);
  border: 4px solid #6b7f94;
  border-radius: var(--rw-radius-xl);
  box-shadow: var(--rw-shadow-stone);
  padding: 2.25rem;
  position: relative;
}

.rushwave-story-title {
  font-family: var(--rw-font-heading);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 3px 0 #111827;
}

.rushwave-story-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.rushwave-story-highlight {
  font-family: var(--rw-font-heading);
  font-size: 1.25rem;
  color: var(--rw-gold-bright);
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.rushwave-featured-game-card {
  background: linear-gradient(135deg, #1b2f25 0%, #112019 100%);
  border: 3px solid var(--rw-gold);
  border-radius: var(--rw-radius-xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(245,158,11,0.25);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.rushwave-featured-media {
  flex: 1 1 48%;
  min-height: 360px;
  position: relative;
}

.rushwave-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rushwave-featured-content {
  flex: 1 1 48%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rushwave-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  color: #fff;
  font-family: var(--rw-font-heading);
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.rushwave-featured-title {
  font-family: var(--rw-font-heading);
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 3px 0 #1e293b;
}

.rushwave-featured-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.rushwave-featured-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.rushwave-perk-item {
  flex: 1 1 calc(50% - 0.85rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

.rushwave-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rushwave-perk-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--rw-gold);
}

.rushwave-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.rushwave-filter-btn {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  padding: 0.55rem 1.3rem;
  border-radius: var(--rw-radius-md);
  background: rgba(30, 41, 59, 0.8);
  color: #94a3b8;
  border: 2px solid #334155;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rushwave-filter-btn:hover,
.rushwave-filter-btn.active {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  color: #451a03;
  border-color: #fde68a;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.rushwave-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.rushwave-game-card {
  flex: 1 1 calc(33.333% - 1.75rem);
  min-width: 300px;
  background: linear-gradient(180deg, #243340 0%, #162029 100%);
  border: 3px solid #485c70;
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  box-shadow: var(--rw-shadow-stone);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rushwave-game-card:hover {
  transform: translateY(-6px);
  border-color: var(--rw-gold);
}

.rushwave-game-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0b1319;
}

.rushwave-game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rushwave-game-card:hover .rushwave-game-thumb {
  transform: scale(1.06);
}

.rushwave-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 19, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 1.25rem;
}

.rushwave-game-card:hover .rushwave-game-overlay {
  opacity: 1;
}

.rushwave-game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid var(--rw-gold);
  color: var(--rw-gold-bright);
  font-family: var(--rw-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  z-index: 2;
}

.rushwave-game-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rushwave-game-title {
  font-family: var(--rw-font-heading);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.rushwave-game-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.rushwave-game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: #cbd5e1;
}

.rushwave-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.rushwave-meta-item svg {
  width: 15px;
  height: 15px;
  fill: var(--rw-gold);
}

.rushwave-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.rushwave-feature-card {
  flex: 1 1 calc(33.333% - 1.75rem);
  min-width: 260px;
  background: linear-gradient(180deg, #1b3327 0%, #12221a 100%);
  border: 2px solid #2d5541;
  border-radius: var(--rw-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rushwave-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--rw-green-bright);
}

.rushwave-feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  border: 3px solid #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.rushwave-feature-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.rushwave-feature-title {
  font-family: var(--rw-font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.rushwave-feature-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.rushwave-safety-banner {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid #334155;
  border-radius: var(--rw-radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rushwave-safety-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  max-width: 800px;
}

.rushwave-safety-badge {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.rushwave-safety-title {
  font-family: var(--rw-font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.rushwave-safety-desc {
  font-size: 0.92rem;
  color: #94a3b8;
}

.rushwave-safety-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rushwave-org-badge {
  height: 44px;
  display: block;
}

.rushwave-org-badge svg,
.rushwave-org-badge img {
  height: 44px;
  width: auto;
}

.rushwave-footer {
  background: #08110d;
  border-top: 4px solid #1e382b;
  padding: 4rem 0 2rem;
  color: #94a3b8;
  font-size: 0.92rem;
}

.rushwave-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
  justify-content: space-between;
}

.rushwave-footer-col-main {
  flex: 1 1 320px;
}

.rushwave-footer-col {
  flex: 1 1 180px;
}

.rushwave-footer-col-contact {
  flex: 1 1 260px;
}

.rushwave-footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rushwave-footer-logo {
  height: 42px;
  width: auto;
}

.rushwave-footer-logo svg,
.rushwave-footer-logo img {
  height: 42px;
  width: auto;
}

.rushwave-footer-heading {
  font-family: var(--rw-font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.rushwave-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rushwave-footer-link {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rushwave-footer-link:hover {
  color: var(--rw-gold-bright);
}

.rushwave-company-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.rushwave-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #cbd5e1;
}

.rushwave-detail-row svg {
  width: 17px;
  height: 17px;
  fill: var(--rw-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.rushwave-legal-disclaimer-box {
  background: rgba(220, 38, 38, 0.08);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--rw-radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.rushwave-disclaimer-shield {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.rushwave-disclaimer-title {
  font-family: var(--rw-font-heading);
  font-size: 1.15rem;
  color: #fca5a5;
  margin-bottom: 0.35rem;
}

.rushwave-disclaimer-text {
  font-size: 0.88rem;
  color: #f1f5f9;
  line-height: 1.55;
}

.rushwave-footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.rushwave-partner-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rushwave-game-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rushwave-game-modal.active {
  display: flex;
  opacity: 1;
}

.rushwave-modal-dialog {
  background: linear-gradient(180deg, #1e2936, #111a24);
  border: 3px solid var(--rw-stone-border);
  border-radius: var(--rw-radius-xl);
  width: 100%;
  max-width: 1060px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rushwave-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  background: #15202b;
  border-bottom: 2px solid #2d3b48;
}

.rushwave-modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rushwave-modal-title {
  font-family: var(--rw-font-heading);
  font-size: 1.3rem;
  color: #ffffff;
}

.rushwave-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rushwave-modal-btn {
  background: #253341;
  border: 1px solid #3e4f61;
  color: #f1f5f9;
  padding: 0.4rem 0.8rem;
  border-radius: var(--rw-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.82rem;
}

.rushwave-modal-btn:hover {
  background: #38bdf8;
  color: #0f172a;
}

.rushwave-modal-close {
  background: #dc2626;
  border: 1px solid #ef4444;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rushwave-modal-body {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 440px;
  background: #000;
}

.rushwave-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.rushwave-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0b1319;
  color: #ffffff;
  gap: 1rem;
  z-index: 1;
}

.rushwave-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(245,158,11,0.2);
  border-top-color: var(--rw-gold);
  border-radius: 50%;
  animation: rw-spin 0.9s linear infinite;
}

@keyframes rw-spin {
  to { transform: rotate(360deg); }
}

.rushwave-modal-footer {
  padding: 0.65rem 1.5rem;
  background: #111a24;
  border-top: 1px solid #23303d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

.rushwave-agegate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 8, 0.94);
  backdrop-filter: blur(14px);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.rushwave-agegate-overlay.active {
  display: flex;
}

.rushwave-agegate-card {
  background: linear-gradient(165deg, #24352b 0%, #122119 100%);
  border: 3px solid var(--rw-gold);
  border-radius: var(--rw-radius-xl);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.9);
  position: relative;
}

.rushwave-agegate-shield {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
}

.rushwave-agegate-title {
  font-family: var(--rw-font-heading);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.rushwave-agegate-text {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.rushwave-agegate-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rushwave-cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1f3026, #0e1c15);
  border: 2px solid #2d5541;
  border-radius: var(--rw-radius-lg);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  z-index: 15000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rushwave-cookie-banner.active {
  display: flex;
}

.rushwave-cookie-content {
  flex: 1 1 280px;
}

.rushwave-cookie-title {
  font-family: var(--rw-font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.rushwave-cookie-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.rushwave-cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.rushwave-policy-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.rushwave-policy-toc {
  position: sticky;
  top: 90px;
  flex: 0 0 270px;
  background: linear-gradient(180deg, #1c2b22, #101c15);
  border: 2px solid #2d4d3b;
  border-radius: var(--rw-radius-lg);
  padding: 1.5rem;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.rushwave-toc-title {
  font-family: var(--rw-font-heading);
  font-size: 1.15rem;
  color: var(--rw-gold-bright);
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rushwave-toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.rushwave-toc-link {
  color: #94a3b8;
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  display: block;
}

.rushwave-toc-link:hover,
.rushwave-toc-link.active {
  color: #ffffff;
  background: rgba(245,158,11,0.15);
}

.rushwave-policy-content {
  flex: 1 1 600px;
  background: linear-gradient(180deg, #1b2a21 0%, #111b15 100%);
  border: 2px solid #284434;
  border-radius: var(--rw-radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--rw-shadow-stone);
}

.rushwave-policy-section-block {
  margin-bottom: 2.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rushwave-policy-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rushwave-policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rw-gold);
  color: #451a03;
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  margin-right: 0.65rem;
  flex-shrink: 0;
}

.rushwave-policy-heading {
  font-family: var(--rw-font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.rushwave-policy-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rushwave-policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0;
  padding-left: 0.5rem;
}

.rushwave-policy-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.rushwave-policy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--rw-gold);
}

.rushwave-contact-layout {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.rushwave-contact-col {
  flex: 1 1 420px;
}

.rushwave-form-group {
  margin-bottom: 1.35rem;
}

.rushwave-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
}

.rushwave-form-input,
.rushwave-form-textarea,
.rushwave-form-select {
  width: 100%;
  background: #0f1c15;
  border: 2px solid #2a4736;
  border-radius: var(--rw-radius-md);
  padding: 0.8rem 1.1rem;
  color: #ffffff;
  font-size: 0.98rem;
  transition: border-color 0.2s ease;
}

.rushwave-form-input:focus,
.rushwave-form-textarea:focus,
.rushwave-form-select:focus {
  border-color: var(--rw-gold);
}

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

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  
  .rushwave-container {
    padding: 0 1rem;
  }
  
  .rushwave-section {
    padding: 2.75rem 0;
  }
  
  .rushwave-section-sm {
    padding: 1.75rem 0;
  }
  
  .rushwave-heading-group {
    margin-bottom: 2rem;
  }
  
  .rushwave-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    margin-bottom: 0.65rem;
  }
  
  .rushwave-subtitle {
    font-size: 0.95rem;
  }

  .rushwave-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
  }

  .rushwave-nav {
    display: none;
  }
  
  .rushwave-burger-btn {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .rushwave-burger-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .rushwave-header-inner {
    height: 62px;
  }
  
  .rushwave-header-actions .rushwave-btn {
    display: none;
  }
  
  .rushwave-logo {
    max-width: 150px;
    height: 34px;
  }
  
  .rushwave-logo svg,
  .rushwave-logo img {
    height: 34px;
  }
  
  .rushwave-story-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .rushwave-story-character-wrap,
  .rushwave-story-tablet {
    flex: 1 1 100%;
    width: 100%;
  }

  .rushwave-story-character-img {
    max-width: 240px;
  }

  .rushwave-story-tablet {
    padding: 1.5rem 1.25rem;
  }

  .rushwave-story-title {
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
  }

  .rushwave-story-text {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }

  .rushwave-story-highlight {
    font-size: 1.05rem;
  }
  
  .rushwave-featured-media,
  .rushwave-featured-content {
    flex: 1 1 100%;
    width: 100%;
  }

  .rushwave-featured-media {
    min-height: 220px;
  }

  .rushwave-featured-content {
    padding: 1.5rem 1.25rem;
  }

  .rushwave-featured-title {
    font-size: 1.65rem;
    margin-bottom: 0.65rem;
  }

  .rushwave-featured-desc {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }
  
  .rushwave-gallery-card:not(.active-slide) {
    display: none;
  }
  
  .rushwave-gallery-card {
    flex: 1 1 100%;
  }

  .rushwave-carousel-controls {
    display: flex;
  }

  .rushwave-wooden-carousel-wrap {
    padding: 1.75rem 0.85rem 0.85rem;
  }

  .rushwave-wooden-badge {
    font-size: 0.95rem;
    padding: 0.2rem 1.2rem;
  }
  
  .rushwave-games-grid {
    gap: 1.25rem;
  }

  .rushwave-game-card {
    flex: 1 1 100%;
    min-width: 0;
  }

  .rushwave-game-info {
    padding: 1rem;
  }

  .rushwave-game-title {
    font-size: 1.2rem;
  }

  .rushwave-game-desc {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .rushwave-features-grid {
    gap: 1.25rem;
  }
  
  .rushwave-feature-card {
    flex: 1 1 100%;
    padding: 1.5rem 1rem;
  }

  .rushwave-feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
  }

  .rushwave-feature-icon-wrap svg {
    width: 26px;
    height: 26px;
  }

  .rushwave-feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  .rushwave-feature-desc {
    font-size: 0.88rem;
  }
  
  .rushwave-policy-layout {
    flex-direction: column;
  }
  
  .rushwave-policy-toc {
    display: none;
  }
  
  .rushwave-policy-content {
    padding: 1.5rem 1.15rem;
    border-radius: var(--rw-radius-lg);
  }

  .rushwave-policy-section-block {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }

  .rushwave-policy-heading {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
  }

  .rushwave-policy-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .rushwave-policy-list li {
    font-size: 0.88rem;
  }

  .rushwave-footer {
    padding: 2.75rem 0 1.5rem;
  }

  .rushwave-footer-grid {
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .rushwave-legal-disclaimer-box {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .rushwave-safety-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .rushwave-safety-info {
    flex: 0 1 auto;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .rushwave-safety-logos {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }

  .rushwave-container {
    padding: 0 0.75rem;
  }

  .rushwave-section {
    padding: 2rem 0;
  }

  .rushwave-section-sm {
    padding: 1.25rem 0;
  }

  .rushwave-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
  }

  .rushwave-title {
    font-size: 1.45rem;
  }

  .rushwave-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    width: 100%;
  }

  .rushwave-topbar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
  
  .rushwave-topbar-flags,
  .rushwave-topbar-warning {
    justify-content: center;
    font-size: 0.72rem;
  }
  
  .rushwave-perk-item {
    flex: 1 1 100%;
  }
  
  .rushwave-safety-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 0.85rem;
  }
  
  .rushwave-safety-info {
    flex: 0 1 auto;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }

  .rushwave-safety-badge {
    width: 44px;
    height: 44px;
  }

  .rushwave-safety-title {
    font-size: 1.15rem;
  }

  .rushwave-safety-desc {
    font-size: 0.85rem;
  }
  
  .rushwave-safety-logos {
    justify-content: center;
  }

  .rushwave-org-badge {
    height: 36px;
  }

  .rushwave-org-badge svg,
  .rushwave-org-badge img {
    height: 36px;
  }
  
  .rushwave-modal-dialog {
    border-radius: var(--rw-radius-lg);
  }

  .rushwave-modal-header {
    padding: 0.6rem 0.85rem;
  }

  .rushwave-modal-title {
    font-size: 1.05rem;
  }

  .rushwave-modal-body {
    height: 50vh;
    min-height: 260px;
  }

  .rushwave-modal-footer {
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
  
  .rushwave-agegate-card {
    padding: 1.5rem 1rem;
  }

  .rushwave-agegate-shield {
    width: 54px;
    height: 54px;
    margin-bottom: 0.75rem;
  }

  .rushwave-agegate-title {
    font-size: 1.45rem;
  }

  .rushwave-agegate-text {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .rushwave-agegate-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .rushwave-cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .rushwave-cookie-title {
    font-size: 1.05rem;
  }

  .rushwave-cookie-desc {
    font-size: 0.8rem;
  }

  .rushwave-cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .rushwave-cookie-actions .rushwave-btn {
    width: 100%;
  }

  .rushwave-contact-layout {
    gap: 1.25rem;
  }

  .rushwave-contact-col {
    flex: 1 1 100%;
  }

  .rushwave-form-group {
    margin-bottom: 1rem;
  }

  .rushwave-form-input,
  .rushwave-form-textarea,
  .rushwave-form-select {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}