*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Poppins, sans-serif;
}

body{
  background:#fff;
}

/* COMMON */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header{
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}

/* LOGO */
.logo img{
  width: 180px;
  height: auto;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
}

.nav a{
  margin-left:28px;
  text-decoration:none;
  color:#111;
  font-weight:600;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ff7a00;
  transition:0.3s;
}

.nav a:hover::after{
  width:100%;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:#111;
  margin:4px 0;
  transition:0.3s;
}

/* HAMBURGER ANIMATION */
.hamburger.open span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.open span:nth-child(2){
  opacity:0;
}

.hamburger.open span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .logo img{
    width: 150px;
    height: auto;
  }

  .hamburger{
    display:flex;
  }

  .nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    max-height:0;
    overflow:hidden;
    transition:0.3s ease;
  }

  .nav.active{
    max-height:300px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
  }

  .nav a{
    margin:18px 0;
    font-size:18px;
  }
}

/* Hero Section */
/* SECTION */
.hero-original{
  background:linear-gradient(180deg, #fdebd7, transparent);
  padding:120px 0 20px;
}

/* INNER WRAP */
.hero-original-inner{
  max-width:1500px;
  margin:auto;
  padding:0 50px;
  display:flex;
}

/* LEFT IMAGE BLOCK */
.hero-original-left{
  width:55%;
  display:flex;
  align-items:flex-end; /* ?? phones thoda niche */
}

.hero-original-left img{
  width:100%;
  max-width:650px;
  display:block;
}

/* RIGHT CONTENT BLOCK */
.hero-original-right{
  width:45%;
  display:flex;
  align-items:center;   /* ?? vertical center EXACT */
  margin-top: -200px;
}

/* CONTENT */
.hero-original-content{
  max-width:670px;
  text-align: center;
}

.hero-original-content h1{
  font-size:55px;
  line-height:1.15;
  margin-bottom:26px;
  color:#111;
  text-align: center;
}

.txt-orange{ color:#ff7a00; }
.txt-green{ color:#1f9d3a; }

.hero-original-amount{
  font-size:42px;
  font-weight:800;
  color:#ff7a00;
  margin-bottom:20px;
}

.hero-original-sub{
  font-size:25px;
  font-weight:600;
  margin-bottom:30px;
}

/* ARROW */
.hero-original-arrow{
  /* width:56px;
  height:56px;
  border:3px solid #ff7a00;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#ff7a00; */
}
.hero-original-arrow img{
  width: 60px;
}

html{
  scroll-behavior:smooth;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:1024px){
  .hero-original-inner{
    flex-direction:column;
  }

  .hero-original-left,
  .hero-original-right{
    width:100%;
  }

  .hero-original-left{
    justify-content:center;
    margin-bottom:50px;
  }

  .hero-original-right{
    justify-content:center;
    text-align:center;
    margin-top: 0;
  }

  .hero-original-arrow{
    margin:auto;
  }
}

/* Mobile */
@media(max-width:600px){
  .hero-original{
    padding:80px 0 60px;
  }

  .hero-original-content h1{
    font-size:32px;
    margin-top: -40px;
  }

  .hero-original-amount{
    font-size:30px;
  }

  .hero-original-left img{
    max-width:420px;
  }
}

@media (max-width: 450px) {
    .hero-original-content h1 {
        font-size: 30px;
        margin-top: -40px;
    }
}


/* GAMES STATS SECTION */
.games-stats{
  background:#ffffff;
  padding:30px 0;
}

.games-title{
  text-align:center;
  font-size:44px;
  font-weight:500;
  margin-bottom:60px;
  letter-spacing:2px;
}

.games-title::after{
    content: "";
    display: block;
    width: 170px;
    height: 4px;
    background: #111;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* GRID */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  align-items:center;
  text-align:center;
}

/* STAT BOX */
.stat-box{
  position:relative;
}

/* Vertical Divider */
.stat-box:not(:last-child)::after{
  content:"";
  position:absolute;
  top:10%;
  right:-15px;
  width:2px;
  height:90%;
  background:#ff7a00;
}

/* Numbers */
.stat-box h3{
  font-size:48px;
  font-weight:800;
  color:#ff7a00;
  margin-bottom:12px;
}

/* Text */
.stat-box p{
  font-size:18px;
  font-weight:600;
  color:#111;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media(max-width:1024px){
  .games-title{
    font-size:36px;
  }

  .stat-box h3{
    font-size:42px;
  }
}

/* Small Tablet */
@media(max-width:768px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px 20px;
  }

  .stat-box::after{
    display:none;
  }
}

/* Mobile */
@media(max-width:480px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px 20px;
  }

  .games-title{
    font-size:30px;
    margin-bottom:40px;
  }

  .stat-box h3{
    font-size:36px;
  }

  .stat-box p{
    font-size:16px;
  }
}

/* GAMES SECTION */
.games-section{
  padding:50px 0;
  background:#fff;
}

.games-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

/* CARD */
.game-card{
  border-radius:24px;
  overflow:hidden;
  background:#000;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  transition:0.3s;
}

.game-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.game-img{
  width:100%;
  height:360px;
  object-fit:cover;
}

/* INFO */
.game-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  color:#fff;
  background:rgba(0,0,0,0.6);
}

.game-info h4{
  font-size:18px;
  margin-bottom:4px;
}

.game-info p{
  font-size:14px;
  opacity:0.9;
}

/* STORE ICONS */
.store-icons a{
  margin-left:8px;
}

.store-icons img{
  width:26px;
  cursor:pointer;
  transition:0.2s;
}

.store-icons img:hover{
  transform:scale(1.1);
}

/* BUTTON */
.all-games-btn{
  text-align:center;
  margin-top:50px;
}

.all-games-btn a{
  display:inline-block;
  background:#ff7a00;
  color:#fff;
  padding:16px 70px;
  border-radius:40px;
  font-size:18px;
  text-decoration:none;
  font-weight:600;
}

/* ================= SLIDER MODE ================= */

/* Tablet + Mobile ? SLIDER */
@media(max-width:1024px){
  .games-grid{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
  }

  .game-card{
    min-width:48%;        /* 2 cards visible on tablet */
    scroll-snap-align:start;
    flex-shrink:0;
  }

  .games-grid::-webkit-scrollbar{
    display:none;
  }
}

/* Mobile ? 1 card slider */
@media(max-width:600px){
  .game-card{
    min-width:85%;        /* 1 card visible */
  }

  .game-img{
    height:320px;
  }
}

/* ABOUT SECTION */
.about-section{
  padding:50px 0;
  background:#fff;
}

.about-title{
  text-align:center;
  font-size:42px;
  font-weight:500;
  margin-bottom:60px;
}

.about-title::after{
    content: "";
    display: block;
    width: 230px;
    height: 4px;
    background: #111;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* CARD */
.about-card{
  background:#fff;
  border-radius:20px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* CONTENT */
.about-content{
  flex:1;
}

.about-content p{
  font-size:22px;
  line-height:1.7;
  text-align: justify;
  color:#222;
  margin-bottom:30px;
}

.highlight{
  color:#ff7a00;
  font-weight:800;
}

/* BUTTON */
.about-btn{
  display:inline-block;
  background:#ff7a00;
  color:#fff;
  padding:16px 40px;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
  text-decoration:none;
}

/* IMAGE */
.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:20px;
  display:block;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .about-card{
    padding:30px;
  }
}

@media(max-width:768px){
  .about-card{
    flex-direction:column;
    text-align:center;
  }

  .about-content p{
    font-size:16px;
  }

  .about-title{
    font-size:32px;
  }
}

/* Our Philosophy Section */

  .philo-section{
    background:#fff7ef;
    padding:60px 0 30px;
  }

  .philo-container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    display:flex;
    align-items:center;
    gap:80px;
  }

  /* LEFT CONTENT */
  .philo-content{
    flex:1;
  }

  .philo-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:25px;
    font-weight:600;
    color:#000;
    margin-bottom:14px;
  }

  .philo-content h2{
    font-size:46px;
    font-weight:800;
    color:#000;
    margin-bottom:24px;
  }

  .philo-content h2 span{
    color:#ff7a00;
  }

  .philo-content p{
    font-size:18px;
    line-height:1.7;
    color:#333;
    margin-bottom:16px;
  }

  .philo-highlight{
    font-weight:700;
    font-size:17px;
    color:#0b2a55;
  }

  /* RIGHT IMAGE */
  .philo-visual{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
  }

  .philo-visual img{
    width:100%;
    max-width:600px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
  }

  /* ================= RESPONSIVE ================= */

  @media(max-width:992px){
    .philo-container{
      flex-direction:column;
      text-align:center;
    }

    .philo-visual{
      margin-top:50px;
    }
  }

  @media(max-width:600px){
    .philo-section{
      padding:80px 0;
    }

    .philo-content h2{
      font-size:32px;
    }
  }


/* End Our Philosophy Section */

/* Start Our Opportunity Section */

/* Opportunity Section */

.opportunity-wrap{
  background:#fff;
  padding:60px 0;
}

.opportunity-inner{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  gap:80px;
}

/* LEFT IMAGE */
.opportunity-media{
  flex:1;
  display:flex;
  justify-content:center;
}

.opportunity-media img{
  width:100%;
  max-width:600px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.opportunity-text{
  flex:1;
}

/* Small label */
.opportunity-kicker{
  display:inline-block;
  font-size:25px;
  font-weight:600;
  color:#000;
  margin-bottom:14px;
}

/* Heading */
.opportunity-text h2{
  font-size:46px;
  font-weight:800;
  color:#000;
  margin-bottom:24px;
}

.opportunity-text h2 span{
  color:#ff7a00;
}

/* Paragraph */
.opportunity-text p{
  font-size:18px;
  line-height:1.7;
  color:#333;
  margin-bottom:18px;
}

/* Sub headings */
.opportunity-text h4{
  font-size:20px;
  font-weight:700;
  color:#0b2a55;
  margin:26px 0 14px;
}

/* Lists */
.opportunity-text ul{
  padding-left:18px;
  margin-bottom:20px;
}

.opportunity-text li{
  font-size:17px;
  line-height:1.7;
  color:#333;
  margin-bottom:12px;
}

.opportunity-text li strong{
  font-weight:700;
  color:#0b2a55;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .opportunity-inner{
    flex-direction:column;
    text-align:center;
  }

  .opportunity-media{
    margin-bottom:50px;
  }

  .opportunity-text ul{
    text-align:left;
    max-width:520px;
    margin:auto;
  }
}

@media(max-width:600px){
  .opportunity-wrap{
    padding:80px 0;
  }

  .opportunity-text h2{
    font-size:32px;
  }

  .opportunity-text p,
  .opportunity-text li{
    font-size:16px;
  }

  .opportunity-kicker{
    font-size:20px;
  }
}

/* End Our Opportunity Section */

/* Start Strategy Section */

/* Strategy Section */

.strategy-section{
  background:#fff7ef;
  padding:60px 0;
}

.strategy-container{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  gap:80px;
}

/* LEFT CONTENT */
.strategy-content{
  flex:1;
}

.strategy-label{
  display:inline-block;
  font-size:25px;
  font-weight:600;
  color:#000;
  margin-bottom:14px;
}

.strategy-content h2{
  font-size:46px;
  font-weight:800;
  color:#000;
  margin-bottom:24px;
}

.strategy-content h2 span{
  color:#ff7a00;
}

.strategy-content p{
  font-size:18px;
  line-height:1.7;
  color:#333;
  margin-bottom:16px;
}

.strategy-highlight{
  font-weight:700;
  font-size:17px;
  color:#0b2a55;
}

/* RIGHT IMAGE */
.strategy-visual{
  flex:1;
  display:flex;
  justify-content:center;
}

.strategy-visual img{
  width:100%;
  max-width:600px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .strategy-container{
    flex-direction:column;
    text-align:center;
  }

  .strategy-visual{
    margin-top:50px;
  }
}

@media(max-width:600px){
  .strategy-section{
    padding:80px 0;
  }

  .strategy-content h2{
    font-size:32px;
  }

  .strategy-content p{
    font-size:16px;
  }
}


/* End Strategy Section */

/* Start Experience Section */

/* Built with Experience Section */

.experience-section{
  background:#fff;
  padding:60px 0;
}

.experience-container{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  gap:80px;
}

/* LEFT IMAGE */
.experience-visual{
  flex:1;
  display:flex;
  justify-content:center;
}

.experience-visual img{
  width:100%;
  max-width:600px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.experience-content{
  flex:1;
}

/* Label */
.experience-label{
  display:inline-block;
  font-size:25px;
  font-weight:600;
  color:#000;
  margin-bottom:14px;
}

/* Heading */
.experience-content h2{
  font-size:46px;
  font-weight:800;
  color:#000;
  line-height:1.15;
  margin-bottom:24px;
}

.experience-content h2 span{
  color:#ff7a00;
}

/* Paragraphs */
.experience-content p{
  font-size:18px;
  line-height:1.7;
  color:#333;
  margin-bottom:16px;
}

/* Subheading */
.experience-content h4{
  font-size:20px;
  font-weight:700;
  color:#000;
  margin:26px 0 14px;
}

/* Company List */
.experience-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 30px;
}

.experience-list li{
  font-size:17px;
  font-weight:600;
  color:#333;
  position:relative;
  padding-left:18px;
}

.experience-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#ff7a00;
  font-size:22px;
  line-height:1;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .experience-container{
    flex-direction:column;
    text-align:center;
  }

  .experience-visual{
    margin-bottom:50px;
  }

  .experience-list{
    grid-template-columns:1fr;
    max-width:360px;
    margin:auto;
    text-align:left;
  }
}

@media(max-width:600px){
  .experience-section{
    padding:80px 0;
  }

  .experience-content h2{
    font-size:32px;
  }

  .experience-content p{
    font-size:16px;
  }

  .experience-list li{
    font-size:16px;
  }
}


/* End Experience Section */

/* Start New Game Result Section */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trust-clone {
  background: #fff;
  padding: 50px 20px 0px;
}

.trust-container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.trust-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1c2b36;
  max-width: 900px;
  margin: 0 auto 80px;
  line-height: 1.3;
}

.trust-title span {
  color: #1b8cff;
}

/* Layout */
.trust-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.7fr;
  align-items: center;
  gap: 40px;
}

/* Left & Right Columns */
.trust-col {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.padright{
  padding-left: 50px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-item img {
  width: 80px;
  flex-shrink: 0;
}

.trust-item h3 {
  font-size: 34px;
  font-weight: 500;
  color: #1f1818;
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

/* Center Image */
.trust-center img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: auto;
  border-radius: 25px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .trust-col {
    align-items: center;
    text-align: center;
  }

  .trust-item {
    justify-content: center;
  }
}

@media (max-width: 600px) {

  /* Heading */
  .trust-title {
    font-size: 18px;
    margin-bottom: 40px;
  }

  /* Layout order */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Center image first */
  .trust-center {
    order: 1;
  }

  /* Left + Right content together */
  .trust-col.left {
    order: 2;
  }

  .trust-col.right {
    order: 3;
    padding-left: 0;
  }

  /* Merge left & right items into 2-column grid */
  .trust-col.left,
  .trust-col.right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    text-align: center;
    justify-items: center;
  }

  /* Trust item styling */
  .trust-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-item img {
    width: 60px;
  }

  .trust-item h3 {
    font-size: 22px;
  }

  .trust-item p {
    font-size: 14px;
  }

  /* Center image size */
  .trust-center img {
    max-width: 320px;
    border-radius: 20px;
  }
}



/* End New Game Result Section */

/* Our Story Section */
:root{
  --orange:#ff7a00;
  --text:#333;
}

/* SECTION */
.story-section{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;
}

.story-title{
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 60px;
}

.story-title::after{
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background: #111;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* TIMELINE */
.story-timeline{
  position:relative;
  max-width:1100px;
  margin:auto;
}

/* CENTER LINE */
.story-timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:4px;
  height:100%;
  background:var(--orange);
}

/* ROW */
.story-row{
  display:flex;
  width:100%;
  margin-bottom:60px;
  position:relative;
}

.story-row.left{ flex-direction:row; }
.story-row.right{ flex-direction:row-reverse; }

/* CONTENT & IMAGE */
.story-content,
.story-image{
  width:50%;
  padding:0 30px;
}

/* IMAGE */
.story-image img{
  max-width:250px;
  display:block;
  margin:auto;
}

/* DOT */
/* DOT OUTER - PERFECT CENTER */
.story-row::before{
  content:"";
  position:absolute;
  top:50%;                          /* ?? MAIN FIX */
  left:50%;
  transform:translate(-50%, -50%);
  width:26px;
  height:26px;
  background:#fff;
  border:3px solid var(--orange);
  border-radius:50%;
  z-index:3;
}

/* DOT INNER */
.story-row::after{
  content:"";
  position:absolute;
  top:50%;                          /* ?? MAIN FIX */
  left:50%;
  transform:translate(-50%, -50%);
  width:8px;
  height:8px;
  background:var(--orange);
  border-radius:50%;
  z-index:4;
}


/* BOX */
.story-box{
  background:#fff;
  border-radius:18px;
  border:2px solid var(--orange);
  padding:22px 26px;
  box-shadow:0 6px 0 var(--orange);
}

.story-box h4{
  margin:0 0 8px;
  font-size:14px;
  font-weight:700;
  color:var(--orange);
  text-transform:uppercase;
}

.story-box p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--text);
}

/* ================= MOBILE FIX ================= */
@media(max-width:900px){

  /* LINE LEFT */
  .story-timeline::before{
    left:20px;
    transform:none;
  }

  .story-row{
    flex-direction:column;
    padding-left:50px;
    margin-bottom:60px;
  }

  .story-content,
  .story-image{
    width:100%;
    padding:0;
  }

  .story-image{
    margin-top:16px;
  }

  /* DOT LEFT */
  .story-row::before,
  .story-row::after{
    left:20px;                      /* line position */
    transform:translate(-50%, -50%);
  }

  .story-image img{
    max-width:180px;
    margin-left:0;
  }
}

/* ================= MOBILE IMAGE HIDE FIX ================= */
@media(max-width:900px){

  /* hide all story images on mobile */
  .story-image{
    display:none;
  }

  /* content full width le */
  .story-content{
    width:100%;
  }

  /* thodu spacing clean karva */
  .story-row{
    padding-left:40px;
  }
}

@media(max-width:500px){
  .story-title{
  font-size: 30px;
  margin-bottom: 40px;
}
}


/* GAME INFO SECTION */
.game-info-section{
  padding:50px 0;
  background:#fff;
}

/* CARD */
.game-info-card{
  background:#fff;
  border-radius:26px;
  padding:40px;
  display:flex;
  align-items:center;
  gap:40px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* CONTENT */
.game-info-content{
  flex:1;
}

.game-info-content p{
  font-size:18px;
  line-height:1.6;
  color:#222;
  margin-bottom:30px;
}

/* HIGHLIGHT */
.game-title-highlight{
  color:#ff7a00;
  font-weight:800;
  font-size:20px;
}

/* BUTTON */
.game-info-btn{
  display:inline-block;
  background:#ff7a00;
  color:#fff;
  padding:16px 42px;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.game-info-btn:hover{
  background:#e56f00;
}

/* IMAGE */
.game-info-image{
  flex:1;
}

.game-info-image img{
  width:100%;
  border-radius:22px;
  display:block;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .game-info-card{
    padding:30px;
  }
}

@media(max-width:768px){
  .game-info-card{
    flex-direction:column;
    text-align:center;
  }

  .game-info-content p{
    font-size:16px;
  }
}

/* BLACKJACK INFO SECTION */
.bj-info-section{
  padding:50px 0;
  background:#fff;
}

/* CARD */
.bj-info-card{
  background:#fff;
  border-radius:26px;
  padding:40px;
  display:flex;
  align-items:center;
  gap:40px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.bj-info-image{
  flex:1;
}

.bj-info-image img{
  width:100%;
  border-radius:22px;
  display:block;
}

/* CONTENT */
.bj-info-content{
  flex:1;
}

.bj-info-content p{
  font-size:18px;
  line-height:1.6;
  color:#222;
  margin-bottom:30px;
}

/* TITLE HIGHLIGHT */
.bj-title-highlight{
  color:#ff7a00;
  font-weight:800;
  font-size:20px;
}

/* BUTTON */
.bj-info-btn{
  display:inline-block;
  background:#ff7a00;
  color:#fff;
  padding:16px 42px;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.bj-info-btn:hover{
  background:#e56f00;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .bj-info-card{
    padding:30px;
  }
}

@media(max-width:768px){
  .bj-info-card{
    flex-direction:column;
    text-align:center;
  }

  .bj-info-content p{
    font-size:16px;
  }
}



/* LOCATED SECTION */
.located-section{
  padding:50px 0;
  background:#fff;
}

.section-title{
  text-align:center;
  font-size:42px;
  font-weight:500;
  margin-bottom:60px;
}

.section-title::after{
  content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #111;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* GRID */
.location-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}

/* CARD */
.location-card{
  background:#fff;
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.location-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.location-img{
  width:200px;
  height:200px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
}

.location-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.location-card h4{
  font-size:25px;
  font-weight:700;
  color:#ff7a00;
  margin-bottom:10px;
}

.address{
  font-size:18px;
  color:#333;
  line-height:1.5;
}

.pin{
  margin-right:6px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .location-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .location-grid{
    grid-template-columns:2fr;
  }

  .section-title{
    font-size:32px;
  }
}


/* SUPPORT SECTION */
.support-section{
  max-width:1300px;
  margin:auto;
  padding:50px 20px;
  text-align:center;
}

/* ===== HEADINGS ===== */
.support-title{
  font-size:36px;
  font-weight:500;
}

.support-title::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:#111;
  margin:10px auto 0;
  border-radius:3px;
}

.support-subtitle{
  margin-top:35px;
  font-size:30px;
  font-weight:800;
  color:#ff7a00;
}

.support-desc{
  max-width:850px;
  margin:18px auto 70px;
  font-size:20px;
  line-height:1.5;
}

/* ===== GRID ===== */

.support-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:0 20px;
}

/* ===== CARD ===== */
.support-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
}

/* IMAGE FULL */
.support-card img{
  width:100%;
  height:100%;
  display:block;
  border-radius:28px;
}

/* CONTENT PANEL */
.card-content{
  position:absolute;
  bottom:12px;
  left:12px;
  right:12px;

  /* background:rgba(255,255,255,0.78); */
  backdrop-filter:blur(12px);

  border-radius:22px;
  padding:18px 16px;

  /* box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 6px 12px rgba(0,0,0,.12); */
}

/* TEXT */
.card-content h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:800;
  color:#111;
}

.card-content p{
  margin:0;
  font-size: 18px;
    font-weight: 700;
  line-height:1.4;
  color:#222;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px){
  .support-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .support-grid{
    grid-template-columns:1fr;
  }

  .support-subtitle{
    font-size:24px;
  }

  .support-desc{
    font-size:17px;
  }
}

/* Start New Support Section */

.gaming-showcase-support {
    padding: 65px 0;
    /* background: linear-gradient(135deg, #f8fbff, #eef3f9); */
    background: #fff7ef;
    text-align: center;
}

.gaming-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */
.gaming-showcase-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    position: relative;
}

/* IMAGE AREA */
.image-area {
    padding: 30px 0 0 0;
    /* background: linear-gradient(135deg, #f3f6fb, #e8eef7); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-area img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

/* CONTENT */
.content-area {
    padding: 10px 30px 45px;
    text-align: center;
}

.content-area h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.content-area p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Hover */
.gaming-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* COLOR ACCENT STRIP */
.gaming-showcase-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 6px;
    border-radius: 10px;
}

/* COLOR THEMES */

.orange::after { background: #ff6a00; }
.blue::after { background: #2563eb; }
.green::after { background: #16a34a; }
.purple::after { background: #7c3aed; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gaming-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gaming-showcase-grid {
        grid-template-columns: 1fr;
    }
}


/* End New Support Section */

/* CONTACT SECTION */
.contact-section{
  padding:50px 0;
  background:#fff;
}

.contact-title{
  text-align:center;
  font-size:42px;
  font-weight:500;
}

.contact-title::after{
  content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #111;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* FORM */
.contact-form{
  max-width:700px;
  margin:auto;
}

/* GROUP */
.form-group{
  margin-bottom:25px;
}

.form-group label{
  display:block;
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}

/* INPUTS */
.form-group input,
.form-group textarea{
  width:100%;
  padding:16px 18px;
  border:none;
  border-radius:14px;
  background:#f3f5f4;
  font-size:16px;
  outline:none;
}

.form-group textarea{
  resize:none;
  min-height:150px;
}

/* BUTTON */
.send-btn{
  display:block;
  margin:40px auto 0;
  background:#ff7a00;
  color:#fff;
  border:none;
  padding:16px 60px;
  font-size:18px;
  font-weight:600;
  border-radius:40px;
  cursor:pointer;
  transition:0.3s;
}

.send-btn:hover{
  background:#e56f00;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-title{
    font-size:32px;
  }

  .contact-form{
    padding:0 15px;
  }
}

/* FOOTER */
.footer{
  background:#fff1e3;
  padding:60px 0 40px;
}

/* TOP */
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
}

/* LEFT */
.footer-left h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.language-select{
  background:#ff7a00;
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  width:200px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  margin-bottom:30px;
}

.social-title{
  margin-top:10px;
}

.social-icons a{
  margin-right:10px;
}

.social-icons img{
  width:36px;
}

/* RIGHT */
.footer-right{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.footer-right a{
  text-decoration:none;
  color:#111;
  font-size:18px;
  font-weight:600;
}

.footer-right a.active{
  color:#ff7a00;
}

/* DIVIDER */
.footer-divider{
  height:2px;
  background:#d7c3ad;
  margin:40px 0;
}

/* BOTTOM */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-logo img{
  width:150px;
}

.footer-links a{
  margin-left:30px;
  text-decoration:underline;
  color:#111;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-top{
    flex-direction:column;
  }

  .footer-right{
    margin-top:20px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:20px;
  }

  .footer-links a{
    margin:0 15px;
  }
}


/* New Game Card Section */

/* GLOBAL FIX */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* BASE */
.games {
    padding: 64px 20px;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: auto;
}

/* DESKTOP GRID (>1200px) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* GAME CARD */
.game-card {
    position: relative;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.game-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO BAR */
.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 80%));
}

.game-name {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
}

.game-downloads {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* STORE ICONS */
.game-links {
    display: flex;
    gap: 12px;
}

.game-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.game-link img {
    width: 24px;
}

/* SLIDER MODE (=1200px) */
@media (max-width: 1200px) {
    .games-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .games-grid::-webkit-scrollbar {
        display: none;
    }
}

/* 1200px – 701px ? 3 cards */
@media (max-width: 1200px) and (min-width: 701px) {
    .game-card {
        flex: 0 0 calc(33.333% - 14px);
        height: 466px;
        scroll-snap-align: start;
    }
}

/* 700px – 501px ? 2 cards */
@media (max-width: 700px) and (min-width: 501px) {
    .game-card {
        flex: 0 0 calc(50% - 10px);
        height: 400px;
        scroll-snap-align: start;
    }
}

/* = 500px ? 1 card */
@media (max-width: 500px) {
    .games-grid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .game-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 466px;
        scroll-snap-align: start;
    }
}


/* Privacy Policy */

.privacy-policy {
  background: #ffffff;
  padding: 80px 20px;
}

.privacy-container {
  max-width: 1280px;
  margin: auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.privacy-container h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.privacy-container .updated {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.privacy-container h2 {
  margin-top: 40px;
  font-size: 24px;
  color: #111;
}

.privacy-container h3 {
  margin-top: 24px;
  font-size: 18px;
  color: #222;
}

.privacy-container p {
  margin-top: 14px;
}

.privacy-container ul {
  margin-top: 10px;
  padding-left: 20px;
}

.privacy-container ul li {
  margin-bottom: 8px;
}


/* Terms Page */

.legal-page {
  background: #ffffff;
  padding: 80px 20px;
}

.legal-container {
  max-width: 1280px;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.75;
}

.legal-container h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.legal-container h2 {
  margin-top: 40px;
  font-size: 24px;
  color: #111;
}

.legal-container p {
  margin-top: 16px;
  font-size: 16px;
}
