/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 @codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --raisin-black-1: hsl(234, 14%, 14%);
  --raisin-black-2: hsl(231, 12%, 12%);
  --raisin-black-3: hsl(228, 12%, 17%);
  --eerie-black: hsl(240, 11%, 9%);
  --light-gray: hsl(0, 0%, 80%);
  --platinum: hsl(0, 4%, 91%);
  --xiketic: hsl(275, 24%, 10%);
  --orange: hsl(31, 100%, 51%);
  --white: hsl(0, 0%, 100%);
  --onyx: hsl(240, 5%, 26%);

  /**
   * typography
   */

  --ff-refault: "Refault", Georgia;
  --ff-oswald: 'Oswald', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 54px;
  --fs-2: 34px;
  --fs-3: 30px;
  --fs-4: 26px;
  --fs-5: 22px;
  --fs-6: 20px;
  --fs-7: 18px;
  --fs-8: 15px;
  --fs-9: 14px;
  --fs-10: 13px;
  --fs-11: 12px;

  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;

  /**
   * transition
   */

  --transition-1: 0.15s ease-in-out;
  --transition-2: 0.15s ease-in;
  --transition-3: 0.25s ease-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * clip path
   */

  --polygon-1: polygon(90% 0, 100% 34%, 100% 100%, 10% 100%, 0 66%, 0 0);
  --polygon-2: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
  --polygon-3: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
  --polygon-4: polygon(96% 0, 100% 36%, 100% 100%, 4% 100%, 0 66%, 0 0);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font: inherit;
  width: 100%;
  border: none;
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { overflow-x: hidden; }

body.active { overflow-y: hidden; }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background: var(--raisin-black-2); }

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}





/*-----------------------------------*\
  #CUSTOM FONT
\*-----------------------------------*/

/* Webfont: Refault-Italic */
@font-face {
    font-family: 'Refault';
    src: url('../fonts/REFAULT.eot'); /* IE9 Compat Modes */
    src: url('../fonts/REFAULT.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/REFAULT.woff') format('woff'), /* Modern Browsers */
         url('../fonts/REFAULT.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/REFAULT.ttf') format('truetype'); /* Safari, Android, iOS */
    font-style: italic;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.h1 {
  color: var(--white);
  font-family: var(--ff-refault);
  font-size: var(--fs-1);
  font-weight: var(--fw-400);
  text-transform: uppercase;
}

.h2 {
  font-size: var(--fs-2);
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  font-family: var(--ff-oswald);
}

.h3 {
  font-family: var(--ff-oswald);
  font-size: var(--fs-2);
  text-transform: uppercase;
  line-height: 1.2;
}

.btn {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  clip-path: var(--polygon-1);
  transition: var(--transition-1);
}

.btn-primary { background: var(--orange); }

.btn-primary:is(:hover, :focus) { background: var(--raisin-black-1); }

.btn-secondary {
  background: var(--white);
  color: var(--orange);
}

.btn-secondary:is(:hover, :focus) {
  background: var(--raisin-black-1);
  color: var(--white);
}

.btn-link:is(:hover, :focus) { color: var(--orange); }

.has-scrollbar::-webkit-scrollbar { height: 6px; }

.has-scrollbar::-webkit-scrollbar-button { width: 40px; }

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 120px;
  background: var(--orange);
  border-radius: 0 0 5px 5px;
}

.section-title::before {
  bottom: -23px;
  height: 4px;
  width: 30px;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--raisin-black-1);
  box-shadow: 0 3px 27px hsla(0, 0%, 0%, 0.5);
  padding-block: 20px;
  z-index: 4;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  height: 45px;
  width: auto;
}

.header-actions { display: none; }

.nav-open-btn {
  color: var(--white);
  font-size: 40px;
  padding: 5px;
}

.nav-open-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  background: var(--raisin-black-2);
  height: 100%;
  box-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}


.navbar.active {
  right: 0;
  visibility: visible;
  transition: var(--transition-3);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}

.navbar-top .logo img {
  height: 38px;
  width: auto;
}

.nav-close-btn {
  color: var(--orange);
  font-size: 25px;
  padding: 10px;
  transform: translateX(15px);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 70px; }

.navbar-list {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-bottom: 30px;
}

.navbar-link {
  color: var(--white);
  font-size: 15px;
  padding: 10px 25px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  font-weight: var(--fw-500);
  transition: 0.15s ease-in-out;
}

.navbar-link:is(:hover, :focus) { color: var(--orange); }

.nav-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.social-link {
  color: var(--orange);
  font-size: 18px;
}

.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-2);
}

.overlay.active {
  background: hsla(0, 0%, 0%, 0.7);
  pointer-events: all;
  transition: var(--transition-3);
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  margin-top: 90px;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--section-padding) 0;
}

.hero-subtitle {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 12px;
  text-shadow: 0 7px hsla(0, 0%, 0%, 0.4);
  margin-bottom: 15px;
}

.hero-title { 
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1.1;
}

/* Responsive hero title */
@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
    word-spacing: -2px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero .btn-primary ion-icon { font-size: 25px; }





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.section-wrapper {
  background: url("../images/section-wrapper-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.about {
  background: url("../images/about-img-shadow.png") no-repeat;
  background-size: 100%;
  background-position: center;
  padding: 120px 0 var(--section-padding);
}

.about-banner { margin-bottom: 40px; }

.about-img { width: 100%; }

.character { display: none; }

.about-content {
  background: var(--raisin-black-1);
  color: var(--white);
  padding: 40px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.2);
}

.about-subtitle {
  color: var(--orange);
  font-family: var(--ff-oswald);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-title {
  font-family: var(--ff-oswald);
  font-size: var(--fs-2);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-title strong { color: var(--orange); }

.about-text,
.about-bottom-text {
  color: var(--light-gray);
  font-size: var(--fs-9);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.about-text { margin-bottom: 20px; }

.about-bottom-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.about-bottom-text ion-icon {
  color: var(--orange);
  font-size: 25px;
  --ionicon-stroke-width: 45px;
}





/*-----------------------------------*\
  #TOURNAMENT
\*-----------------------------------*/

.tournament {
  padding: var(--section-padding) 0;
  color: var(--white);
  text-align: center;
}

.tournament-content { margin-bottom: 50px; }

.tournament-subtitle {
  color: var(--orange);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tournament-title { margin-bottom: 20px; }

.tournament-text {
  color: var(--light-gray);
  font-size: var(--fs-9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.tournament .btn-primary {
  width: max-content;
  margin-inline: auto;
}

.tournament-prize { margin-bottom: 50px; }

.tournament-prize-title {
  font-size: var(--fs-3);
  margin-bottom: 20px;
}

.tournament-prize data {
  background: var(--orange);
  color: var(--raisin-black-1);
  font-family: var(--ff-oswald);
  font-size: var(--fs-4);
  padding: 8px 42px;
  border-radius: 50px;
}

.tournament-prize img { margin-inline: auto; }

.tournament-winners {
  background: var(--raisin-black-1);
  padding: 40px 30px;
  border-radius: 4px;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.2);
}

.tournament-winners-title {
  font-size: var(--fs-3);
  margin-bottom: 25px;
}

.tournament-winners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.winner-card .card-banner {
  max-width: 90px;
  margin-inline: auto;
  margin-bottom: 15px;
}

.winner-card img { width: 100%; }

.winner-card .card-title {
  background: var(--orange);
  width: max-content;
  margin-inline: auto;
  font-size: var(--fs-10);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}





/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery { padding: var(--section-padding) 0; }

.gallery-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: -15px;
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-snap-type: inline mandatory;
  padding-inline: 15px;
}

.gallery-list li {
  min-width: 95%;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.2);
}





/*-----------------------------------*\
  #TEAM
\*-----------------------------------*/

.team { 
  padding: var(--section-padding) 0; 
  background: var(--eerie-black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-items: center;
}

/* Responsive team grid for different screen sizes */
@media (min-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1600px;
    gap: 40px;
  }
}

.team-member-card {
  background: var(--raisin-black-3);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--raisin-black-1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
}

.member-image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange);
  flex-shrink: 0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 102, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .member-overlay {
  opacity: 1;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social .social-link {
  color: var(--white);
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.member-social .social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.member-info {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.member-name {
  font-family: var(--ff-oswald);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  margin-bottom: 4px;
  color: var(--white);
  line-height: 1.2;
}

.member-role {
  font-size: var(--fs-9);
  color: var(--orange);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
}





/*-----------------------------------*\
  #GEARS
\*-----------------------------------*/

.gears { padding: var(--section-padding) 0; }

.games-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-items: center;
}

/* Mobile first - single column */
@media (min-width: 480px) {
  .games-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Tablet and up - responsive grid */
@media (min-width: 768px) {
  .games-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
  }
}

.game-card {
  background: var(--raisin-black-3);
  border-radius: 15px;
  padding: 22px;
  border: 1px solid var(--onyx);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
}

.game-card .card-banner {
  position: relative;
  background: var(--raisin-black-2);
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--raisin-black-1);
}

.gears .card-banner a { width: 100%; }

.gears .card-banner img {
  width: 65%;
  height: 65%;
  object-fit: cover;
  border-radius: 8px;
  margin-inline: auto;
}

.share,
.card-time-wrapper {
  position: absolute;
  color: var(--orange);
}

.share {
  top: 25%;
  right: 8%;
  font-size: 20px;
  border: 2px solid var(--onyx);
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: var(--transition-1);
}

.share:is(:hover, :focus) { border-color: var(--orange); }

.card-time-wrapper {
  top: 2%;
  right: 5%;
  font-family: var(--ff-oswald);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.card-time-wrapper ion-icon {
  font-size: 16px;
  --ionicon-stroke-width: 50px;
}

.gears .card-content {
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-transform: uppercase;
  gap: 15px;
}

.game-card :is(.card-title, .card-prize) {
  font-family: var(--ff-oswald);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  line-height: 1.2;
}

.game-card .card-title { margin-bottom: 5px; }

.game-card .card-subtitle {
  color: var(--light-gray);
  font-size: var(--fs-10);
  margin-bottom: 0;
}

.gears .card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
}

.game-card .btn { padding: 12px 16px; font-size: var(--fs-9); }

.game-card .btn-primary {
  font-size: var(--fs-8);
  padding: 10px 20px;
  min-width: 120px;
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

.game-card .btn-secondary {
  font-size: var(--fs-8);
  padding: 10px 20px;
  min-width: 120px;
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--raisin-black-1);
  color: var(--light-gray);
  border: 1px solid var(--onyx);
  border-radius: 6px;
}

.game-card .btn-secondary:hover {
  background: var(--onyx);
  color: var(--white);
}

.game-card .btn-primary ion-icon {
  font-size: 20px;
  --ionicon-stroke-width: 80px;
}

.card-status {
  font-family: var(--ff-oswald);
  font-size: var(--fs-10);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-status.live {
  background: linear-gradient(135deg, var(--orange), #ff7b3d);
  color: var(--white);
  font-size: var(--fs-11);
}

.card-status.development {
  background: var(--raisin-black-1);
  color: var(--light-gray);
  border: 1px solid var(--onyx);
  font-size: var(--fs-11);
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact { 
  padding: var(--section-padding) 0; 
  background: var(--eerie-black);
}

.contact-wrapper {
  display: grid;
  gap: 50px;
  align-items: start;
}

.contact-info-title {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info-text {
  color: var(--light-gray);
  font-size: var(--fs-7);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: var(--fs-7);
}

.contact-info-item ion-icon {
  font-size: 20px;
  color: var(--orange);
  --ionicon-stroke-width: 50px;
}

.contact-form-wrapper {
  background: var(--raisin-black-3);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--raisin-black-1);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 15px 15px 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: grid;
  gap: 15px;
}

.contact .input-field {
  background: var(--raisin-black-2);
  color: var(--white);
  font-size: var(--fs-7);
  padding: 15px 20px;
  border: 1px solid var(--onyx);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact .input-field::placeholder {
  color: var(--light-gray);
}

.contact .input-field:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.contact .textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  padding: 15px 30px;
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.contact-btn ion-icon {
  font-size: 18px;
}





/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter { padding: var(--section-padding) 0 120px; }

.newsletter-card {
  background: url("../images/newsletter-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 25px;
  border-radius: 12px;
  text-align: center;
}

.newsletter-content { margin-bottom: 30px; }

.newsletter-img {
  width: max-content;
  margin-inline: auto;
  margin-bottom: 10px;
}

.newsletter-title { font-size: var(--fs-3); }

.newsletter .input-field {
  background: hsla(0, 0%, 0%, 0.2);
  color: var(--white);
  border: 1px solid var(--white);
  font-size: var(--fs-10);
  padding: 17px 25px;
  margin-bottom: 15px;
}

.newsletter .input-field:focus {
  background: hsla(0, 0%, 0%, 0.4);
  outline: none;
}

.newsletter .input-field::placeholder {
  color: inherit;
  font-size: var(--fs-9);
}

.newsletter .btn-secondary {
  font-size: var(--fs-7);
  margin-inline: auto;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background: url("../images/footer-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: var(--section-padding) 0;
}

.footer-brand-wrapper {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid hsl(220, 14%, 8%);
  margin-bottom: 50px;
}

.footer-brand-wrapper::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: hsla(0, 0%, 50%, 0.2);
}

.footer-top .logo {
  width: max-content;
  margin-inline: auto;
  margin-bottom: 50px;
}

.footer-top .logo img {
  height: 118px;
  width: auto;
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 40px;
  margin-bottom: 20px;
}

.footer-menu-link {
  color: var(--platinum);
  font-family: var(--ff-oswald);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  transition: var(--transition-1);
}

.footer-menu-link:is(:hover, :focus) { color: var(--orange); }

.footer-input-wrapper {
  position: relative;
  max-width: 260px;
  margin-inline: auto;
}

.footer-input {
  --polygon-1: polygon(93% 0, 100% 30%, 100% 100%, 7% 100%, 0 63%, 0 0);

  background: var(--xiketic);
  color: var(--white);
  font-size: var(--fs-10);
  padding: 17px 25px;
  clip-path: var(--polygon-1);
}

.footer-input:focus { outline: none; }

.footer-input::placeholder { font-size: var(--fs-9); }

.footer-input-wrapper .btn-primary {
  --polygon-1: polygon(70% 0, 100% 30%, 100% 100%, 30% 100%, 0 63%, 0 0);

  position: absolute;
  top: 0;
  right: 0;
  padding: 17px;
}

.footer-input-wrapper .btn-primary:is(:hover, :focus) {
  background: var(--white);
  color: var(--orange);
}

.quicklink-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.quicklink-item {
  color: var(--light-gray);
  font-family: var(--ff-oswald);
  font-size: var(--fs-11);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  transition: var(--transition-1);
}

.quicklink-item:is(:hover, :focus) { color: var(--orange); }

.footer-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  background: var(--xiketic);
  color: var(--light-gray);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.footer-social-link:is(:hover, :focus) { color: var(--orange); }

.footer-bottom {
  padding: 25px 0;
  background: var(--xiketic);
  text-align: center;
}

.copyright {
  color: var(--light-gray);
  font-family: var(--ff-oswald);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.copyright a {
  display: inline-block;
  color: var(--orange);
}

.footer-bottom-img img {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  --polygon-1: polygon(70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%, 0 0);

  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.go-top:is(:hover, :focus) {
  background: var(--white);
  color: var(--orange);
}





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive larger than 420px
 */

@media (min-width: 420px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 70px;

  }

}





/**
 * responsive larger than 575px
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 90px;
    --fs-2: 45px;

  }



  /**
   * REUSED STYLE
   */

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



  /**
   * ABOUT
   */

  .about-banner {
    position: relative;
    max-width: 410px;
    margin-inline: auto;
    z-index: 1;
  }

  .character-2 {
    display: block;
    position: absolute;
    top: 120px;
    left: 160px;
    max-width: 150px;
    z-index: -1;
  }

  .about-content { padding: 60px 40px; }



  /**
   * TOURNAMENT
   */

  .tournament-text {
    max-width: 500px;
    margin-inline: auto;
  }



  /**
   * GALLERY
   */

  .gallery .container { max-width: unset; }

  .gallery-list li { min-width: 80%; }

  /**
   * LOGO RESPONSIVE
   */

  .header .logo img {
    height: 55px;
  }

  .navbar-top .logo img {
    height: 45px;
  }

  .footer-top .logo img {
    height: 50px;
  }

}





/**
 * responsive larger than 768px
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 115px;
    --fs-3: 36px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 150px; }



  /**
   * HEADER
   */

  .header::after,
  .header::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 20px;
    background: var(--raisin-black-1);
    bottom: -17px;
  }

  .header::before {
    left: 0;
    clip-path: var(--polygon-2);
  }

  .header::after {
    right: 0;
    clip-path: var(--polygon-3);
  }



  /**
   * HERO
   */

  .hero-subtitle {
    --fs-7: 25px;
    letter-spacing: 30px;
  }

  .games-list {
    gap: 35px;
  }


  /**
   * ABOUT
   */

  .about-banner { max-width: 430px; }

  .character {
    display: block;
    position: absolute;
    z-index: -1;
  }

  .character-1 {
    width: 130px;
    top: 110px;
    left: -120px;
  }

  .character-2 { left: 200px; }

  .character-3 {
    top: 0;
    right: -112px;
  }



  /**
   * GALLERY
   */

  .gallery-list { padding-bottom: 30px; }

  .gallery-list li { min-width: 70%; }



  /**
   * GEARS
   */

  .gears-card {
    min-width: 260px;
    max-width: 280px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  
  .input-group {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * NEWSLETTER
   */

  .newsletter-card { text-align: left; }

  .newsletter-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 440px;
    margin-inline: auto;
  }

  .newsletter-img { margin-inline: 0; }

  .newsletter-form {
    position: relative;
    max-width: 530px;
    margin-inline: auto;
  }

  .newsletter-form::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: -3px;
    width: 27px;
    height: 1px;
    background: var(--white);
    transform: rotate(43deg);
  }

  .newsletter .btn-secondary {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: var(--fs-7);
  }

  .newsletter .input-field {
    clip-path: var(--polygon-4);
    margin-bottom: 0;
  }



  /**
   * FOOTER
   */

  .footer-menu-wrapper,
  .footer-quicklinks,
  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-menu-list {
    max-width: 50%;
    justify-content: flex-start;
    column-gap: 16px;
    margin-bottom: 0;
  }

  .footer-input-wrapper {
    margin-inline: 0;
    width: 50%;
  }

  .quicklink-list {
    margin-bottom: 0;
    column-gap: 15px;
  }

  .copyright { margin-bottom: 0; }

  /**
   * LOGO RESPONSIVE - TABLET
   */

  .header .logo img {
    height: 70px;
  }

  .navbar-top .logo img {
    height: 55px;
  }

  .footer-top .logo img {
    height: 65px;
  }

}





/**
 * responsive larger than 1024px
 */

@media (min-width: 1024px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1000px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 200px; }



  /**
   * HEADER 
   */

  .header { padding-block: 0; }

  .header .logo { margin-right: 25px; }

  .nav-open-btn { display: none; }

  .navbar {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-width: unset;
    width: max-content;
    height: auto;
    box-shadow: none;
  }

  .navbar-top,
  .nav-social-list { display: none; }

  .navbar-list {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .navbar-link {
    position: relative;
    color: var(--platinum);
    padding-block: 34px;
    border: none;
    font-family: var(--ff-oswald);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
  }

  .navbar-link::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: skew(-15deg);
    border-bottom: 5px solid transparent;
    z-index: -1;
    transition: var(--transition-1);
  }

  .navbar-link:focus { outline: none; }

  .navbar-link:is(:hover, :focus)::after {
    background: var(--raisin-black-2);
    border-color: var(--orange);
  }

  .header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-actions .search {
    color: var(--white);
    font-size: 18px;
    padding: 25px;
    transition: var(--transition-1);
  }

  .search ion-icon { --ionicon-stroke-width: 70px; }

  .header-actions .search:is(:hover, :focus) { color: var(--orange); }

  .btn-sign_in {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--raisin-black-3);
    color: var(--light-gray);
    font-family: var(--ff-oswald);
    font-size: var(--fs-11);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px;
    border-right: 5px solid var(--orange);
    box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.2);
    margin-left: 15px;
    transition: var(--transition-1);
  }

  .btn-sign_in::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 5px;
    height: 40px;
    background: var(--eerie-black);
    box-shadow: 0 3px 7px hsla(345, 75%, 30%, 0.2),
                inset 0 3px 7px 0 hsla(335, 53%, 14%, 0.4);
  }

  .btn-sign_in:is(:hover, :focus) { color: var(--orange); }

  .btn-sign_in .icon-box {
    font-size: 18px;
    background: var(--raisin-black-2);
    padding: 6px;
    margin-right: 5px;
    box-shadow: 0 3px 7px hsla(345, 75%, 30%, 0.2),
                inset 0 3px 7px 0 hsla(335, 53%, 14%, 0.4);
  }

  .btn-sign_in .icon-box ion-icon { --ionicon-stroke-width: 40px; }

  .btn-sign_in span { padding-inline: 10px; }

  .overlay { display: none; }



  /**
   * ABOUT
   */

  .about { padding-top: 200px; }

  .about-content {
    max-width: 700px;
    margin-inline: auto;
  }



  /**
   * TOURNAMENT
   */

  .tournament {
    --fs-2: 30px;
    --fs-3: 30px;
    --fs-6: 16px;

    text-align: left;
  }

  .tournament .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tournament-content,
  .tournament-prize { margin-bottom: 0; }

  .tournament-content { max-width: 310px; }

  .tournament .btn-primary { margin-inline: 0; }

  .tournament-prize,
  .tournament-winners { text-align: center; }

  .tournament-winners { padding: 45px 40px; }



  /**
   * GALLERY
   */

  .gallery-list {
    gap: 30px;
    padding-inline: 40px;
  }

  .gallery-list li { min-width: 50%; }



  /**
   * GEARS
   */

  .card-time-wrapper {
    top: 4%;
    right: 8%;
  }



  /**
   * NEWSLETTER
   */

  .newsletter { padding-bottom: 200px; }

  .newsletter-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 45px 50px;
  }

  .newsletter-content {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .newsletter-img { padding-left: 30px; }

  .newsletter-form { flex-grow: 1; }

  .newsletter-form::after {
    bottom: 9px;
    left: -5px;
    width: 25px;
    transform: rotate(52deg);
  }



  /**
   * FOOTER
   */

  .footer-brand-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-top .logo {
    margin-inline: 0;
    margin-bottom: 0;
    margin-right: 50px;
  }

  .footer-menu-wrapper { gap: 50px; }

  .footer-menu-list {
    flex-grow: 1;
    max-width: unset;
  }

  /**
   * LOGO RESPONSIVE - DESKTOP
   */

  .header .logo img {
    height: 82px;
  }

  .navbar-top .logo img {
    height: 85px;
  }

  .footer-top .logo img {
    height: 90px;
  }

}





/**
 * responsive larger than 1200px
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 150px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .navbar-link { padding-block: 45px; }



  /**
   * HERO
   */

  .hero { margin-top: 110px; }



  /**
   * ABOUT
   */

  .about {
    background-size: 55%;
    background-position: 90% center;
  }

  .about .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    padding-right: 110px;
  }

  .about-banner {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .character-2 {
    left: 155px;
    top: 70px;
  }

  .about-content {
    max-width: 600px;
    margin-inline: 0;
  }



  /**
   * TEAM 
   */

  .team-list { gap: 20px; }



  /**
   * GEARS
   */

  .gears-card {
    min-width: 280px;
    max-width: 300px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }
  
  .contact-form-wrapper {
    padding: 50px;
  }

  .card-time-wrapper {
    top: 3.5%;
    right: 7%;
  }



  /**
   * NEWSLETTER
   */

  .newsletter-card { padding-block: 60px; }

  .newsletter-content { max-width: 500px; }

  .newsletter-title { --fs-3: 40px; }

  .newsletter-form {
    max-width: 450px;
    margin-inline: 0;
  }

  .newsletter-form::after {
    left: -3px;
    transform: rotate(46deg);
  }



  /**
   * FOOTER
   */

  .footer-menu-wrapper { flex-grow: 1; }

  .footer-menu-list { justify-content: flex-end; }

}


/*-----------------------------------*\
  #CALL BREAK FRIENDS PAGE STYLES
\*-----------------------------------*/

/**
 * Hero text enhancement
 */

.hero-text {
  color: var(--light-gray);
  font-size: var(--fs-7);
  margin-bottom: 30px;
  max-width: 450px;
  margin-inline: auto;
  line-height: 1.6;
}

/**
 * Hero download buttons
 */

.hero-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  width: 100%;
  max-width: 400px;
}

.hero-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  min-width: 180px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-3);
  border: 2px solid transparent;
}

.hero-download-btn.android-btn {
  background: var(--raisin-black-3);
  color: var(--white);
  border-color: var(--onyx);
}

.hero-download-btn.android-btn:hover {
  background: var(--raisin-black-2);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.hero-download-btn.ios-btn {
  background: var(--raisin-black-3);
  color: var(--white);
  border-color: var(--onyx);
}

.hero-download-btn.ios-btn:hover {
  background: var(--raisin-black-2);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.hero-download-btn ion-icon {
  font-size: 28px;
  color: var(--orange);
}

.hero-download-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  flex-grow: 1;
  justify-content: center;
}

.hero-download-btn .btn-subtitle {
  font-size: var(--fs-11);
  color: var(--light-gray);
  margin-bottom: 2px;
}

.hero-download-btn .btn-title {
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--white);
}

/**
 * Enhanced Features Section
 */

.enhanced-features {
  background: var(--raisin-black-2);
  position: relative;
  overflow: hidden;
}

.enhanced-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--raisin-black-2) 0%, var(--raisin-black-1) 50%, var(--raisin-black-3) 100%);
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: var(--fs-9);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-700);
  margin-bottom: 10px;
}

.section-description {
  font-size: var(--fs-8);
  color: var(--light-gray);
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.enhanced-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.enhanced-feature-card {
  background: var(--raisin-black-3);
  border: 2px solid var(--onyx);
  border-radius: 20px;
  padding: 30px;
  transition: all var(--transition-3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.enhanced-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--raisin-black-1));
  transform: scaleX(0);
  transition: var(--transition-3);
}

.enhanced-feature-card:hover::before {
  transform: scaleX(1);
}

.enhanced-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(255, 102, 0, 0.2);
}

.enhanced-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.enhanced-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--orange), var(--raisin-black-1));
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid var(--orange);
  position: relative;
  transition: var(--transition-3);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3);
}

.enhanced-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, var(--orange), transparent, var(--orange));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-3);
}

.enhanced-feature-card:hover .enhanced-icon::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

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

.enhanced-icon svg {
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: var(--fs-11);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
  transform: scale(0.9);
  transition: var(--transition-3);
}

.enhanced-feature-card:hover .feature-badge {
  transform: scale(1);
}

.enhanced-content {
  text-align: center;
  margin-bottom: 20px;
}

.enhanced-text {
  border-top: 1px solid var(--onyx);
  padding-top: 20px;
}

.enhanced-text p {
  margin-bottom: 15px;
}

.feature-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.stat {
  font-size: var(--fs-10);
  color: var(--light-gray);
  background: var(--raisin-black-2);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--onyx);
  transition: var(--transition-3);
}

.enhanced-feature-card:hover .stat {
  color: var(--white);
  border-color: var(--orange);
}

/**
 * Feature icon colors for different cards
 */

.multiplayer-icon {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.ai-icon {
  background: linear-gradient(135deg, #2196F3, #1565C0);
}

.smooth-icon {
  background: linear-gradient(135deg, #FF9800, #F57C00);
}

.cultural-icon {
  background: linear-gradient(135deg, #9C27B0, #6A1B9A);
}

/**
 * Feature icons
 */

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--raisin-black-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border: 2px solid var(--orange);
}

.feature-icon ion-icon {
  font-size: 40px;
  color: var(--orange);
}

/**
 * Card text
 */

.card-text {
  color: var(--light-gray);
  font-size: var(--fs-9);
  line-height: 1.6;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--onyx);
}

/**
 * Gallery enhancements
 */

.gallery {
  padding: var(--section-padding) 0;
  background: var(--raisin-black-2);
}

.gallery-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.gallery-item {
  position: relative;
  min-width: 280px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-3);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, var(--eerie-black));
  padding: 20px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition-3);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  font-family: var(--ff-oswald);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: var(--fs-10);
  color: var(--light-gray);
}

/**
 * Enhanced How to Play section
 */

.how-to-play {
  background: var(--raisin-black-1);
  position: relative;
  overflow: hidden;
}

.how-to-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--raisin-black-1) 0%, var(--eerie-black) 50%, var(--raisin-black-2) 100%);
  z-index: -1;
}

.how-to-play-steps {
  display: grid;
  gap: 25px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: var(--raisin-black-3);
  border-radius: 16px;
  border: 2px solid var(--onyx);
  transition: all var(--transition-3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--raisin-black-1));
  transform: scaleY(0);
  transition: var(--transition-3);
}

.step:hover::before {
  transform: scaleY(1);
}

.step:hover {
  border-color: var(--orange);
  background: var(--raisin-black-2);
  transform: translateX(10px);
  box-shadow: 0 12px 48px rgba(255, 102, 0, 0.2);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--raisin-black-1));
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-oswald);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.4);
  position: relative;
  transition: var(--transition-3);
}

.step-number::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, var(--orange), transparent, var(--orange));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-3);
}

.step:hover .step-number::before {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.6);
}

.step-content h3 {
  font-family: var(--ff-oswald);
  font-size: var(--fs-5);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: var(--fw-700);
  transition: var(--transition-3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step:hover .step-content h3 {
  color: var(--orange);
  transform: translateY(-2px);
}

.step-content p {
  color: var(--light-gray);
  font-size: var(--fs-9);
  line-height: 1.7;
  transition: var(--transition-3);
}

.step:hover .step-content p {
  color: var(--white);
}

.game-rules-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin-top: 30px;
}

.rule-card {
  background: var(--raisin-black-3);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--onyx);
  transition: all var(--transition-3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition-3);
}

.rule-card:hover::before {
  transform: scaleX(1);
}

.rule-card:hover {
  border-color: var(--orange);
  background: var(--raisin-black-2);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

.rule-card ion-icon {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 12px;
  transition: var(--transition-3);
  filter: drop-shadow(0 2px 4px rgba(255, 102, 0, 0.3));
}

.rule-card:hover ion-icon {
  transform: scale(1.1);
  color: var(--white);
  filter: drop-shadow(0 4px 8px rgba(255, 102, 0, 0.5));
}

.rule-card span {
  color: var(--white);
  font-family: var(--ff-oswald);
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  transition: var(--transition-3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
}

.rule-card:hover span {
  color: var(--orange);
  transform: translateY(-2px);
}

/**
 * Enhanced About section
 */

.enhanced-about {
  background: var(--raisin-black-1);
  position: relative;
}

.enhanced-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--raisin-black-1) 0%, var(--eerie-black) 50%, var(--raisin-black-2) 100%);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid var(--onyx);
  background: var(--raisin-black-3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-item {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--raisin-black-2);
  border: 1px solid var(--onyx);
  transition: var(--transition-3);
}

.stat-item:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.1);
}

.stat-number {
  font-family: var(--ff-oswald);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  color: var(--orange);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

.stat-label {
  font-size: var(--fs-9);
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--raisin-black-3);
  border-radius: 12px;
  border: 2px solid var(--onyx);
  transition: var(--transition-3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: var(--transition-3);
}

.highlight-item:hover::before {
  transform: scaleY(1);
}

.highlight-item:hover {
  border-color: var(--orange);
  background: var(--raisin-black-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

.highlight-item ion-icon {
  font-size: 24px;
  color: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-family: var(--ff-oswald);
  font-size: var(--fs-7);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: var(--fw-700);
}

.highlight-item p {
  color: var(--light-gray);
  font-size: var(--fs-9);
  line-height: 1.6;
}

.enhanced-banner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  background: var(--raisin-black-3);
  border-radius: 15px;
  border: 1px solid var(--onyx);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.main-game-showcase {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.2);
  transition: var(--transition-3);
}

.main-game-showcase:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 102, 0, 0.3);
}

.showcase-main {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gameplay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-3);
}

.main-game-showcase:hover .gameplay-overlay {
  opacity: 1;
}

.play-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
}

.play-indicator ion-icon {
  font-size: 48px;
  color: var(--orange);
}

.play-indicator span {
  font-family: var(--ff-oswald);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  text-transform: uppercase;
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--onyx);
  transition: var(--transition-3);
  background: var(--raisin-black-2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

.feature-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: var(--transition-3);
}

.feature-card:hover img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 15px 10px 10px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.card-overlay span {
  color: var(--white);
  font-size: var(--fs-10);
  font-weight: var(--fw-500);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/**
 * Enhanced Download section
 */

.enhanced-download {
  background: var(--raisin-black-2);
  position: relative;
  overflow: hidden;
}

.enhanced-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--raisin-black-2) 0%, var(--eerie-black) 50%, var(--raisin-black-1) 100%);
  z-index: -1;
}

.enhanced-download-card {
  background: var(--raisin-black-3);
  border: 2px solid var(--onyx);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.enhanced-download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--raisin-black-1), var(--orange));
}

.enhanced-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.enhanced-download-icon {
  margin-bottom: 30px;
}

.download-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--orange), var(--raisin-black-1));
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid var(--orange);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3);
  transition: var(--transition-3);
}

.download-icon-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(255, 102, 0, 0.5);
}

.download-icon-wrapper ion-icon {
  font-size: 48px;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--orange), transparent, var(--orange));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}

.download-text-content {
  max-width: 600px;
}

.enhanced-download-title {
  font-size: var(--fs-2);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.enhanced-download-text {
  font-size: var(--fs-8);
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.download-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.download-stat {
  text-align: center;
  padding: 20px;
  background: var(--raisin-black-2);
  border-radius: 12px;
  border: 1px solid var(--onyx);
  transition: var(--transition-3);
}

.download-stat:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.1);
}

.download-stat .stat-number {
  display: block;
  font-family: var(--ff-oswald);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  color: var(--orange);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

.download-stat .stat-label {
  font-size: var(--fs-10);
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enhanced-download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.enhanced-download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 30px;
  min-width: 220px;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition-3);
  border: 2px solid var(--onyx);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.enhanced-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition-3);
}

.enhanced-download-btn:hover::before {
  left: 100%;
}

.android-download {
  background: var(--raisin-black-3);
}

.android-download:hover {
  background: var(--raisin-black-2);
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

.ios-download {
  background: var(--raisin-black-3);
}

.ios-download:hover {
  background: var(--raisin-black-2);
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
}

.enhanced-download-btn ion-icon {
  font-size: 28px;
  color: var(--orange);
  filter: drop-shadow(0 2px 4px rgba(255, 102, 0, 0.3));
}

.enhanced-download-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.enhanced-download-btn .btn-subtitle {
  font-size: var(--fs-11);
  color: var(--light-gray);
  margin-bottom: 2px;
}

.enhanced-download-btn .btn-title {
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/**
 * Download section
 */

.download-section {
  background: var(--raisin-black-2);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

/* Original newsletter styles - keep unchanged */
.newsletter .download-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.newsletter .download-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  min-width: 200px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-3);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
}

.newsletter .download-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.newsletter .download-btn ion-icon {
  font-size: 24px;
  color: var(--white) !important;
}

.newsletter .download-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}

.newsletter .download-btn .btn-subtitle {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 2px;
}

.newsletter .download-btn .btn-title {
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--white) !important;
}

/* Call Break Friends specific download button styles */
.callbreak-newsletter .download-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.callbreak-newsletter .download-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  min-width: 200px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-3);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
  position: relative; /* Fixed positioning for Call Break page */
}

.callbreak-newsletter .download-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.callbreak-newsletter .download-btn ion-icon {
  font-size: 24px;
  color: var(--white) !important;
}

.callbreak-newsletter .download-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}

.callbreak-newsletter .download-btn .btn-subtitle {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 2px;
}

.callbreak-newsletter .download-btn .btn-title {
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--white) !important;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  min-width: 200px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-3);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn ion-icon {
  font-size: 24px;
  color: var(--white);
}

.download-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}

.download-btn .btn-subtitle {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 2px;
}

.download-btn .btn-title {
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--white) !important;
}

.newsletter-text {
  color: var(--light-gray);
  font-size: var(--fs-8);
  margin-top: 10px;
  text-align: center;
}

/**
 * Status badges
 */

.card-status {
  font-size: var(--fs-11);
  font-weight: var(--fw-500);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-status.live {
  background: var(--orange);
  color: var(--white);
}

.card-status.development {
  background: var(--onyx);
  color: var(--light-gray);
}

/**
 * Responsive adjustments for Call Break page
 */

@media (min-width: 768px) {
  .hero-download-buttons {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-highlights {
    gap: 20px;
  }
  
  .feature-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .how-to-play-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .newsletter .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .callbreak-newsletter .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .download-btn {
    min-width: 180px;
  }
  
  .newsletter .download-btn {
    min-width: 180px;
  }
  
  .callbreak-newsletter .download-btn {
    min-width: 180px;
  }
  
  .enhanced-download-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .enhanced-download-btn {
    min-width: 200px;
  }
  
  .download-stats {
    gap: 25px;
  }
  
  .gallery-item {
    min-width: 320px;
    height: 418px;
  }
  
  .game-rules-visual {
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .enhanced-banner {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
  }
  
  .main-game-showcase {
    flex: 2;
  }
  
  .feature-showcase {
    flex: 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card img {
    height: 120px;
  }
  
  .showcase-main {
    height: 400px;
  }
  
  .how-to-play-steps {
    grid-template-columns: 1fr;
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .stat-number {
    font-size: var(--fs-4);
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
  }
  
  .feature-card img {
    height: 150px;
  }
  
  .enhanced-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .enhanced-feature-card {
    padding: 25px;
  }
  
  .enhanced-icon {
    width: 80px;
    height: 80px;
  }
  
  .enhanced-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .feature-stats {
    gap: 6px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .how-to-play-steps {
    gap: 20px;
    margin: 30px 0;
  }
  
  .step {
    padding: 25px;
    gap: 20px;
  }
  
  .step:hover {
    transform: translateY(-5px);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: var(--fs-7);
  }
  
  .step-content h3 {
    font-size: var(--fs-6);
  }
  
  .game-rules-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }
  
  .rule-card {
    padding: 20px;
  }
  
  .rule-card ion-icon {
    font-size: 28px;
  }
  
  .enhanced-download-card {
    padding: 30px;
  }
  
  .download-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .download-stat {
    padding: 15px;
  }
  
  .download-stat .stat-number {
    font-size: var(--fs-5);
  }
  
  .enhanced-download-buttons {
    flex-direction: column;
    gap: 20px;
  }
  
  .enhanced-download-btn {
    min-width: 100%;
    padding: 15px 25px;
    justify-content: center;
  }
  
  .download-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .download-icon-wrapper ion-icon {
    font-size: 36px;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter .download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .callbreak-newsletter .download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .download-btn {
    min-width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .newsletter .download-btn {
    min-width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .callbreak-newsletter .download-btn {
    min-width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/**
 * Call Break Download Section
 */

.callbreak-download-section {
  padding: var(--section-padding) 0 120px;
}

.callbreak-download-card {
  background: url("../images/newsletter-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 25px;
  border-radius: 12px;
  text-align: center;
}

.callbreak-download-content {
  margin-bottom: 35px;
}

.callbreak-download-img {
  width: max-content;
  margin-inline: auto;
  margin-bottom: 15px;
}

.callbreak-game-icon {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange), var(--raisin-black-1));
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-3);
}

.callbreak-game-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.callbreak-game-icon > ion-icon {
  font-size: 60px;
  color: var(--white);
  z-index: 2;
}

.game-cards-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 15px;
  opacity: 0.7;
}

.game-cards-overlay ion-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.game-cards-overlay ion-icon:nth-child(1) {
  color: #ff6b6b; /* Red for diamonds */
  justify-self: start;
  align-self: start;
}

.game-cards-overlay ion-icon:nth-child(2) {
  color: #ff6b6b; /* Red for hearts */
  justify-self: end;
  align-self: start;
}

.game-cards-overlay ion-icon:nth-child(3) {
  color: var(--white); /* White for clubs */
  justify-self: start;
  align-self: end;
}

.game-cards-overlay ion-icon:nth-child(4) {
  color: var(--white); /* White for spades (trump) */
  justify-self: end;
  align-self: end;
  font-size: 24px; /* Slightly larger for spades (trump) */
}

.callbreak-download-title {
  font-size: clamp(var(--fs-5), 3.5vw, var(--fs-3));
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.callbreak-download-text {
  color: var(--light-gray);
  font-size: var(--fs-8);
  margin-top: 10px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.callbreak-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.callbreak-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  min-width: 200px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-3);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.callbreak-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.callbreak-btn ion-icon {
  font-size: 24px;
  color: var(--white);
}

.callbreak-btn-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}

.callbreak-btn-subtitle {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.callbreak-btn-title {
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--white);
}

/* Responsive styles for Call Break download section */
@media (min-width: 768px) {
  .callbreak-download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .callbreak-btn {
    min-width: 180px;
  }
  
  .callbreak-download-title {
    font-size: var(--fs-3);
    white-space: normal;
  }
}

/* Privacy page specific styles */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-card {
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(254, 203, 47, 0.1));
  border: 1px solid rgba(255, 126, 95, 0.2);
  border-radius: var(--radius-16);
  padding: 25px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 126, 95, 0.2);
  border-color: rgba(255, 126, 95, 0.4);
}

.privacy-card h3 {
  color: var(--orange) !important;
  font-size: var(--fs-6) !important;
  margin-bottom: 12px !important;
  font-weight: var(--fw-700) !important;
}

/* Apply orange theme to all privacy section titles */
.privacy-content .about-title {
  color: var(--orange) !important;
  font-size: var(--fs-4) !important;
  margin-bottom: 25px !important;
  font-weight: var(--fw-700) !important;
  text-align: center !important;
}

.privacy-card p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
}

.privacy-list li {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.privacy-list li::before {
  content: "✓";
  color: var(--orange-web);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-details p {
  color: var(--light-gray);
  margin-bottom: 8px;
}

.contact-details strong {
  color: var(--orange-web);
}

.last-updated {
  font-style: italic;
  color: var(--light-gray-70);
  margin-top: 15px;
}

/* Dynamic Game Cards Layout System */
.games-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 5vw, 60px);
  justify-items: center;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.games-list li {
  width: 100%;
  max-width: 380px;
  margin: 0;
}

/* Game card size variations */
.game-card-small {
  transform: scale(0.88);
  opacity: 0.92;
  margin: clamp(15px, 3vw, 25px) 0;
}

.game-card-large {
  transform: scale(1.12);
  z-index: 2;
  position: relative;
  margin: 0;
}

.game-card-small:hover {
  transform: scale(0.93) translateY(-8px);
  opacity: 1;
}

.game-card-large:hover {
  transform: scale(1.17) translateY(-8px);
}

/* Responsive breakpoints for optimal layout */
@media (min-width: 480px) {
  .games-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 768px) {
  .games-list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(30px, 6vw, 80px);
  }
}

@media (min-width: 1024px) {
  .games-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: clamp(40px, 7vw, 100px);
  }
}

@media (min-width: 1200px) {
  .games-list {
    gap: clamp(50px, 8vw, 120px);
  }
}

/* Special handling for exactly 3 cards (current layout) */
.games-list:has(li:nth-child(3)):not(:has(li:nth-child(4))) {
  grid-template-columns: repeat(3, minmax(280px, 380px));
  justify-content: center;
}

/* Special handling for exactly 2 cards */
.games-list:has(li:nth-child(2)):not(:has(li:nth-child(3))) {
  grid-template-columns: repeat(2, minmax(300px, 400px));
  justify-content: center;
}

/* Special handling for exactly 1 card */
.games-list:has(li:nth-child(1)):not(:has(li:nth-child(2))) {
  grid-template-columns: 1fr;
  max-width: 500px;
}

/* Mobile-first responsive adjustments */
@media (max-width: 767px) {
  .games-list {
    grid-template-columns: 1fr !important;
    gap: clamp(25px, 6vw, 40px) !important;
  }
  
  .game-card-small,
  .game-card-large {
    transform: scale(1) !important;
    margin: 0 !important;
    opacity: 1 !important;
  }
  
  .game-card-small:hover,
  .game-card-large:hover {
    transform: scale(1.02) translateY(-5px) !important;
  }
}

/* Future-proof: Handle 4+ cards gracefully */
@media (min-width: 768px) {
  .games-list:has(li:nth-child(4)) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  }
  
  .games-list:has(li:nth-child(5)) {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
  }
}

/* Rule cards mobile responsiveness */
@media (max-width: 768px) {
  .game-rules-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 20px auto 0;
  }
  
  .rule-card {
    padding: 15px 10px;
    min-height: 100px;
  }
  
  .rule-card ion-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .rule-card span {
    font-size: var(--fs-10);
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .game-rules-visual {
    gap: 8px;
  }
  
  .rule-card {
    padding: 12px 8px;
    min-height: 85px;
  }
  
  .rule-card ion-icon {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .rule-card span {
    font-size: var(--fs-11);
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .rule-card {
    padding: 10px 6px;
    min-height: 80px;
  }
  
  .rule-card ion-icon {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .rule-card span {
    font-size: 10px;
    line-height: 1;
  }
}

/* Privacy page title styles - new class to avoid conflicts */
.privacy-title-section {
  padding: 80px 0 0;
  background: var(--rich-black-fogra-29);
  border-bottom: 1px solid var(--onyx);
}

.privacy-page-title {
  color: var(--orange) !important;
  font-size: clamp(var(--fs-5), 3.5vw, var(--fs-3)) !important;
  font-weight: var(--fw-700) !important;
  text-align: center !important;
  margin: 90px;
  padding: 0 20px !important;
  font-family: var(--ff-oswald), sans-serif !important;
  line-height: 1.1 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .privacy-page-title {
    font-size: clamp(var(--fs-6), 4vw, var(--fs-4)) !important;
    padding: 0 15px !important;
  }
}

@media (max-width: 480px) {
  .privacy-page-title {
    font-size: clamp(var(--fs-7), 4.5vw, var(--fs-5)) !important;
    padding: 0 10px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  
  .privacy-title-section {
    padding: 60px 0 40px;
  }
}

@media (max-width: 480px) {
  .callbreak-download-title {
    font-size: var(--fs-6);
    white-space: normal;
    word-wrap: break-word;
  }
  
  .callbreak-download-buttons {
    gap: 15px;
  }
  
  .callbreak-btn {
    min-width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .callbreak-game-icon {
    width: 100px;
    height: 100px;
  }
  
  .callbreak-game-icon > ion-icon {
    font-size: 50px;
  }
  
  .game-cards-overlay {
    padding: 12px;
  }
  
  .game-cards-overlay ion-icon {
    font-size: 16px;
  }
  
  .game-cards-overlay ion-icon:nth-child(4) {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .enhanced-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /**
   * LOGO RESPONSIVE - LARGE DESKTOP
   */

  .header .logo img {
    height: 105px;
  }

  .navbar-top .logo img {
    height: 100px;
  }

  .footer-top .logo img {
    height: 110px;
  }
}



/*-----------------------------------*\
  #VIDEO MODAL
\*-----------------------------------*/

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-2);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: var(--raisin-black-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 50px hsla(0, 0%, 0%, 0.5);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--orange);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-1);
  z-index: 10;
}

.modal-close:hover {
  background: var(--white);
  color: var(--orange);
  transform: scale(1.1);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive styles for video modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    aspect-ratio: 16 / 9;
  }
  
  .modal-close {
    top: -40px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
  }
  
  .modal-close {
    top: -35px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}