:root{
  --bg: #5a1d3b;
  --bg-2: #4a1531;
  --text: #ffffff;
  --muted: rgba(255,255,255,.85);
  --nav-gap: 34px;
  --radius: 999px;
}

/* Reset */
*{ box-sizing:border-box; margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  padding-top: 86px; /* header fixed height */
}

a{ color:inherit; text-decoration:none; }

/* Container */
.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER (FIXED TOP)
   ========================= */
.site-header{
  position: fixed; /* fixed always */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
}

/* mobile dropdown positioning */
.header-inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:86px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand-logo{
  width:56px;
  height:56px;
  object-fit:contain;
}
.brand-text{
  font-weight:700;
  letter-spacing:.3px;
  font-size:16px;
  opacity:.95;
  white-space:nowrap;
}

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap: var(--nav-gap);
  flex:1;
  justify-content:center;
}

.nav-link{
  font-weight:700;
  font-size:20px;
  padding:10px 2px;
  position:relative;
  color: var(--muted);
  white-space:nowrap;
}
.nav-link:hover{ color:#fff; }
.nav-link.active{ color:#fff; }

.nav-link.active::after,
.nav-link:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:3px;
  background:#fff;
  border-radius: 6px;
  opacity:.9;
}

/* CTA button */
.cta-btn{
  font-weight:900;
  letter-spacing:.6px;
  padding:14px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #9dff49, #3f8c0f);
  color:#113a00;
  box-shadow:
    0 10px 18px rgba(0,0,0,.25),
    inset 0 2px 0 rgba(255,255,255,.55);
  border: 2px solid rgba(0,0,0,.25);
  white-space:nowrap;
  transition: all .2s ease;
}
.cta-btn:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.cta-btn:active{
  transform: translateY(0) scale(.98);
}

/* Mobile toggle (hamburger) */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  border-radius:12px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:22px;
  margin:6px auto;
  background:#fff;
  border-radius:3px;
}

/* Responsive */
@media (max-width: 1024px){
  .nav-link{ font-size:18px; }
  .site-nav{ gap:22px; }
}

@media (max-width: 860px){
  .brand{ min-width:auto; }
  .brand-text{ display:none; }
  .nav-toggle{ display:block; }

  /* hide nav by default */
  .site-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    background: linear-gradient(180deg, var(--bg), var(--bg-2));
    display:none;
    flex-direction:column;
    padding:16px 0;
    gap:10px;
    border-top: 1px solid rgba(255,255,255,.15);
    z-index: 9999;
  }

  /* open/close */
  .site-header.open .site-nav{ display:flex; }

  .nav-link{
    width: min(520px, 92%);
    text-align:center;
    padding:12px 14px;
    border-radius:14px;
    background: rgba(255,255,255,.06);
    margin: 0 auto;
  }

  .nav-link.active::after,
  .nav-link:hover::after{ display:none; }
}

@media (max-width: 420px){
  .brand-logo{ width:48px; height:48px; }
}

/* =========================
   HERO SECTION
   ========================= */
.hero{
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

/* background image layer */
.hero-bg{
  position:absolute; inset:0;
  background: url("/assets/images/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

/* dark overlay */
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.15) 100%);
}

/* content */
.hero-inner{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap: 24px;
  padding: 58px 0;
}

.hero-left h1{
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.05;
  color:#fff;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(0,0,0,.55);
  margin-bottom: 22px;
}

/* WIN IT button */
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 46px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(180deg, #baff5a, #3f8c0f);
  color: #103500;

  border: 3px solid rgba(0,0,0,.25);
  box-shadow: 0 16px 30px rgba(0,0,0,.40), inset 0 2px 0 rgba(255,255,255,.60);
  transition: transform .2s ease, filter .2s ease;
}
.hero-btn:hover{
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.04);
}
.hero-btn:active{
  transform: translateY(0) scale(.98);
}

/* right images */
.hero-right{
  position: relative;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}
.hero-figure{
  width: min(640px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.45));
}

/* bottom-right badge (optional) */
.hero-badge{
  position:absolute;
  right: -10px;
  bottom: -22px;
  width: min(260px, 38vw);
  height:auto;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.45));
}

/* cookie floating button (optional) */
.cookie-fab{
  position:absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #ff2e2e;
  color:#fff;
  font-size: 22px;
  box-shadow: 0 12px 22px rgba(0,0,0,.35);
}

/* responsive */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    padding: 42px 0;
    text-align: left;
  }
  .hero-right{
    justify-content:center;
  }
  .hero-badge{
    right: 6px;
    bottom: -18px;
  }
}

@media (max-width: 520px){
  .hero{ min-height: 560px; }
  .hero-left h1{ margin-bottom: 16px; }
  .hero-btn{ padding: 14px 34px; }
}


/* =========================
   PROMO BANNER (CENTER TEXT)
   ========================= */
.promo-banner{
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

/* background image */
.promo-bg{
  position:absolute;
  inset:0;
  background: url("/assets/images/promo-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

/* purple overlay panel */
.promo-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* content */
.promo-content{
  text-align:center;
  padding: 40px 0;
}

.promo-content h2{
  color:#fff;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.08;
  text-shadow: 0 10px 18px rgba(0,0,0,.45);
  margin-bottom: 14px;
}

.promo-content p{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 34px);
  text-shadow: 0 8px 14px rgba(0,0,0,.35);
}

/* responsive */
@media (max-width: 520px){
  .promo-banner{ min-height: 300px; }
  .promo-content{ padding: 28px 0; }
}

/* =========================
   SLOT CARDS (IMAGE ONLY)
   ========================= */
.slots-section{
  padding: 30px 0 60px;
  background:#5a1d3b;
}

.slots-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
  
}

/* Card */
.slot-card{
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 3px solid #d3a13a; /* gold */
  box-shadow: 0 16px 28px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.slot-card:hover{
  transform: translateY(-4px);
}

.slot-card img{
  width:100%;
  height:100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display:block;
}

/* CTA under cards */
.slots-cta{
  text-align:center;
}

.slots-main-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 14px 48px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(180deg, #baff5a, #3f8c0f);
  color: #103500;

  border: 2px solid rgba(0,0,0,.25);
  box-shadow:
    0 14px 26px rgba(0,0,0,.4),
    inset 0 2px 0 rgba(255,255,255,.6);

  transition: transform .2s ease, filter .2s ease;
}

.slots-main-btn:hover{
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.05);
}
.slots-main-btn:active{
  transform: translateY(0) scale(.98);
}

/* Responsive */
@media (max-width:1100px){
  .slots-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:860px){
  .slots-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:480px){
  .slots-grid{ grid-template-columns: 1fr; }
}


/* =========================
   FEATURES (GOLD FRAMED CARDS)
   ========================= */
.features{
  background: #8b1f4a; /* maroon */
  padding: 42px 0 54px;
}

/* grid */
.features-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* card */
.feature-card{
  position:relative;
  background: rgba(255,255,255,.12);
  border: 4px solid #d3a13a;         /* gold frame */
  border-radius: 18px;
  padding: 26px 18px 26px;
  text-align:center;
  min-height: 320px;
  box-shadow: 0 18px 28px rgba(0,0,0,.25);
  overflow:hidden;
}

/* gold corner ornaments (optional images) */
.feature-card::before,
.feature-card::after{
  content:"";
  position:absolute;
  width: 42px;
  height: 42px;
  background: url("/assets/images/gold-corner.png") center/contain no-repeat;
  opacity: 1;
  pointer-events:none;
}

/* top-left & bottom-right */
.feature-card::before{
  left: -6px;
  top: -6px;
}
.feature-card::after{
  right: -6px;
  bottom: -6px;
  transform: rotate(180deg);
}

/* add 2 more corners using spans */
.feature-card .corner{
  position:absolute;
  width:42px;
  height:42px;
  background: url("/assets/images/gold-corner.png") center/contain no-repeat;
  pointer-events:none;
}
.feature-card .corner.tr{ right:-6px; top:-6px; transform: rotate(90deg); }
.feature-card .corner.bl{ left:-6px; bottom:-6px; transform: rotate(-90deg); }

/* icon */
.feature-icon{
  height: 86px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}
.feature-icon img{
  max-height: 80px;
  width:auto;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.25));
}

/* text */
.feature-card h3{
  color:#fff;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 10px 16px rgba(0,0,0,.25);
}

.feature-card p{
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
}

/* responsive */
@media (max-width: 1200px){
  .features-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px){
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .features-grid{ grid-template-columns: 1fr; }
}


/* =========================
   CTA PURPLE SECTION
   ========================= */
.cta-strip{
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: #3b0b67;
}

/* background layer */
.cta-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.10), transparent 45%),
    linear-gradient(180deg, #4b0f7d 0%, #2a0553 100%);
  opacity: 1;
}

/* neon side strips */
.cta-neon{
  position:absolute;
  top:0; bottom:0;
  width: 22px;
  background: linear-gradient(180deg, rgba(255,70,255,.25), rgba(170,80,255,.8), rgba(255,70,255,.25));
  filter: blur(.2px);
  opacity: .9;
}
.cta-neon.left{ left: 14px; }
.cta-neon.right{ right: 14px; }

.cta-inner{
  position: relative;
  z-index: 2;
  text-align:center;
}

.cta-inner h2{
  color:#fff;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1.05;
  text-shadow: 0 10px 18px rgba(0,0,0,.45);
  margin-bottom: 16px;
}

.cta-inner p{
  max-width: 920px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  text-shadow: 0 8px 16px rgba(0,0,0,.30);
}

/* big green button */
.cta-big-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 18px 64px;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: 1.2px;
  text-transform: uppercase;

  background: linear-gradient(180deg, #baff5a, #3f8c0f);
  color: #103500;

  border: 3px solid rgba(0,0,0,.25);
  box-shadow: 0 18px 34px rgba(0,0,0,.45), inset 0 2px 0 rgba(255,255,255,.60);
  transition: transform .2s ease, filter .2s ease;
}
.cta-big-btn:hover{
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
}
.cta-big-btn:active{
  transform: translateY(0) scale(.98);
}

/* floating assets (optional) */
.cta-float{
  position:absolute;
  z-index: 1;
  width: 70px;
  height:auto;
  opacity: .95;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.35));
  animation: floaty 4.5s ease-in-out infinite;
}
.coin-1{ left: 60px; top: 110px; transform: rotate(-18deg); }
.coin-2{ left: 120px; bottom: 90px; transform: rotate(22deg); width: 60px; }
.gem-1{ right: 90px; bottom: 90px; width: 64px; transform: rotate(-10deg); animation-duration: 5.3s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); }
  50%{ transform: translateY(-10px) rotate(var(--r,0deg)); }
}

/* responsive */
@media (max-width: 600px){
  .cta-strip{ padding: 56px 0; }
  .cta-neon.left{ left: 8px; }
  .cta-neon.right{ right: 8px; }
  .cta-float{ display:none; } /* mobile pe clean */
}

/* =========================
   BLOG SECTION (Responsive)
   ========================= */
.blog-section{
  background: #6a35e8; /* purple */
  padding: 60px 0 70px;
}

/* H1 heading center */
.blog-h1{
  text-align: center;
  color:#fff;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 52px);
  line-height: 1.1;
  margin: 0 0 34px;
  text-shadow: 0 10px 18px rgba(0,0,0,.25);
}

/* Grid */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 26px;
}

/* Card */
.blog-card{
  background: transparent;
  color:#fff;
}

/* Image */
.blog-img{
  border-radius: 14px;
  overflow:hidden;
  border: 3px solid #d3a13a; /* gold */
  box-shadow: 0 16px 26px rgba(0,0,0,.35);
  background: rgba(0,0,0,.12);
}

.blog-img img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

.blog-card:hover .blog-img img{
  transform: scale(1.07);
  filter: brightness(1.02);
}

/* Content */
.blog-content{
  padding-top: 16px;
}

.blog-meta{
  font-size: 14px;
  font-weight: 700;
  opacity:.92;
  margin-bottom: 10px;
}

.blog-content h3{
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Button */
.blog-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.7);
  color:#fff;
  transition: all .2s ease;
  white-space: nowrap;
}

.blog-btn:hover{
  background:#fff;
  color:#6a35e8;
}

/* Explore more button */
.blog-cta{
  margin-top: 50px;
  text-align:center;
}

.blog-main-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 54px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .8px;
  background: transparent;
  border: 2px solid #fff;
  color:#fff;
  transition: all .25s ease;
  white-space: nowrap;
}

.blog-main-btn:hover{
  background:#fff;
  color:#6a35e8;
}

/* =========================
   Responsive Breakpoints
   ========================= */

/* Large tablets */
@media (max-width: 1100px){
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 22px;
  }
  .blog-content h3{
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 640px){
  .blog-section{
    padding: 46px 0 60px;
  }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blog-content{
    padding-top: 14px;
  }

  .blog-content h3{
    font-size: 22px;
  }

  .blog-btn{
    width: 100%;
    padding: 12px 18px;
  }

  .blog-main-btn{
    width: min(420px, 92%);
    padding: 14px 28px;
  }
}

/* Very small phones */
@media (max-width: 420px){
  .blog-meta{ font-size: 13px; }
  .blog-content h3{ font-size: 20px; }
}


/* =========================
   FOOTER (CASINO STYLE)
   ========================= */
.site-footer{
  background: radial-gradient(circle at 50% 10%, rgba(255,255,255,.10), transparent 45%),
              linear-gradient(180deg, #8b0f77 0%, #4a0d56 100%);
  color:#fff;
  padding: 0 0 32px;
}

.footer-topline{
  height: 6px;
  background: linear-gradient(90deg, #d3a13a, #f6d77a, #d3a13a);
}

.footer-wrap{
  display:grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 22px;
  align-items:center;
  padding: 40px 0 26px;
}

/* Left */
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.footer-brand img{
  width:86px;
  height:auto;
}

.footer-social{
  margin-top: 18px;
  display:flex;
  gap:14px;
}
.footer-social a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 50%;
  border:2px solid rgba(255,255,255,.35);
  font-weight:900;
  background: rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease;
}
.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
}

/* Stores */
.footer-stores{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.store-badge{
  border:2px solid rgba(255,255,255,.35);
  border-radius: 16px;
  padding: 10px 14px;
  background: rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease;
}
.store-badge:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
}
.store-badge img{
  height: 34px;
  width:auto;
  display:block;
}

/* Right partner */
.footer-right{
  display:flex;
  justify-content:flex-end;
}
.partner{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size: 32px;
}
.partner img{
  width:54px;
  height:auto;
  display:block;
}

/* Divider */
.footer-divider{
  height:1px;
  background: rgba(255,255,255,.25);
  margin: 10px 0 18px;
}

/* Links row */
.footer-links{
  display:flex;
  gap: 26px;
  justify-content:center;
  flex-wrap:wrap;
  padding: 8px 0 16px;
}
.footer-links a{
  font-weight:800;
  opacity:.95;
}
.footer-links a:hover{
  text-decoration: underline;
}

/* Copy */
.footer-copy{
  text-align:center;
  opacity:.95;
  font-weight:700;
  padding-top: 8px;
}

/* Responsive */
@media (max-width: 1100px){
  .footer-wrap{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .footer-right{ justify-content:center; }
  .footer-social{ justify-content:center; }
}


