

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
html,body{height:100%;}
/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  line-height: 1.5;
}
p{
  color:#fff
}
h1{
  color:#00FF00;
}
h2{
  color:#DD9933!important;
}
/* ---------- FIXED BACKDROP (behind everything, stays put while page scrolls) ---------- */
.backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('../images/background-f8bet.webp');
    background-repeat: no-repeat;
    background-size: cover;
}
.backdrop img{
  position:absolute;
  bottom:0; left:0;
  width:100%;
  height:38%;
  object-fit:cover;
  opacity:.5;
}

/* ---------- PAGE CONTAINER (this is what actually scrolls) ---------- */
.page {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 100%;
    background: #0e0603d6;
    box-shadow: 0 0 60px rgba(0,0,0,0.35);
}

a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; border:none;}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .2px;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    white-space: nowrap;
}
.btn:hover{transform:translateY(-2px); filter:brightness(1.05);}
.btn:active{transform:translateY(0);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.75);
}
.btn-outline:hover{background:rgba(255,255,255,0.12);}
.btn-solid {
    background: linear-gradient(180deg, #027bb0, #027bb0);
    color: #fff;
    box-shadow: 0 8px 16px rgba(230,150,10,0.4);
}
.btn-primary{
  background:linear-gradient(180deg,var(--blue-500),var(--blue-700));
  color:var(--white);
  box-shadow:var(--shadow-btn);
}

/* ---------- TOP BAR ---------- */
.topbar {
    background: #3A2700;
    padding: 5px 10px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo img {
    height: 60px;
    width: auto;
}
.topbar-actions{display:flex; gap:12px;}

.topbar-actions .btn-outline {
    background: linear-gradient(91deg, #dd9933, #dd9933);
    color: #5a3600;
    box-shadow: 0 8px 16px rgba(230,150,10,0.4);
    color: #fff;
}


/* ---------- STICKY NAV ---------- */
.navwrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #e7edf7;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04);
    transition: box-shadow .25s ease, padding .25s ease;
}
.navwrap.scrolled{
  box-shadow:0 8px 24px rgba(10,40,100,0.25);
}
nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #723D01;
}
.nav-links{
  display:flex;
  align-items:center;
}
ul.ullist {
    list-style: disc;
    margin-left: 35px;
    padding-bottom: 15px;
    color: #fff;
    margin-top: 15px;
}
img.internalimage {
    display: flex;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
}
/* ---------- FAQ ---------- */
.faq{
  padding:0 0 60px;
}
.faq {
  padding-top: 0;
  padding-bottom: 60px;
}
.faq h2{
  color:var(--blue-700);
  font-size:clamp(20px,2.6vw,26px);
  margin-bottom:20px;
  text-align:center;
}
.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--ice-200);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    color: rgb(255, 255, 255);
    background: rgba(230,150,10,0.4);
}
.faq-question .icon{
  flex-shrink:0;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--ice-100);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease;
  color:var(--blue-600);
  font-weight:900;
}
.faq-item.open .faq-question .icon{transform:rotate(45deg);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
tbody {
    border: 1px solid #eee;
}
.faq-answer p {
    padding: 10px 20px 0px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}
.nav-links li a{
  display:block;
  padding:16px 18px;
  color:#eaf2ff;
  font-weight:600;
  font-size:18px;
  position:relative;
}
.nav-links li a::after{
  content:"";
  position:absolute;
  left:18px; right:18px; bottom:8px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.nav-links li a:hover{color:#fff;}
.nav-links li a:hover::after{transform:scaleX(1);}
.nav-links li.active a{color:#fff;}
.nav-links li.active a::after{transform:scaleX(1);}

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
}
.burger span{
  width:26px; height:3px; border-radius:2px;
  background:#000;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  overflow:hidden;

}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  align-items:center;
  gap:20px;
}
.hero-figure{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-figure .avatar{
  width:min(340px,90%);
  aspect-ratio:3/4;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  position:relative;
}
.hero-figure .avatar img{
  width:100%; height:100%;
  object-fit:cover;
}
.hero-figure .avatar span{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:18px 0;
  text-align:center;
  background:linear-gradient(180deg, transparent, rgba(11,47,107,0.75));
  color:#fff;
  font-weight:800;
  font-size:15px;
  letter-spacing:.5px;
}
.hero-figure .balloon{
  position:absolute;
  width:70px; height:70px;
}
.b1{top:6%; left:6%;}
.b2{top:0%; left:34%; width:50px; height:50px;}
.b3{top:14%; left:60%; width:60px; height:60px;}

.hero-promo{
  background:var(--white);
  border-radius:20px;
  padding:28px 30px;
  box-shadow:var(--shadow-soft);
}
.hero-promo h1{
  font-size:clamp(22px,3vw,30px);
  color:var(--blue-700);
  font-weight:900;
  margin-bottom:20px;
}
.promo-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.promo-card{
  flex:1 1 160px;
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--ice-100);
  border:1px solid var(--ice-200);
  border-radius:12px;
  padding:12px 14px;
}
.promo-day{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:52px; height:52px;
  border-radius:10px;
  background:linear-gradient(180deg,var(--blue-500),var(--blue-700));
  color:#fff;
  line-height:1.1;
  flex-shrink:0;
}
.promo-day small{font-size:10px; font-weight:700; opacity:.85;}
.promo-day strong{font-size:18px;}
.promo-card p{
  font-weight:700;
  color:var(--blue-900);
  font-size:14px;
}



/* ---------- INFO / SEO TEXT BLOCK ---------- */
.info{
  padding:44px 0 60px;
}


.info-box h2{
  color:var(--blue-700);
  font-size:clamp(20px,2.6vw,26px);
  margin-bottom:14px;
}
.info-box p {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #000;
    color: #fff;
    padding-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-about p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}
.footer-about strong{color:#fff;}
.footer-col h4{
  color:#fff;
  font-size:15px;
  margin-bottom:16px;
  position:relative;
  padding-bottom:8px;
}
.footer-col h4::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:32px; height:2px;
  background:var(--gold);
}
.footer-col li{margin-bottom:10px;}
.footer-col a {
    color: #fff;
    font-size: 16px;
    transition: color .15s ease, padding-left .15s ease;
}
.footer-col a:hover{color:#fff; padding-left:4px;}
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 16px;
    color: #fff;
}
.topbar-actions .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .hero-inner{grid-template-columns:1fr;}
  .quick-grid{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-about{grid-column:1 / -1;}
}

@media (max-width:760px){
  .topbar-inner{padding:10px 16px;}
  .logo img{height:28px;}
  .topbar-actions .btn {
    padding: 6px 6px;
    font-size: 14px;
}

  .burger{display:flex;}
 .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw,320px);
    background: #1a0a02;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
  .nav-links.open{transform:translateX(0);}
  .nav-links li{width:100%;}
  .nav-links li a{padding:14px 0; font-size:16px;}
  .nav-overlay{
    display:none;
    position:fixed; inset:0;
    background:rgba(0,0,0,0.45);
    z-index:999;
  }
  .nav-overlay.show{display:block;}

  .quick-grid{grid-template-columns:repeat(2,1fr);}
  .promo-row{flex-direction:column;}
  .footer-grid{grid-template-columns:1fr;}
  .container {
    padding: 0px 10px;
}
}

@media (max-width:420px){
  .quick-grid{grid-template-columns:1fr 1fr;}
  .hero-promo{padding:20px;}
}

/* On narrow screens the container fills the width — backdrop peeks only on wider viewports */
@media (max-width:900px){
  .page{box-shadow:none;}
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Table Style */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

table th {
    background: linear-gradient(135deg, #dc9832, #723d01);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: #333;
    line-height: 1.6;
}

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

table tbody tr:hover {
    background: #f5f9ff;
}


/* Mobile Responsive */
@media(max-width:768px){

    .table-responsive {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
        font-size: 14px;
    }

    table th,
    table td {
        padding: 12px 14px;
    }
}



.topbar-actions {
    display: flex;
    gap: 12px;
}


/* Animated Border */
.topbar-actions .btn::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: conic-gradient(
        from 0deg,
        #ffd700,
        #ff6600,
        #00e5ff,
        #00ff66,
        #ffd700
    );
    animation: rotateBorder 2.5s linear infinite;
    z-index: -2;
}

.topbar-actions .btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: inherit;
    z-index: -1;
}

/* Button Colors */
.btn-outline {

    color: #fff;
}

.btn-solid {
    background: #e60012;
    color: #fff;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.slot-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.slot-header {
  text-align: center;
  margin-bottom: 35px;
}

.slot-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.slot-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}

.slot-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ec4899, #8b5cf6);
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.slot-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 16px;
  background: #fff7ed;
  margin-bottom: 18px;
}

.slot-card h3 {
  font-size: 20px;
  color: #111827;
  margin: 0 0 12px;
  font-weight: 700;
}

.slot-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}