/* ============================================================
   Nomini24.com — Complete Site Stylesheet
   Brand: Nomini Casino | Language: DE
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #4AB3F4;
  --brand-secondary:   #1E90FF;
  --brand-accent:      #FF4D6A;
  --brand-bg:          #FFFFFF;
  --brand-text:        #2C3E50;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #FF3355;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  30px;
  --brand-head-font:   'Nunito', sans-serif;
  --brand-body-font:   'Nunito', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.18);
  --radius-card:       16px;
  --radius-btn:        30px;
  --transition:        0.25s ease;
}

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

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

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  color: var(--brand-text);
  background: #f0f8ff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid rgba(74,179,244,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

/* Logo */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-primary);
  color: #fff;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-register {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FF3355, #FF4D6A);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 15px rgba(255,51,85,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-header-register:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,51,85,0.5);
}

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  color: var(--brand-primary);
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF3355, #FF4D6A);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,51,85,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  animation: pulse-btn 2.5s infinite;
}

.floating-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,51,85,0.55);
  animation: none;
}

@keyframes pulse-btn {
  0%   { box-shadow: 0 4px 20px rgba(255,51,85,0.45); }
  50%  { box-shadow: 0 4px 30px rgba(255,51,85,0.7); }
  100% { box-shadow: 0 4px 20px rgba(255,51,85,0.45); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  margin-top: 68px;
  background: linear-gradient(135deg, #1E90FF 0%, #4AB3F4 40%, #87CEEB 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-section h1 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-section h1 span {
  color: #FFE066;
}

.hero-subtitle {
  font-family: var(--brand-body-font);
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-bonus-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero-bonus-icon {
  font-size: 28px;
}

.hero-bonus-text strong {
  display: block;
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  color: #FFE066;
  line-height: 1;
}

.hero-bonus-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FF3355 0%, #FF4D6A 100%);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 18px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 25px rgba(255,51,85,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-hero:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255,51,85,0.6);
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot-placeholder {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  border: 3px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(74,179,244,0.2);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
}

.trust-item .trust-icon {
  font-size: 20px;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

.main-content {
  padding: 60px 0;
}

/* --- Section Headings --- */
.section-label {
  display: inline-block;
  background: rgba(74,179,244,0.12);
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--brand-text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-intro {
  font-size: 16px;
  color: #5a6a7a;
  margin-bottom: 40px;
  max-width: 640px;
}

/* --- Feature Cards Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,179,244,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 17px;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.65;
}

/* --- Bonus Section --- */
.bonus-section {
  background: linear-gradient(135deg, #1E90FF 0%, #4AB3F4 100%);
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bonus-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bonus-section h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bonus-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus-terms {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}

.bonus-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-details-list li {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(4px);
}

.bonus-details-list li strong {
  display: block;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 20px;
  color: #FFE066;
  margin-bottom: 4px;
}

.bonus-details-list li span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.btn-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #FF3355 0%, #FF4D6A 100%);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 20px rgba(255,51,85,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-bonus:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,51,85,0.55);
}

/* --- Games Section --- */
.games-section {
  margin-bottom: 60px;
}

.games-category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid rgba(74,179,244,0.3);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.game-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,179,244,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, #e8f4fd, #c8e6f8);
  position: relative;
  overflow: hidden;
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30,144,255,0.12));
}

.game-info {
  padding: 10px 12px;
}

.game-info h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info span {
  font-size: 11px;
  color: #8a9ab0;
}

/* --- Payments Section --- */
.payments-section {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,179,244,0.15);
}

.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.payment-group h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(74,179,244,0.2);
}

.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fbff;
  border-radius: 10px;
  border: 1px solid rgba(74,179,244,0.12);
}

.payment-method-item .pm-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
}

.pm-icon {
  font-size: 20px;
}

.pm-time {
  font-size: 12px;
  color: #4CAF50;
  font-weight: 700;
  background: rgba(76,175,80,0.1);
  padding: 3px 10px;
  border-radius: 10px;
}

/* --- Info Sections (Accordion-style) --- */
.info-sections {
  margin-bottom: 60px;
}

.info-block {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(74,179,244,0.15);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-block-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--transition);
}

.info-block-header:hover {
  background: #f0f8ff;
}

.info-block-header h2,
.info-block-header h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 17px;
  color: var(--brand-text);
}

.info-block-body {
  padding: 0 28px 24px;
}

.info-block-body p {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-block-body p:last-child {
  margin-bottom: 0;
}

.info-block-body ul {
  padding-left: 0;
  margin-top: 12px;
}

.info-block-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #5a6a7a;
  margin-bottom: 8px;
  line-height: 1.65;
}

.info-block-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #FF3355 0%, #FF4D6A 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 44px;
  background: #fff;
  color: #FF3355;
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 18px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-cta:hover {
  color: #FF3355;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.28);
}

.cta-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}

/* --- Providers Section --- */
.providers-section {
  margin-bottom: 60px;
}

.providers-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.provider-logo {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,179,244,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  min-height: 60px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #1a2b3c;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

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

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

/* --- Responsible Gambling Logos Row --- */
.footer-responsible {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-responsible h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-align: center;
}

.rg-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rg-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 60px;
  min-height: 44px;
  transition: background var(--transition);
}

.rg-badge:hover {
  background: rgba(255,255,255,0.1);
}

.rg-badge-18 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  background: #FF3355;
  border-color: #FF3355;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
}

.rg-badge span {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.3;
}

/* --- Payment Methods Row --- */
.footer-payments {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-payments h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.payment-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pm-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 70px;
  height: 40px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition);
}

.pm-badge:hover {
  background: rgba(255,255,255,0.12);
}

.pm-badge.visa     { color: #1A1F71; background: #fff; border-color: transparent; font-size: 16px; font-style: italic; font-weight: 900; }
.pm-badge.mc       { background: #fff; border-color: transparent; }
.pm-badge.amex     { color: #007BC1; background: #fff; border-color: transparent; font-weight: 900; font-size: 11px; }
.pm-badge.btc      { color: #F7931A; background: rgba(247,147,26,0.12); border-color: rgba(247,147,26,0.3); }
.pm-badge.eth      { color: #627EEA; background: rgba(98,126,234,0.12); border-color: rgba(98,126,234,0.3); }
.pm-badge.ltc      { color: #A6A9AA; background: rgba(166,169,170,0.12); border-color: rgba(166,169,170,0.3); }

/* --- Footer Bottom --- */
.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--brand-primary);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.mb-0        { margin-bottom: 0; }
.mt-40       { margin-top: 40px; }
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Legal Page Styles --- */
.legal-content {
  background: #fff;
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,179,244,0.12);
  margin: 40px 0 60px;
}

.legal-content h1 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-content .last-updated {
  font-size: 13px;
  color: #8a9ab0;
  margin-bottom: 36px;
  display: block;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-text);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 2px solid rgba(74,179,244,0.12);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--brand-secondary);
}

.legal-content a:hover {
  color: var(--brand-primary);
}

/* ============================================================
   SKIP TO CONTENT
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — MOBILE BURGER MENU
   ============================================================ */

.mobile-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
  }

  .header-actions .btn-header-register span.label-text {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (768px)
   ============================================================ */

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-bonus-box {
    justify-content: center;
  }

  .bonus-section-inner {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .bonus-section {
    padding: 36px 24px;
  }

  .payments-section {
    padding: 36px 24px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 0 40px;
  }

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

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

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

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .cta-banner {
    padding: 36px 24px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (320px)
   ============================================================ */

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

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

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

  .btn-hero {
    padding: 13px 28px;
    font-size: 15px;
  }
}