/* Azur Casino */

:root {
  --primary: #6E7FD2;
  --primary-dark: #5A6BC0;
  --primary-light: #8B9AE8;
  --accent: #4CD964;
  --accent-dark: #34C759;
  --dark: #1a1a2e;
  --dark-alt: #16213e;
  --dark-card: #1e2a45;
  --charcoal: #2d2d44;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg: #f8f9fc;
  --bg-alt: #eef0f7;
  --white: #ffffff;
  --border: #e2e5f1;
  --gold: #FFD700;
  --gold-dark: #e6c200;
  --shadow: 0 4px 24px rgba(110,127,210,0.10);
  --shadow-lg: 0 8px 40px rgba(110,127,210,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

a{color:var(--primary);text-decoration:none;transition:var(--transition);}
a:hover{color:var(--primary-dark);}

/* === HEADER === */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
}

.header-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}

.logo{display:flex;align-items:center;gap:12px;}
.logo img{height:48px;width:auto;}
.logo-text{font-size:1.5rem;font-weight:800;color:var(--primary);letter-spacing:2px;font-family:'Inter',sans-serif;}

.main-nav{display:flex;align-items:center;gap:4px;}
.main-nav a{
  padding:8px 16px;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:500;
  color:var(--text);
  transition:var(--transition);
}
.main-nav a:hover,.main-nav a.active{
  background:var(--primary);
  color:var(--white);
}

.header-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 24px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:var(--white);
  font-weight:700;
  border-radius:50px;
  font-size:0.9rem;
  box-shadow:0 4px 16px rgba(76,217,100,0.3);
  transition:var(--transition);
}
.header-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(76,217,100,0.4);
  color:var(--white);
}

.mobile-toggle{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--text);}

/* === HERO BANNER === */
.hero-banner{
  position:relative;
  overflow:hidden;
  border-radius:0;
}
.hero-banner img{
  width:100%;
  height:auto;
  min-height:200px;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

/* === STEPS BANNER === */
.steps-banner{
  background:var(--dark);
  border-radius:0;
  overflow:hidden;
}
.steps-banner img{
  width:100%;
  height:auto;
}

/* === SECTIONS === */
.container{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}

section{
  padding:60px 0;
}

section:nth-child(even):not(.h1-hero):not(.vip-section):not(.wc-section){
  background:var(--white);
}

section:nth-child(odd):not(.h1-hero):not(.vip-section):not(.wc-section){
  background:var(--bg);
}

.section-header{
  text-align:center;
  margin-bottom:48px;
}

.section-header h2{
  font-size:2rem;
  font-weight:800;
  color:var(--dark);
  margin-bottom:12px;
  position:relative;
  display:inline-block;
}

.section-header h2::after{
  content:'';
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:4px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:2px;
}

.section-header p{
  font-size:1.05rem;
  color:var(--text-light);
  max-width:680px;
  margin:16px auto 0;
}

/* === H1 HERO SECTION === */
section.h1-hero{
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-alt) 50%,var(--charcoal) 100%) !important;
  color:var(--white) !important;
  padding:48px 0 40px;
  text-align:center;
}

section.h1-hero h1{
  font-size:2.5rem;
  font-weight:900;
  margin-bottom:16px;
  color:#ffffff !important;
}

section.h1-hero .lead{
  font-size:1.15rem;
  color:#e0e0e0 !important;
  max-width:800px;
  margin:0 auto 24px;
  line-height:1.8;
}

.h1-hero .cta-group{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* === BUTTONS === */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 32px;
  border-radius:50px;
  font-weight:700;
  font-size:0.95rem;
  cursor:pointer;
  border:none;
  transition:var(--transition);
  text-align:center;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:var(--white);
  box-shadow:0 4px 16px rgba(110,127,210,0.3);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(110,127,210,0.4);
  color:var(--white);
}

.btn-accent{
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:var(--white);
  box-shadow:0 4px 16px rgba(76,217,100,0.3);
}
.btn-accent:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(76,217,100,0.4);
  color:var(--white);
}

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

/* === CARDS === */
.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
  transition:var(--transition);
  border:1px solid var(--border);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

.card-dark{
  background:var(--dark-card);
  color:var(--white);
  border:1px solid rgba(255,255,255,0.08);
}

.card h3{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:12px;
  color:var(--dark);
}
.card-dark h3{color:var(--white);}

.card p{
  color:var(--text-light);
  line-height:1.7;
}
.card-dark p{color:rgba(255,255,255,0.7);}

/* === GRID LAYOUTS === */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}

/* === INFO TABLE === */
.info-table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.info-table thead{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

.info-table th{
  padding:14px 20px;
  text-align:left;
  color:var(--white);
  font-weight:600;
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.info-table td{
  padding:14px 20px;
  border-bottom:1px solid var(--border);
  font-size:0.95rem;
}

.info-table tbody tr{
  background:var(--white);
  transition:var(--transition);
}

.info-table tbody tr:nth-child(even){
  background:var(--bg);
}

.info-table tbody tr:hover{
  background:rgba(110,127,210,0.06);
}

.info-table .highlight{
  color:var(--accent-dark);
  font-weight:700;
}

/* === FEATURES LIST === */
.feature-list{
  list-style:none;
  padding:0;
}
.feature-list li{
  padding:10px 0 10px 32px;
  position:relative;
  font-size:1rem;
  color:var(--text);
}
.feature-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
  font-size:1.1rem;
}

/* === PROS LIST === */
.pros-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  list-style:none;
  padding:0;
}
.pros-list li{
  padding:12px 16px 12px 44px;
  position:relative;
  background:rgba(76,217,100,0.06);
  border-radius:8px;
  border-left:3px solid var(--accent);
}
.pros-list li::before{
  content:'★';
  position:absolute;
  left:16px;
  color:var(--gold);
}

/* === BANNER IMAGES === */
.banner-section{
  padding:0;
  margin:0;
}
.banner-section img{
  width:100%;
  border-radius:0;
}

.banner-rounded{
  padding:40px 0;
}
.banner-rounded img{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}

/* === FAQ ACCORDION === */
.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:12px;
  overflow:hidden;
  background:var(--white);
}

.faq-question{
  padding:20px 24px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
  font-size:1rem;
  color:var(--dark);
  transition:var(--transition);
}
.faq-question:hover{color:var(--primary);}

.faq-question::after{
  content:'+';
  font-size:1.4rem;
  font-weight:300;
  color:var(--primary);
  transition:var(--transition);
}

.faq-item.active .faq-question::after{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer-inner{
  padding:0 24px 20px;
  color:var(--text-light);
  line-height:1.8;
}

.faq-item.active .faq-answer{
  max-height:600px;
}

/* === RATING STARS === */
.stars{color:var(--gold);font-size:1.2rem;letter-spacing:2px;}

/* === BADGE === */
.badge{
  display:inline-block;
  padding:4px 12px;
  border-radius:50px;
  font-size:0.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.badge-primary{background:rgba(110,127,210,0.12);color:var(--primary);}
.badge-accent{background:rgba(76,217,100,0.12);color:var(--accent-dark);}
.badge-gold{background:rgba(255,215,0,0.15);color:#b8960f;}

/* === PAYMENT METHODS === */
.payment-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}

.payment-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px 24px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:0.9rem;
  transition:var(--transition);
}
.payment-item:hover{
  border-color:var(--primary);
  box-shadow:0 2px 12px rgba(110,127,210,0.1);
}
.payment-item i{font-size:1.4rem;color:var(--primary);}

/* === GAME CATEGORIES === */
.game-cat{
  text-align:center;
  padding:32px 24px;
}
.game-cat-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-size:1.5rem;
  color:var(--white);
}

/* === FOOTER === */
.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,0.7);
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
}

.footer-brand img{height:40px;margin-bottom:16px;}
.footer-brand p{font-size:0.9rem;line-height:1.7;max-width:320px;}

.footer-col h4{
  color:var(--white);
  font-size:1rem;
  margin-bottom:16px;
  font-weight:700;
}

.footer-col ul{list-style:none;padding:0;}
.footer-col ul li{margin-bottom:8px;}
.footer-col ul li a{
  color:rgba(255,255,255,0.6);
  font-size:0.9rem;
  transition:var(--transition);
}
.footer-col ul li a:hover{
  color:var(--accent);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:24px 0;
  text-align:center;
  font-size:0.85rem;
  color:rgba(255,255,255,0.4);
}

.footer-bottom .disclaimers{
  max-width:900px;
  margin:0 auto 12px;
  font-size:0.8rem;
  line-height:1.7;
}

/* === SCROLL TO TOP === */
.scroll-top{
  position:fixed;
  bottom:24px;
  right:24px;
  width:48px;
  height:48px;
  background:var(--primary);
  color:var(--white);
  border:none;
  border-radius:50%;
  font-size:1.2rem;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(110,127,210,0.3);
  opacity:0;
  transform:translateY(20px);
  transition:var(--transition);
  z-index:999;
}
.scroll-top.visible{
  opacity:1;
  transform:translateY(0);
}
.scroll-top:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}

/* === TABLE OF CONTENTS === */
.toc{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px 32px;
  margin:0 auto 40px;
  max-width:800px;
}
.toc h3{
  font-size:1.1rem;
  color:var(--dark);
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:2px solid var(--primary);
}
.toc ol{
  columns:2;
  column-gap:32px;
  padding-left:20px;
}
.toc li{
  padding:4px 0;
  font-size:0.9rem;
  break-inside:avoid;
}
.toc li a{
  color:var(--text);
  transition:var(--transition);
}
.toc li a:hover{
  color:var(--primary);
}

/* === WORLD CUP 2026 SECTION === */
.wc-section{
  background:linear-gradient(135deg,#0a1628 0%,#1a2744 50%,#0d1f3c 100%) !important;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.wc-section::before{
  content:'⚽';
  position:absolute;
  top:-30px;
  right:-30px;
  font-size:200px;
  opacity:0.03;
}
.wc-section .section-header h2{color:var(--white);}
.wc-section .section-header p{color:rgba(255,255,255,0.7);}
.wc-section .card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
}
.wc-section .card h3{color:var(--white);}
.wc-section .card p{color:rgba(255,255,255,0.7);}
.wc-section .info-table thead{background:linear-gradient(135deg,#2e86de,#1a6fbd);}
.wc-section .info-table td{color:var(--text);background:var(--white);}
.wc-section .info-table tbody tr:nth-child(even) td{background:var(--bg);}

/* === VIP SECTION === */
.vip-section{
  background:linear-gradient(135deg,#1a1a2e 0%,#2d1b4e 100%) !important;
  color:var(--white);
}
.vip-section .section-header h2{
  color:var(--gold);
}
.vip-section .section-header h2::after{
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
}
.vip-section .section-header p{color:rgba(255,255,255,0.7);}

.vip-tier{
  text-align:center;
  padding:32px 20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,215,0,0.15);
  border-radius:var(--radius);
  transition:var(--transition);
}
.vip-tier:hover{
  border-color:var(--gold);
  transform:translateY(-4px);
}
.vip-tier-icon{
  font-size:2.5rem;
  margin-bottom:12px;
}
.vip-tier h3{color:var(--gold) !important;margin-bottom:8px;}
.vip-tier p{color:rgba(255,255,255,0.6) !important;font-size:0.9rem;}

/* Tablet */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .toc ol{columns:1;}

  .section-header{margin-bottom:36px;}
  .section-header h2{font-size:1.75rem;}
  .section-header p{font-size:0.95rem;}

  section.h1-hero h1{font-size:2rem;}
  section.h1-hero .lead{font-size:1.05rem;max-width:90%;}
  section.h1-hero{padding:36px 0 32px;}

  .card{padding:24px;}
  .vip-tier{padding:24px 16px;}
  .game-cat{padding:24px 16px;}
  .game-cat-icon{width:56px;height:56px;font-size:1.3rem;}

  .payment-item{padding:12px 18px;font-size:0.85rem;}

  .inline-banner{margin:24px 0;}
}

/* Mobile */
@media(max-width:768px){
  /* --- Header --- */
  .header-inner{padding:0 16px;height:60px;}
  .logo img{height:36px;}
  .mobile-toggle{display:block;}
  .main-nav{
    display:none;
    position:fixed;
    top:60px;
    left:0;
    right:0;
    bottom:0;
    background:var(--white);
    flex-direction:column;
    padding:20px;
    gap:4px;
    z-index:999;
    overflow-y:auto;
    border-top:1px solid var(--border);
    box-shadow:0 4px 24px rgba(0,0,0,0.12);
  }
  .main-nav.open{display:flex;}
  .main-nav a{
    padding:14px 16px;
    font-size:1rem;
    border-radius:10px;
    border-bottom:1px solid var(--border);
  }
  .main-nav a:last-child{border-bottom:none;}
  .header-cta{padding:8px 16px;font-size:0.8rem;}
  .header-cta span{display:none;}

  /* --- Hero banner --- */
  .hero-banner img{min-height:140px;}

  /* --- H1 Hero Section --- */
  section.h1-hero{padding:32px 0 28px;}
  section.h1-hero h1{font-size:1.5rem;line-height:1.3;padding:0 8px;}
  section.h1-hero .lead{font-size:0.92rem;line-height:1.7;max-width:95%;padding:0 4px;}
  .h1-hero .cta-group{flex-direction:column;align-items:center;gap:12px;}
  .h1-hero .cta-group .btn{width:100%;max-width:320px;justify-content:center;}

  /* --- Trust Bar --- */
  .trust-bar{padding:14px 16px;}
  .trust-items{gap:12px 20px;justify-content:center;}
  .trust-item{font-size:0.75rem;gap:5px;}
  .trust-item i{font-size:0.85rem;}

  /* --- Sections --- */
  section{padding:36px 0;}
  .container{padding:0 16px;}

  .section-header{margin-bottom:28px;}
  .section-header h2{font-size:1.4rem;}
  .section-header p{font-size:0.9rem;margin-top:12px;}

  /* --- Grids → single column (with exceptions) --- */
  .grid-2,.grid-3{grid-template-columns:1fr;gap:16px;}
  .grid-4{grid-template-columns:repeat(2,1fr);gap:12px;}

  /* --- Cards --- */
  .card{padding:20px;border-radius:10px;}
  .card:hover{transform:none;} /* disable hover lift on touch */
  .card h3{font-size:1.1rem;}
  .card p{font-size:0.9rem;}

  /* --- Info Tables → horizontal scroll --- */
  .table-scroll-wrap{
    margin:20px -16px;
    padding:0 16px;
  }
  .info-table{
    font-size:0.8rem;
    min-width:520px;
    margin:20px 0;
  }
  .info-table th{padding:10px 12px;font-size:0.75rem;letter-spacing:0;}
  .info-table td{padding:10px 12px;font-size:0.8rem;}

  /* --- Pros List --- */
  .pros-list{grid-template-columns:1fr;gap:8px;}
  .pros-list li{padding:10px 12px 10px 36px;font-size:0.88rem;}
  .pros-list li::before{left:12px;}

  /* --- Feature list --- */
  .feature-list li{font-size:0.9rem;padding:8px 0 8px 28px;}

  /* --- Payment grid --- */
  .payment-grid{gap:10px;}
  .payment-item{padding:10px 14px;font-size:0.8rem;flex:1 1 calc(50% - 10px);min-width:0;justify-content:center;}
  .payment-item i{font-size:1.1rem;}

  /* --- VIP Tiers --- */
  .vip-tier{padding:20px 16px;}
  .vip-tier-icon{font-size:2rem;}
  .vip-tier h3{font-size:1.05rem;}
  .vip-tier p{font-size:0.82rem;}
  .vip-tier:hover{transform:none;}

  /* --- Game categories --- */
  .game-cat{padding:20px 16px;}
  .game-cat-icon{width:52px;height:52px;font-size:1.2rem;}

  /* --- FAQ --- */
  .faq-question{padding:16px;font-size:0.9rem;gap:12px;}
  .faq-question::after{font-size:1.2rem;flex-shrink:0;}
  .faq-answer-inner{padding:0 16px 16px;font-size:0.88rem;line-height:1.7;}

  /* --- TOC --- */
  .toc{padding:16px 20px;margin:0 auto 24px;}
  .toc h3{font-size:1rem;margin-bottom:12px;}
  .toc ol{columns:1;padding-left:16px;}
  .toc li{font-size:0.85rem;padding:3px 0;}

  /* --- Banners --- */
  .inline-banner{border-radius:var(--radius);margin:20px 0;}

  /* --- Footer --- */
  .site-footer{padding:40px 0 0;}
  .footer-grid{grid-template-columns:1fr;gap:28px;margin-bottom:28px;}
  .footer-brand p{max-width:100%;}
  .footer-col h4{margin-bottom:10px;}
  .footer-col ul li{margin-bottom:6px;}
  .footer-col ul li a{font-size:0.88rem;}
  .footer-bottom{padding:20px 16px;}
  .footer-bottom .disclaimers{font-size:0.72rem;}
  .footer-bottom p{font-size:0.78rem;}

  /* --- Scroll to top --- */
  .scroll-top{width:42px;height:42px;bottom:16px;right:16px;font-size:1rem;}

  /* --- Badges --- */
  .badge{font-size:0.7rem;padding:3px 10px;}

  /* --- World Cup section --- */
  .wc-section::before{font-size:120px;}

  /* --- Final CTA --- */
  [style*="padding:60px 0"]{padding:40px 0 !important;}
}

/* Small mobile */
@media(max-width:480px){
  html{font-size:15px;}

  .header-inner{height:56px;}
  .logo img{height:32px;}

  section.h1-hero h1{font-size:1.25rem;}
  section.h1-hero .lead{font-size:0.85rem;}
  section.h1-hero{padding:24px 0 20px;}

  .section-header h2{font-size:1.2rem;}
  .section-header p{font-size:0.82rem;}
  .section-header{margin-bottom:20px;}

  section{padding:28px 0;}
  .container{padding:0 12px;}

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

  .card{padding:16px;border-radius:8px;}
  .card h3{font-size:1rem;}
  .card p{font-size:0.85rem;}

  .btn{padding:10px 24px;font-size:0.85rem;}

  .info-table{min-width:440px;}
  .info-table th{padding:8px 10px;font-size:0.7rem;}
  .info-table td{padding:8px 10px;font-size:0.75rem;}

  .trust-items{gap:8px 16px;}
  .trust-item{font-size:0.7rem;}

  .payment-item{flex:1 1 100%;}

  .toc{padding:14px 16px;}
  .toc li{font-size:0.8rem;}

  .faq-question{padding:14px 12px;font-size:0.85rem;}
  .faq-answer-inner{padding:0 12px 14px;font-size:0.82rem;}

  .vip-tier{padding:16px 12px;}
  .vip-tier-icon{font-size:1.8rem;margin-bottom:8px;}

  .footer-grid{gap:20px;}
  .footer-bottom .disclaimers{font-size:0.68rem;}

  .inline-banner{border-radius:8px;margin:16px 0;}

  .game-cat-icon{width:44px;height:44px;font-size:1rem;}

  .scroll-top{width:38px;height:38px;bottom:12px;right:12px;font-size:0.9rem;}

  .stars{font-size:1rem;}
}

/* Extra small */
@media(max-width:360px){
  html{font-size:14px;}
  .container{padding:0 10px;}

  section.h1-hero h1{font-size:1.15rem;}
  .section-header h2{font-size:1.1rem;}

  .card{padding:14px;}
  .header-cta{padding:6px 12px;font-size:0.75rem;}
  .logo img{height:28px;}
  .header-inner{height:50px;}

  .main-nav{top:50px;}

  .info-table{min-width:380px;}

  .payment-item{padding:8px 10px;font-size:0.75rem;}
}

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

.animate-in{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.6s ease,transform 0.6s ease;
}

.animate-in.visible{
  opacity:1;
  transform:translateY(0);
}

/* === BREADCRUMB === */
.breadcrumb{
  padding:12px 0;
  font-size:0.85rem;
  color:var(--text-muted);
}
.breadcrumb a{color:var(--primary);font-weight:500;}
.breadcrumb span{margin:0 8px;color:var(--text-muted);}

/* === TRUST INDICATORS === */
.trust-bar{
  background:var(--dark);
  padding:16px 0;
  text-align:center;
}
.trust-items{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.8);
  font-size:0.85rem;
  font-weight:500;
}
.trust-item i{color:var(--accent);font-size:1rem;}

/* === NUMBERED SECTIONS === */
.numbered-section{
  counter-increment:section-counter;
}

/* === INLINE BANNER === */
.inline-banner{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  margin:32px 0;
}
.inline-banner img{
  width:100%;
  display:block;
}

/* === TABLE SCROLL WRAPPER (JS-injected) === */
.table-scroll-wrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:var(--radius);
}
.table-scroll-wrap .info-table{
  margin:0;
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
.touch-device .card:hover{
  transform:none;
  box-shadow:var(--shadow);
}
.touch-device .vip-tier:hover{
  transform:none;
}
.touch-device .payment-item:hover{
  border-color:var(--border);
  box-shadow:none;
}

/* === STICKY MOBILE CTA === */
.mobile-sticky-cta{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:998;
  background:var(--white);
  padding:10px 16px;
  border-top:1px solid var(--border);
  box-shadow:0 -4px 20px rgba(0,0,0,0.1);
  text-align:center;
}
.mobile-sticky-cta .btn{
  width:100%;
  max-width:400px;
  justify-content:center;
  padding:14px 24px;
  font-size:0.95rem;
}

@media(max-width:768px){
  .mobile-sticky-cta{display:block;}
  /* Add bottom padding to body so footer isn't hidden behind sticky CTA */
  body{padding-bottom:72px;}
  .scroll-top{bottom:80px;}
}
@media(max-width:480px){
  .scroll-top{bottom:76px;}
  .mobile-sticky-cta .btn{font-size:0.88rem;padding:12px 20px;}
}
