/* ---------- Modern Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root{
  --bg:#0f1418;            /* общий фон */
  --bg-2:#151b21;          /* шапка/карточки */
  --bg-3:#1b232b;          /* ховер, бордеры */
  --txt:#e5e7eb;           /* основной текст */
  --muted:#9aa3af;         /* вторичный текст */
  --line:#232b34;          /* разделители */
  --accent:#27e36e;        /* фирменный зелёный */
  --accent-2:#00c95a;
  --danger:#ff5555;        /* бейдж "NOWOŚĆ" */
  --shadow: 0 8px 24px rgba(0,0,0,.35);
  --radius: 14px;
}

/* Touch-friendly improvements */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Performance optimizations */
* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .tile {
    border: 2px solid #fff;
  }
  
  .btn {
    border: 2px solid #fff;
  }
  
  .banner-button {
    border: 2px solid #000;
  }
}

/* Smooth scrolling for mobile */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Better touch targets */
@media (max-width: 768px) {
  a, button, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  .btn {
    touch-action: manipulation;
  }
  
  .tile {
    touch-action: manipulation;
  }
  
  .banner-button {
    touch-action: manipulation;
  }
  
  /* Image optimization for mobile */
  img {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Smooth animations for mobile */
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Better scrolling performance */
  .container {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize font rendering */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}
*{box-sizing:border-box}
html{
  height:100%;
  scroll-behavior: smooth;
}
body{
  height:100%;
  margin:0; background:#191d1f; color:var(--txt);
  font:14px/1.6 "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-top: 70px;
}

@media (max-width: 768px) {
  body {
    padding-top: 160px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 170px;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: 160px;
  }
}

@media (max-width: 320px) {
  body {
    padding-top: 140px;
  }
  
  .container {
    padding: 0 6px;
  }
  
  .topbar .inner {
    padding: 6px 10px;
    gap: 6px;
    min-height: 120px;
  }
  
  .brand .logo {
    width: 100px;
    height: 25px;
  }
  
  .main-nav {
    gap: 8px;
  }
  
  .main-nav a {
    font-size: 13px;
    padding: 4px 8px;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 80px;
    height: 36px;
  }
  
  .tile {
    min-height: 60px;
    gap: 8px;
  }
  
  .tile figure {
    padding: 4px 2px 4px 4px;
    font-size: 28px;
    min-width: 40px;
  }
  
  .tile h3 {
    font-size: 13px;
    padding: 8px 8px 0 0;
  }
  
  .tile p {
    font-size: 11px;
    padding: 2px 8px 8px 0;
  }
  
  .banner-button {
    padding: 10px 20px;
    font-size: 16px;
    width: 98%;
  }
  
  .about {
    padding: 10px 6px;
  }
  
  .about h1 {
    font-size: 18px;
  }
  
  .about h2 {
    font-size: 16px;
  }
  
  .about p {
    font-size: 12px;
  }
}
a{color:inherit; text-decoration:none}
.container{max-width:1200px; margin:0 auto; padding:0 20px}

/* ---------- Topbar ---------- */
.topbar{
  background:#303334; 
  border-bottom:1px solid var(--line);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar.scrolled{
  background: rgba(48, 51, 52, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between; height:70px;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:700;
  letter-spacing:.3px;
}
.brand .logo{
  display:inline-block; width:160px; height:40px;
  background-image: url('img/Logo_total.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main-nav{
  display:flex; gap:40px; flex-wrap:wrap; position:absolute; left:50%; transform:translateX(-50%);
}
.main-nav a{
  padding:8px 0; font-weight:600; color:#d8dde3; opacity:.9;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  font-style: normal;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.main-nav a.active{
  color:#0bff22;
  font-weight: 700;
}
.main-nav a:hover{ color:#fff }
.badge-new{
  display:inline-block; margin-left:6px; padding:2px 6px;
  background:var(--danger); color:#fff; font-size:10px;
  border-radius:6px; vertical-align:middle;
}
.nav-right{
  display:flex; align-items:center; gap:12px;
}
.icon-btn{
  width:28px; height:28px; display:grid; place-items:center;
  border-radius:50%; background:var(--bg-3); color:#cfd7df; opacity:.9;
}
.icon-btn:hover{ opacity:1 }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:60px; padding:0 30px; border-radius: 4px; font-weight:600;
  border:1px solid #fff; background:transparent; color:#fff;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  font-size: 16px;
  transition: all 0.2s ease;
  letter-spacing: -0.1px;
}
.btn:hover{ 
  background:rgba(255,255,255,0.1); 
  border-color:#ccc;
}
.btn.primary{
  background:#0bff22; color:#000; border:0;
  font-weight:700;
  box-shadow: 0 4px 12px rgba(11, 255, 34, 0.3);
}
.btn.primary:hover{ 
  background:#09e01f; 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 255, 34, 0.4);
}

/* ---------- Hero Banner ---------- */
.hero-banner{
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.banner-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  min-height: 300px;
}

.banner-left{
  flex: 1;
  max-width: 300px;
  color: #fff;
}

.banner-badge{
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.3px;
}

.banner-amount{
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.amount-number{
  font-size: 48px;
  font-weight: 800;
  color: #000;
  background: #7c8183;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -1px;
  margin-right: 8px;
}

.amount-currency{
  font-size: 26px;
  font-weight: 700;
  color: #333;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.banner-subtitle{
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.banner-center{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-image{
  max-width: 1200px;
  width: 100%;
  height: auto;
  position: relative;
}

.banner-image img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  object-fit: contain;
}

.banner-button-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.banner-right{
  flex: 1;
  max-width: 300px;
  color: #fff;
  text-align: right;
}

.banner-action-badge{
  font-size: 18px;
  font-weight: 700;
  color: #000;
  background: #7c8183;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.3px;
}

.banner-action-text{
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.banner-button{
  background: #0bff22;
  border: 2px solid #0bff22;
  color: #000;
  padding: 26px 92px;
  border-radius: 12px;
  font-size: 48px;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: pulse-border 2s ease-in-out infinite;
}

.banner-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(11, 255, 34, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.banner-button:hover::before {
  width: 300px;
  height: 300px;
}

.banner-button:hover{
  background: #09e01f;
  transform: scale(1.05) translateY(-4px);
  border-color: #09e01f;
}

.banner-button:active{
  transform: scale(0.98) translateY(-2px);
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(11, 255, 34, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(11, 255, 34, 0);
  }
}

.banner-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.banner-arrow:hover{
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.banner-arrow-left{
  left: 20px;
}

.banner-arrow-right{
  right: 20px;
}

/* Tablet Responsive (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .banner-content {
    flex-wrap: wrap;
  }
  
  .banner-left,
  .banner-right {
    max-width: 250px;
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Responsive banner */
@media (max-width: 768px){
  .hero-banner {
    padding: 20px 0;
  }
  
  .banner-content{
    flex-direction: column;
    gap: 20px;
    text-align: center;
    min-height: auto;
  }
  
  .banner-left,
  .banner-right{
    max-width: 100%;
    padding: 0 10px;
  }
  
  .banner-left {
    order: 1;
  }
  
  .banner-center {
    order: 2;
    margin: 10px 0;
  }
  
  .banner-right{
    text-align: center;
    order: 3;
  }
  
  .banner-image {
    max-width: 100%;
    width: 100%;
  }
  
  .banner-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  
  .banner-arrow{
    width: 36px;
    height: 36px;
    opacity: 0.8;
  }
  
  .banner-arrow-left {
    left: 5px;
  }
  
  .banner-arrow-right {
    right: 5px;
  }
  
  .banner-button {
    padding: 16px 32px;
    font-size: 20px;
    width: 90%;
    max-width: 300px;
  }
}

/* ---------- Cards grid ---------- */
.block{ padding:40px 0 }
.card-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
@media (max-width:1000px){ 
  .card-grid{grid-template-columns:repeat(3,1fr); gap: 14px;} 
}
@media (max-width:760px){ 
  .card-grid{grid-template-columns:repeat(2,1fr); gap: 12px;} 
}
@media (max-width:580px){ 
  .card-grid{grid-template-columns:1fr;} 
}

.tile{
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius);
  padding:0; display:flex; align-items:center; gap:18px;
  box-shadow:var(--shadow); min-height:96px;
  transition:transform .18s ease, border-color .18s ease;
  flex-direction: row;
}
.tile:hover{ transform:translateY(-2px); border-color:#2b3641 }
.tile figure{
  /* width: 80px; */
  /* height: 80px; */
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #1d252d, #141a21);
  /* border: 1px solid #26313c; */
  border-radius: 14px;
  /* font-size: 42px; */
  flex-shrink: 0;
  padding: 8px 4px 8px 8px;
  font-size: 48px;
}

.tile figure svg{
  display: none;
}
.tile h3{ 
  margin:0; 
  font-size:16px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 22px 22px 0 0;
}
.tile p{ 
  margin:6px 0 0; 
  color:var(--muted); 
  font-size:13px;
  padding: 0 22px 22px 0;
}

/* ---------- Section header ---------- */
.section-title{
  display:flex; align-items:center; gap:12px; margin:26px 0 14px;
}
.section-title .bar{
  width:6px; height:48px; background:var(--accent); border-radius:6px;
}
.section-title h2{ 
  margin:0; 
  font-size:36px; 
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing:-0.5px;
}

/* ---------- About text box ---------- */
.about{
  background:#404040;
  padding:22px; box-shadow:var(--shadow); color:#dbe3ea;
}
.about p{ 
  margin:10px 0; 
  line-height: 1.8;
  text-align: justify;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.about strong{
  font-weight: 700;
  color: #fff;
}

.about h1{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 16px 0;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.about h2{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 12px 0;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.3px;
}

.about table{
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

.about table td{
  padding: 12px 16px;
  border-bottom: 1px solid #3a3a3a;
  color: #dbe3ea;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.about table td:first-child{
  background: #333;
  font-weight: 600;
  color: #fff;
}

.about table tr:last-child td{
  border-bottom: none;
}

.about ol{
  margin: 16px 0;
  padding-left: 20px;
  color: #dbe3ea;
}

.about ol li{
  margin: 8px 0;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

/* FAQ Styles */
.faq-container{
  margin: 20px 0;
}

.faq-item{
  margin-bottom: 12px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
}

.faq-question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover{
  background: #3a3a3a;
}

.faq-question h3{
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.2px;
}

.faq-toggle{
  font-size: 20px;
  font-weight: 700;
  color: #0bff22;
  transition: transform 0.3s ease;
  user-select: none;
}

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

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #2a2a2a;
}

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

.faq-answer p{
  margin: 0;
  padding: 16px 20px;
  color: #dbe3ea;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}
.legal{
  margin-top:14px; padding-top:12px; color:#c9d1d9;
}
.legal p{
  margin: 8px 0;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
.legal p:first-child{
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.legal p:not(:first-child){
  color: #c9d1d9;
  font-size: 14px;
}

/* ---------- Footer spacer ---------- */
.footer-space{ height:60px }

/* ---------- Footer ---------- */
.footer{
  color: #fff;
}

/* Payment methods section */
.payment-methods{
  background: #fff;
  padding: 20px 0;
}

.payment-image{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  overflow-x: auto;
}

.payment-image img{
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* Main footer content */
.footer-main{
  background: #166831;
  padding: 40px 0;
}

.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-disclaimer{
  flex: 1;
  max-width: 600px;
}

.footer-disclaimer h4{
  margin: 0 0 16px 0;
  font-size: 19px;
  font-weight: 700;
  color: #ff6b60;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.3px;
}

.footer-disclaimer p{
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Contact section */
.footer-contact{
  text-align: right;
  min-width: 200px;
}

.contact-hours{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.contact-icons{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-icon{
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-text{
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
}

/* Bottom footer */
.footer-bottom{
  background: #145927;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.age-restriction{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.age-icon{
  width: 32px;
  height: 32px;
  background: #fff;
  color: #1a4d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.age-text{
  color: #ccc;
  font-size: 12px;
  line-height: 1.5;
  max-width: 400px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
}

.social-links{
  display: flex;
  gap: 12px;
}

.social-link{
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s ease;
}

.social-link:hover{
  background: rgba(255,255,255,0.2);
}

.footer-links{
  display: flex; gap: 20px; justify-content: center; margin-bottom: 20px;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
}
.footer-links a{
  color: #0bff22; text-decoration: none; font-size: 14px; font-weight: 600;
  transition: color 0.3s ease;
}
.footer-links a:hover{
  color: #fff;
}

.legal-disclaimer{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header {
    padding: 10px 0;
  }
  
  .topbar .inner {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    height: auto;
    min-height: 140px;
  }
  
  .brand {
    align-self: center;
    order: 1;
  }
  
  .brand .logo {
    width: 140px;
    height: 35px;
  }
  
  .main-nav {
    position: static;
    transform: none;
    gap: 20px;
    width: 100%;
    justify-content: center;
    order: 2;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .main-nav a:hover {
    background-color: rgba(11, 255, 34, 0.1);
  }
  
  .nav-right {
    gap: 10px;
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
    height: 44px;
    flex: 1;
    max-width: 140px;
  }
  
  .about {
    padding: 20px 15px;
  }
  
  .about h1 {
    font-size: 24px;
  }
  
  .about h2 {
    font-size: 20px;
  }
  
  .about h3 {
    font-size: 18px;
  }
  
  .about p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .about ul {
    padding-left: 20px;
  }
  
  .about li {
    margin-bottom: 8px;
  }
  
  .footer-main {
    padding: 20px 0;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom .container.inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .contact-info {
    order: 1;
  }
  
  .social-links {
    order: 2;
    justify-content: center;
  }
  
  .footer-links {
    order: 3;
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-disclaimer {
    order: 4;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .flag-icon {
    justify-content: center;
  }
  
  .disclaimer-text {
    font-size: 12px;
    line-height: 1.4;
  }
  
  
  .faq-container {
    margin: 20px 0;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 15px 15px;
  }
  
  .faq-answer p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .banner-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .banner-left,
  .banner-right {
    text-align: center;
  }
  
  .banner-image {
    max-width: 100%;
  }
  
  .banner-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .banner-button-wrapper {
    margin-top: 20px;
    padding-bottom: 10px;
  }
  
  .banner-button {
    padding: 18px 36px;
    font-size: 24px;
    width: 90%;
    max-width: 400px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  
  .tile {
    padding: 0;
    flex-direction: row;
    text-align: left;
    gap: 12px;
    min-height: 80px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  
  .tile div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .tile figure {
    padding: 8px 4px 8px 8px;
    font-size: 36px;
    border-radius: 10px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tile h3 {
    font-size: 15px;
    padding: 12px 12px 0 0;
    margin: 0;
    line-height: 1.3;
  }
  
  .tile p {
    font-size: 13px;
    padding: 4px 12px 12px 0;
    margin: 0;
    line-height: 1.4;
  }
  
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .section-title .bar {
    width: 40px;
    height: 4px;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .footer-contact {
    text-align: center !important;
    min-width: auto;
    align-self: center;
  }
  
  .topbar .inner {
    padding: 10px 15px;
    gap: 12px;
    height: 170px;
  }
  
  .brand .logo {
    width: 140px;
    height: 35px;
  }
  
  .main-nav {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
  
  .main-nav a {
    font-size: 16px;
  }
  
  .nav-right {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
    flex: 1;
    max-width: 140px;
    height: 45px;
  }
  
  .topbar .inner {
    height: 160px;
    padding: 10px 15px;
  }
  
  .tile figure {
    /* width: 56px; */
    /* height: 56px; */
    padding: 5px 2px 5px 5px;
    font-size: 36px;
  }
  
  .hero-banner {
    padding: 20px 0;
  }
  
  .banner-content {
    min-height: auto;
    padding: 10px 0;
  }
  
  .banner-left,
  .banner-right {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .banner-badge {
    font-size: 16px;
  }
  
  .amount-number {
    font-size: 32px;
    padding: 6px 12px;
  }
  
  .amount-currency {
    font-size: 20px;
  }
  
  .banner-subtitle {
    font-size: 18px;
  }
  
  .banner-action-badge {
    font-size: 15px;
    padding: 6px 12px;
  }
  
  .banner-action-text {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .banner-button {
    padding: 14px 28px;
    font-size: 20px;
    width: 95%;
    max-width: 300px;
  }
  
  .banner-arrow {
    width: 36px;
    height: 36px;
  }
  
  .banner-arrow-left {
    left: 5px;
  }
  
  .banner-arrow-right {
    right: 5px;
  }
  
  .about {
    padding: 15px 10px;
  }
  
  .about h1 {
    font-size: 22px;
  }
  
  .about h2 {
    font-size: 19px;
  }
  
  .about h3 {
    font-size: 16px;
  }
  
  .about p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .about table {
    font-size: 13px;
  }
  
  .about table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer p {
    font-size: 13px;
    padding: 12px 15px;
  }
  
  .footer-main {
    padding: 30px 0;
  }
  
  .footer-contact {
    text-align: center !important;
    min-width: auto;
    align-self: center;
  }
  
  .contact-hours {
    font-size: 22px;
    text-align: center !important;
  }
  
  .contact-text {
    text-align: center !important;
  }
  
  .contact-icons {
    justify-content: center !important;
  }
  
  .contact-text {
    font-size: 13px;
    text-align: center;
  }
  
  .footer-disclaimer h4 {
    font-size: 17px;
  }
  
  .footer-disclaimer p {
    font-size: 13px;
  }
  
  .contact-hours {
    font-size: 20px;
  }
  
  .contact-text {
    font-size: 12px;
  }
  
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .age-text {
    font-size: 11px;
  }
  
  .disclaimer-text {
    font-size: 10px;
  }
  
  .cookie-banner {
    padding: 10px 12px;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
  
  .cookie-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Flexbox improvements for better mobile responsiveness */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  border-top: 1px solid #404040;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cookie-text a {
  color: #0bff22;
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
}

.cookie-accept {
  background: #0bff22;
  color: #000;
}

.cookie-accept:hover {
  background: #09e01f;
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid #404040;
}

.cookie-decline:hover {
  background: #404040;
  color: #fff;
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 12px 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    max-width: 100%;
  }
  
  .cookie-text {
    min-width: auto;
    order: 1;
  }
  
  .cookie-text p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
    gap: 12px;
    order: 2;
    flex-direction: row;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 140px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 10px 12px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-text p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  
  .cookie-btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }
}
  
  /* Payment methods mobile optimization */
  .payment-image {
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 15px;
  }
  
  .payment-image img {
    max-height: 40px;
    min-width: 180px;
    object-fit: contain;
  }
  
  .payment-methods {
    padding: 20px 0;
  }
}

/* Mobile Responsive Tables */
@media (max-width: 768px) {
  .about table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13px;
    display: block;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .about table thead {
    display: none;
  }
  
  .about table tbody {
    display: block;
    width: 100%;
  }
  
  .about table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #404040;
    border-radius: 12px;
    background: #2a2a2a;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
  }
  
  .about table tr:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }
  
  .about table td {
    display: flex;
    text-align: left;
    border: none;
    padding: 8px 0;
    position: relative;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }
  
  .about table td:before {
    content: attr(data-label);
    min-width: 90px;
    font-weight: 600;
    color: #0bff22;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    margin-right: 8px;
  }
  
  .about table td:first-child {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid #0bff22;
    display: block;
    background: rgba(11, 255, 34, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin: -16px -16px 12px -16px;
  }
  
  .about table td:first-child:before {
    display: none;
  }
  
  .about table td strong {
    color: #0bff22;
    font-weight: 600;
  }
  
  .about table td span {
    color: #dbe3ea;
  }
  
  /* Ensure no horizontal scrolling */
  .about table {
    max-width: 100%;
    table-layout: fixed;
  }
  
  .about table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .about table {
    font-size: 12px;
    margin: 15px 0;
  }
  
  .about table tr {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .about table td {
    padding: 6px 0;
    flex-direction: column;
    gap: 4px;
    line-height: 1.4;
  }
  
  .about table td:before {
    min-width: auto;
    font-size: 10px;
    margin-bottom: 3px;
    font-weight: 600;
  }
  
  .about table td:first-child {
    font-size: 14px;
    padding-bottom: 8px;
    margin-bottom: 5px;
  }
  
  /* Additional mobile table optimizations */
  .about table {
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .about table td {
    max-width: 100%;
    word-break: break-word;
  }
}

.flag-icon{
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.flag-icon img{
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.disclaimer-text{
  color: #ccc;
  font-size: 11px;
  line-height: 1.5;
  flex: 1;
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px){
  .footer-content{
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .footer-disclaimer{
    max-width: 100%;
    order: 1;
  }
  
  .footer-disclaimer h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .footer-disclaimer p {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }
  
  .footer-contact {
    order: 2;
    text-align: center !important;
    min-width: auto;
  }
  
  .contact-hours {
    text-align: center;
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .contact-text {
    text-align: center;
    font-size: 13px;
  }
  
  .contact-icons {
    justify-content: center !important;
    margin-bottom: 8px;
  }
  
  .footer-bottom-content{
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  
  .age-restriction {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    order: 1;
  }
  
  .age-text {
    text-align: center;
    font-size: 12px;
    max-width: 300px;
  }
  
  .social-links {
    justify-content: center;
    order: 2;
    gap: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    order: 3;
  }
  
  .legal-disclaimer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    order: 4;
  }
  
  .disclaimer-text {
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
  }
  
  .payment-image {
    padding: 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 15px;
  }
  
  .payment-image img{
    max-height: 40px;
    min-width: 180px;
    object-fit: contain;
  }
  
  .payment-methods {
    padding: 20px 0;
  }
}

/* Landscape mobile optimization */
@media (max-width: 900px) and (max-height: 500px) {
  .hero-banner {
    padding: 15px 0;
  }
  
  .banner-content {
    min-height: auto;
    flex-direction: row;
    gap: 15px;
  }
  
  .banner-left,
  .banner-right {
    flex: 1;
    max-width: 200px;
  }
  
  .banner-center {
    flex: 2;
  }
  
  .banner-button {
    padding: 12px 30px;
    font-size: 20px;
  }
  
  .banner-arrow {
    width: 36px;
    height: 36px;
  }
  
  .topbar .inner {
    height: auto;
    min-height: 100px;
    flex-direction: row;
    gap: 15px;
  }
  
  .main-nav {
    position: static;
    transform: none;
    order: 2;
  }
  
  .nav-right {
    order: 3;
  }
  
  body {
    padding-top: 120px;
  }
}

/* Very small mobile devices (320px and below) */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  
  .footer-contact {
    text-align: center !important;
    min-width: auto;
    align-self: center;
  }
  
  .brand .logo {
    width: 120px;
    height: 30px;
  }
  
  .main-nav {
    gap: 12px;
  }
  
  .main-nav a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .btn {
    padding: 8px 14px;
    font-size: 13px;
    min-width: 100px;
    height: 40px;
  }
  
  .topbar .inner {
    height: auto;
    min-height: 130px;
    padding: 8px 12px;
    gap: 8px;
  }
  
  .tile {
    min-height: 70px;
    gap: 10px;
  }
  
  .tile figure {
    padding: 6px 3px 6px 6px;
    font-size: 32px;
    min-width: 45px;
  }
  
  .tile h3 {
    font-size: 14px;
    padding: 10px 10px 0 0;
  }
  
  .tile p {
    font-size: 12px;
    padding: 2px 10px 10px 0;
  }
  
  .banner-badge,
  .banner-action-badge {
    font-size: 14px;
    padding: 5px 10px;
  }
  
  .amount-number {
    font-size: 28px;
    padding: 5px 10px;
  }
  
  .amount-currency {
    font-size: 18px;
  }
  
  .banner-subtitle,
  .banner-action-text {
    font-size: 16px;
  }
  
  .banner-action-text {
    margin-bottom: 0;
  }
  
  .banner-button {
    padding: 12px 24px;
    font-size: 18px;
    width: 95%;
  }
  
  .section-title h2 {
    font-size: 22px;
  }
  
  .about {
    padding: 12px 8px;
  }
  
  .about h1 {
    font-size: 20px;
  }
  
  .about h2 {
    font-size: 17px;
  }
  
  .about p {
    font-size: 13px;
  }
  
  .about table tr {
    padding: 12px;
  }
  
  .about table td {
    padding: 6px 0;
  }
  
  .about table td:first-child {
    font-size: 14px;
    padding: 10px;
    margin: -12px -12px 8px -12px;
  }
}
