* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cinzel', serif;
}

body,
html {
  height: 100%;
  background-color: #111;
  overflow-x: hidden;
}


/* ************************************** SECTION 1 ********************************************** */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* color: #fff; */
  overflow: hidden;
  background-color: #111;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
/* .slide::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 2;
 } */

.content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ========================================= */
/* SLIDE 1 - ELDRITCH TEXT */
/* ========================================= */
.slide1 .content h1 {
  padding: 40px;
  font-size: 100px;
  font-weight: 500;
  font-family: 'Cinzel', serif;
  letter-spacing: 20px;
  color: #c55b20;
  position: relative;
  text-shadow: 0 0 10px #ffffff0c, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
}

.slide1 .content h1 span {
  font-weight: 500;
  opacity: 0;
  display: inline-block;
  transform: translateY(40px);
  animation: letterReveal 0.8s forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */
/* SLIDE 2 - Text Content */
/* ========================================= */
.slide2 .text-content {
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide2 .text-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.slide2 h2 {
  font-size: 60px;
  font-family: 'Cinzel', serif;
  color: #c55b20;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #ffffff0c, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
}

.slide2 p {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 10px #c55b20, 0 0 20px #c55a20e7, 0 0 30px #c55b20, 0 0 40px #c55a20e3;
  /* color: #e0e0e0; */
}

/* ========================================= */
/* SLIDE 3 - Split Layout */
/* ========================================= */
.slide3 .text-content {
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide3 .text-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Heading same styling */
.slide3 h2 {
  font-size: 60px;
  font-family: 'Cinzel', serif;
  color: #c55b20;
  text-shadow: 0 0 10px #ffffff0c, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Paragraph */
.slide3 p {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 10px #c55b20, 0 0 20px #c55a20e7, 0 0 30px #c55b20, 0 0 40px #c55a20e3;
  margin-bottom: 30px;
}

/* Small top text */
.slide3 .small-line-text {
  font-size: 16px;
  font-weight: 700;
  color: #c55b20;
  text-shadow: 0 0 10px #ffffff0c, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Button center */
.slide3 .image-btn {
  margin-top: 10px;
}

.image-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  width: 300px;
  height: 80px;

  background-image: url('../assets/images/btn-bg.png');

  background-size: 200px 60px;

  background-repeat: no-repeat;

  background-position: center;

  background-color: transparent;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.image-btn:hover {
  transform: scale(1.05);
}

/* ========================================= */
/* NAVIGATION & DOTS */
/* ========================================= */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #c55b20;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.3s;
}

.nav:hover {
  background: rgba(255, 102, 0, 0.2);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dots span.active {
  background: #c55b20;
  transform: scale(1.3);
}

/* ========================================= */
/* RESPONSIVE DESIGN */
/* ========================================= */
@media (max-width: 1024px) {
  .slide1 .content h1 {
    font-size: 70px;
    letter-spacing: 12px;
  }

  .split-text h2 {
    font-size: 36px;
  }

  .slide2 h2 {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .slide1 .content h1 {
    font-size: 45px;
    letter-spacing: 8px;
  }

  .slide2 h2 {
    font-size: 36px;
  }

  .slide2 p {
    font-size: 16px;
  }

  .slide3 .content {
    flex-direction: column;
    gap: 30px;
  }

  .split-image {
    flex: unset;
    width: 60%;
    height: auto;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .slide1 .content h1 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .split-image {
    width: 80%;
  }

  .split-text h2 {
    font-size: 28px;
  }

  .slide2 h2 {
    font-size: 28px;
  }
}


/* ************************************** SECTION 2 ********************************************** */
:root {
  --gb-accent: #c55b20;
  --gb-bg: #0b0b0b;
  --gb-card-bg: #111;
  --gb-stroke: rgba(255, 102, 0, 0.65);
  --gb-stroke-soft: rgba(255, 102, 0, 0.25);
  /* --gb-cut: 100px; */
}


/* Section wrapper */
.gb-slider-section {
  width: 85%;
  margin: 40px auto;
  text-align: center;
}

.gb-slider-head {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 26px;
  padding-top: 26px;
  border-top: 1px solid #222;
}

.gb-slider-head::before,
.gb-slider-head::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  background-color: #c55b20;
  border-radius: 50%;
  box-shadow: 0 0 5px #c55b20;

  animation: blinkDot 1.5s infinite ease-in-out;
}

.gb-slider-head::before {
  left: 0;
}

.gb-slider-head::after {
  right: 0;
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px #c55b20, 0 0 12px #c55b20;
  }

  50% {
    opacity: 0.3;
    box-shadow: 0 0 2px transparent;
  }
}

.gb-slider-head h2 {
  margin: 0 0 10px;
  font-size: 46px;
  letter-spacing: 0.3px;
  font-weight: 900;
  color: #c55b20;
  text-shadow: 0 0 10px #ffffff0c, 0 0 20px #ffffff59, 0 0 30px #ffffff77, 0 0 40px #ffffff7a;
}

.gb-slider-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.gb-slider-wrapper {
  overflow: hidden;
}

.gb-slider {
  display: flex;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gb-card {
  flex: 0 0 31.3333%;
  height: 400px;
  margin: 10px;
  position: relative;
  box-sizing: border-box;

  /* clip-path: polygon(var(--gb-cut) 0%, 100% 0%, 100% 100%, 0% 100%, 0% var(--gb-cut));
   background: var(--gb-card-bg); */
  overflow: hidden;

  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.gb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0)); */
  pointer-events: none;
  z-index: 1;
}

.gb-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* clip-path: polygon(var(--gb-cut) 0%, 100% 0%, 100% 100%, 0% 100%, 0% var(--gb-cut)); */
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.gb-card img {
  width: 100%;
  height: 86%;
  display: block;
  object-fit: contain;
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gb-card:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.gb-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.15) contrast(1.05);
}

.gb-card.gb-active {
  opacity: 1;
  transform: translateY(-4px);
  filter: saturate(1.1);
  border: 4px solid #c55b20;
}

/* .gb-card.gb-active::after {
   border-color: var(--gb-stroke);
   box-shadow:
     0 0 0 1px var(--gb-stroke-soft) inset,
     0 18px 40px rgba(0, 0, 0, 0.55),
     0 0 30px rgba(255, 102, 0, 0.18);
 } */

.gb-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;

  min-height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 22px 18px 18px;

  background: linear-gradient(to top,
      rgba(255, 102, 0, 0.95) 0%,
      rgba(255, 102, 0, 0.55) 45%,
      rgba(255, 102, 0, 0.18) 75%,
      rgba(255, 102, 0, 0.00) 100%);

  color: #101010;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gb-card:hover .gb-overlay,
.gb-card.gb-active .gb-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gb-overlay h2 {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.gb-overlay a {
  text-decoration: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 10px;

  background: #fff;
  border: 2px solid var(--gb-accent);
  color: var(--gb-accent);

  font-size: 17px;
  font-weight: 700;

  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.gb-overlay a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.28);
}

.gb-bottom-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.gb-indicator {
  flex: 1;
  height: 4px;
  background: #222;
  overflow: hidden;
  border-radius: 999px;
}

.gb-fill {
  height: 100%;
  width: 0%;
  background: var(--gb-accent);
  transition: width 0.7s ease;
}

.gb-nav-buttons {
  display: flex;
  gap: 10px;
}

.gb-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gb-accent);
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

.gb-nav-btn:active {
  transform: scale(0.95);
}

@media (max-width: 950px) {
  .gb-slider-section {
    width: 92%;
  }

  .gb-card {
    flex: 0 0 80%;
  }
}

@media (max-width: 850px) {
  .gb-slider-section {
    width: 92%;
    margin: 50px auto;
  }


  .gb-card {
    flex: 0 0 100%;
    margin: 0;
    height: 360px;
  }

  .gb-card img {
    height: 100%;
  }

  .gb-overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .gb-card.gb-active .gb-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .gb-slider-wrapper {
    padding: 0;
  }
}




/* ************************************** SECTION 3 ********************************************** */

:root {
  --gs-border-radius: 40px;
  --gs-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.upcoming-games {
  margin: 0;
  background-color: var(--gs-bg-color);
  color: var(--gs-text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;

}

.gs-showcase-section {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  box-sizing: border-box;
}

.gs-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  margin: 0 auto;
}

.gs-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--gs-border-radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: var(--gs-transition);
  border: 2px solid #c55b20;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  z-index: 0;
}

.gs-card.gs-active {
  left: 0;
  width: 52%;
  height: 105%;
  z-index: 10;
  opacity: 1;
  box-shadow: 0 8px 20px rgba(197, 91, 32, 0.4);
  cursor: default;
}

.gs-card.gs-next-1 {
  left: 40%;
  width: 24%;
  height: 100%;
  z-index: 9;
  opacity: 1;
}

.gs-card.gs-next-2 {
  left: 52%;
  width: 24%;
  height: 100%;
  z-index: 8;
  opacity: 1;
}

.gs-card.gs-next-3 {
  left: 64%;
  width: 24%;
  height: 100%;
  z-index: 7;
  opacity: 1;
}

.gs-card.gs-next-4 {
  left: 76%;
  width: 24%;
  height: 100%;
  z-index: 6;
  opacity: 1;
}

.gs-card.gs-prev {
  left: -20%;
  width: 55%;
  height: 100%;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
}

.gs-card.gs-hidden {
  left: 100%;
  width: 25%;
  height: 50%;
  z-index: 5;
  opacity: 0;
}

.gs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: var(--gs-transition);
}

.gs-card.gs-active .gs-overlay {
  opacity: 1;
}

.gs-card-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gs-card.gs-active .gs-card-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.gs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 20px 0;
}

.gs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3b404d;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gs-dot.gs-active {
  background-color: #fff;
  transform: scale(1.3);
}

.gs-explore-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


@media (max-width: 768px) {
  .gs-slider-container {
    height: 250px;
  }

  .gs-card.gs-active {
    width: 65%;
  }

  .gs-card.gs-next-1 {
    left: 50%;
    width: 25%;
  }

  .gs-card.gs-next-2 {
    left: 62.5%;
    width: 25%;
  }

  .gs-card.gs-next-3 {
    left: 75%;
    width: 25%;
  }

  .gs-card.gs-next-4 {
    left: 100%;
    opacity: 0;
  }

  .gs-card-title {
    font-size: 18px;
    left: 15px;
    bottom: 20px;
  }
}



/* ************************************** SECTION 4 ********************************************** */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spinBorder {
  to {
    --angle: 360deg;
  }
}

.subscribe-card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  margin: 0;
  padding: 20px;
}

/* .subscribe-card {
  background-color: #111;
  border: 1px solid #c55b20;
  border-radius: 40px;
  display: flex;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 40px 60px 40px 0;

  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2),
    inset 0 0 20px rgba(255, 102, 0, 0.05);

  overflow: visible;
} */


.subscribe-card {
  /* background-color: #111; (Isko hata dein) */
  /* border: 1px solid #c55b20; (Isko hata dein) */
  background: transparent;
  border-radius: 40px;
  display: flex;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 40px 60px 40px 0;
  box-shadow: 0 15px 50px rgba(255, 102, 0, 0.2),
    inset 0 0 20px rgba(255, 102, 0, 0.05);
  overflow: visible;
  z-index: 1;
  /* Add this */
}

/* Animated Glowing Border */
.subscribe-card::before {
  content: "";
  position: absolute;
  /* Ye border ki thickness control karega (-2px matlab 2px border) */
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border-radius: 42px;
  /* 40px radius + 2px border */
  background: conic-gradient(from var(--angle), transparent 40%, #c55b20, #ff8c00, #c55b20, transparent 60%);
  z-index: -2;
  animation: spinBorder 4s linear infinite;
}

/* Card ka inner dark background */
.subscribe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  border-radius: 40px;
  z-index: -1;
}



/* ===== EMOJI ANIMATION ===== */
.emoji-container {
  position: absolute;
  top: 0;
  /* Add this */
  left: 0;
  /* Add this */
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  /* Add this to prevent page jitter */
  border-radius: 40px;
  /* Card ki shape ke sath match karne ke liye */
}

.emoji {
  position: absolute;
  bottom: -60px;
  font-size: 2rem;
  opacity: 0;
  filter: drop-shadow(0 0 10px var(--neon-orange));
  animation: moveUp 7s linear infinite;
  will-change: transform;
  /* Add this for smoother animation */
}

@keyframes moveUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-500px) rotate(360deg);
    opacity: 0;
  }
}

.e1 {
  left: 5%;
  animation-duration: 8s;
}

.e2 {
  left: 15%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.e3 {
  right: 15%;
  animation-duration: 9s;
  animation-delay: 1s;
}

.e4 {
  right: 5%;
  animation-duration: 7s;
  animation-delay: 3s;
}

.image-box {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}



.pop-out-image {
  width: 120%;
  max-width: 450px;
  margin-top: -120px;
  margin-bottom: -30px;
  margin-left: -40px;
  z-index: 10;
  opacity: 0;

  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards,
    floatUpDown 4s ease-in-out 1.2s infinite;
}

.content-box {
  width: 55%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-box h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
  color: #fff;
}

.content-box p {
  font-size: 1.1rem;
  color: #b3abab;
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.content-box p strong {
  color: #fff;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}


@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .subscribe-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .image-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .pop-out-image {
    margin-top: -60px;
    margin-bottom: 0;
    margin-left: 0;
    width: 90%;
  }

  .content-box {
    width: 100%;
    padding-left: 0;
  }

  .button-container {
    justify-content: center;
    margin-top: 10px;
  }
}