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

/**
 * copyright 2022 codewithsadee
 */





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

:root {

  /**
   * colors
   */

  --rich-black-fogra-29_95: hsla(222, 18%, 11%, 0.95);
  --raisin-black-1: hsl(0, 0%, 16%);
  --raisin-black-2: hsl(236, 17%, 17%);
  --raisin-black-3: hsl(280, 11%, 11%);
  --raisin-black-4: hsl(280, 8%, 15%);
  --english-violet: hsl(274, 21%, 23%);
  --eerie-black-1: hsl(277, 25%, 10%);
  --eerie-black-2: hsl(280, 7%, 8%);
  --roman-silver: hsl(220, 6%, 59%);
  --quick-silver: hsl(0, 1%, 65%);
  --light-gray-1: hsl(0, 0%, 80%);
  --light-gray-2: hsl(0, 2%, 82%);
  --marigold_75: hsla(190, 85%, 58%, 0.75);
  --xiketic_90: hsla(280, 37%, 8%, 0.9);
  --cultured-2: hsl(0, 0%, 97%);
  --marigold: hsl(190, 85%, 58%);
  --platinum: hsl(0, 0%, 89%);
  --dim-gray: hsl(0, 0%, 42%);
  --white_15: hsla(0, 0%, 100%, 0.15);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --xiketic: hsl(277, 25%, 10%);
  --silver: hsl(0, 0%, 78%);
  --white: hsl(0, 0%, 100%);
  --jet: hsl(236, 13%, 23%);

  /**
   * typography
   */

  --ff-oxanium: 'Oxanium', cursive;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 7rem;
  --fs-2: 4.5rem;
  --fs-3: 3.6rem;
  --fs-4: 2.4rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.6rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 1.3rem;
  --fs-11: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * gradient
   */

  --gradient: radial-gradient(circle, hsl(250, 7%, 17%), hsl(250, 11%, 11%));

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 8px 0px hsla(0, 0%, 0%, 0.2),
              inset 0px 2px 8px 0px hsla(0, 0%, 0%, 0.4);
  --shadow-2: 0px 5px 10px 1px hsla(0, 0%, 0%, 0.4);
  --shadow-3: 0px 5px 10px 1px hsla(219, 98%, 17%, 0.2);
  --shadow-4: 0px 5px 10px 1px hsla(0, 0%, 0%, 0.15);

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





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

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

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

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

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

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

body {
  background-color: var(--raisin-black-3);
  font-size: 1.6rem;
  line-height: 1.5;
}

:focus-visible { outline-offset: 4px; }





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

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3 {
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-weight: var(--fw-800);
  line-height: 1;
}

.h1 {
  font-size: var(--fs-2);
  letter-spacing: -3px;
}

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

.h3 {
  font-size: var(--fs-6);
  text-transform: uppercase;
}

:is(.h1, .h2, .h3, .card-price) .span {
  display: inline-block;
  color: var(--marigold);
}

.btn {
  margin-inline: auto;
  color: var(--eerie-black-1);
  font-size: var(--fs-8);
  text-transform: uppercase;
  font-weight: var(--fw-700);
  min-height: 52px;
  padding-inline: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  gap: 10px;
}

.skewBg {
  position: relative;
  z-index: 1;
}

.skewBg::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewX(var(--skewX, -16deg));
  background-color: var(--bg, var(--marigold));
  z-index: -1;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 8px);
  width: 5px;
  transform: skewX(-16deg) translateX(var(--translateX, 0));
  background-color: var(--marigold);
  transition: var(--transition);
}

.btn:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(36, 206, 255, 0.18);
}

.btn:is(:hover, :focus)::after { --translateX: -13px; }

.btn:is(:hover, :focus)::before {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(45, 215, 255, 0.2);
}

.has-scrollbar {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-block-end: 30px;
  scroll-snap-type: inline mandatory;
}

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

.has-scrollbar::-webkit-scrollbar-track { outline: 3px solid var(--marigold); }

.has-scrollbar::-webkit-scrollbar-thumb { background-color: var(--marigold); }

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }

.section-subtitle,
.section-title {
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--silver);
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.section-title::after {
  content: url("../images/title-underline.png");
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  filter: hue-rotate(145deg) saturate(1.3);
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.card-banner { background-color: var(--light-gray-1); }

.img-holder { aspect-ratio: var(--width) / var(--height); }

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

.card-badge {
  min-height: 30px;
  color: var(--eerie-black-1);
  font-size: var(--fs-11);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  max-width: max-content;
  display: grid;
  align-items: center;
  padding-inline: 20px;
}

.card-badge::before { --skewX: -10deg; }

.w-100 { width: 100%; }

.section-text {
  color: var(--color, var(--light-gray-1));
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  max-width: 65ch;
  margin-inline: auto;
  text-align: center;
  line-height: 1.8;
}





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

.header-bottom::before,
.navbar-link::before { display: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-bottom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 33, 48, 0.96);
  backdrop-filter: blur(10px);
  padding-block: 8px;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-bottom.active {
  top: 0;
  animation: none;
}

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

.logo {
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-size: 3rem;
  font-weight: var(--fw-800);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle-btn {
  color: var(--white);
  font-size: 24px;
  border: 1px solid var(--white);
  padding: 4px;
}

.nav-toggle-btn.active .menu,
.nav-toggle-btn .close { display: none; }

.nav-toggle-btn .menu,
.nav-toggle-btn.active .close { display: block; }

.navbar {
  background-color: var(--eerie-black-1);
  color: var(--white);
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-width: 350px;
  visibility: hidden;
  max-height: 0;
  transition: 0.25s var(--cubic-out);
  overflow: hidden;
}

.navbar.active {
  visibility: visible;
  max-height: 275px;
  transition-duration: 0.5s;
}

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--white_15); }

.navbar-link {
  padding: 8px 12px;
  transition: var(--transition);
}

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





/*-----------------------------------*\
  #SEARCH BOX
\*-----------------------------------*/

.search-container {
  background-color: var(--rich-black-fogra-29_95);
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.search-container.active {
  visibility: visible;
  opacity: 1;
}

.search-container .input-wrapper {
  position: relative;
  max-width: 560px;
  width: 100%;
}

.search-container .search-field {
  color: var(--white);
  font-size: 2rem;
  padding: 20px;
  padding-inline-end: 60px;
  border-block-end: 3px solid var(--white_10);
  outline: none;
  transition: var(--transition);
}

.search-container .search-field:focus { border-color: var(--light-gray-2); }

.search-container .search-field::-webkit-search-cancel-button { display: none; }

.search-container .search-submit {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--marigold);
}

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

.search-container .search-close {
  position: fixed;
  inset: 0;
  cursor: default;
  z-index: -1;
}





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

.hero-banner { display: none; }

.hero {
  --section-padding: 60px;
  margin-block-start: 76px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero-subtitle {
  color: var(--marigold);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  text-transform: uppercase;
}

.hero-title { margin-block: 15px 12px; }

.hero-text {
  color: var(--light-gray-2);
  margin-block-end: 45px;
}





/*-----------------------------------*\
  #BRAND
\*-----------------------------------*/

.brand {
  --section-padding: 60px;
  background-image: var(--gradient);
}

.brand .has-scrollbar { padding-block-end: 0; }

.brand .has-scrollbar::-webkit-scrollbar { display: none; }

.brand-item {
  min-width: calc(50% - 10px);
  scroll-snap-align: start;
}

.brand-item > img { margin-inline: auto; }





/*-----------------------------------*\
  #LATEST GAME
\*-----------------------------------*/

.section-wrapper {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 17, 28, 0.98), rgba(11, 12, 20, 0.99));
  z-index: 1;
}

.section-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(180deg, rgba(13, 15, 24, 0.78), rgba(13, 15, 24, 0.95)),
    url("../images/section-wrapper-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.24;
}

.latest-game .section-title { margin-block-end: 80px; }





/*-----------------------------------*\
  #LIVE MATCH
\*-----------------------------------*/

.live-match {
  padding-block-start: 30px;
  overflow-x: hidden;
}

.live-match .section-title { margin-block-end: 90px; }

.live-match-banner {
  position: relative;
  background-color: var(--light-gray-1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}

.live-match-banner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--marigold);
  font-size: 60px;
}

.live-match-player {
  position: relative;
  padding-block-start: var(--section-padding);
}

.live-match-player::after {
  content: "LIVE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 15rem;
  font-weight: var(--fw-600);
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.live-match-player .player { max-width: max-content; }

.live-match-player .player-2 { margin-inline-start: auto; }

.live-match-detail { margin-block: 50px; }

.live-match-subtitle {
  background-color: var(--marigold);
  color: var(--white);
  font-size: var(--fs-9);
  text-transform: uppercase;
  font-weight: var(--fw-700);
  letter-spacing: 2px;
  padding: 4px 20px;
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 30px;
}

.live-match-time {
  color: var(--xiketic);
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  max-width: max-content;
  margin-inline: auto;
  line-height: 1;
}





/*-----------------------------------*\
  #FEATURED GAME
\*-----------------------------------*/

.featured-game {
  background: linear-gradient(180deg, rgba(15, 16, 26, 0.98), rgba(10, 11, 20, 0.99));
}

.featured-game .section-title {
  color: var(--white);
  margin-block-end: 90px;
}

.featured-game .has-scrollbar { gap: 0; }

.featured-game-card { position: relative; }

.featured-game-card :is(.card-content, .card-content-overlay) { position: absolute; }

.featured-game-card .card-content {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 35px;
  transition: var(--transition);
}

.featured-game-card .card-content-overlay {
  inset: 0;
  background-color: var(--marigold_75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.featured-game-card .card-title { margin-block-end: 5px; }

.featured-game-card .card-meta {
  color: var(--white);
  font-size: var(--fs-11);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.featured-game-card .card-content .card-meta { color: var(--platinum); }

.featured-game-card .card-content ion-icon {
  color: var(--marigold);
  font-size: 14px;
}

.featured-game-card .card-icon { margin-block-end: 20px; }

.featured-game-card .card-content-overlay .card-title { color: var(--xiketic); }

.featured-game-card .card-content-overlay .span { color: var(--white); }

.featured-game-card:is(:hover, :focus-within) .card-content { opacity: 0; }

.featured-game-card:is(:hover, :focus-within) .card-content-overlay { opacity: 1; }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { background-color: var(--white); }

.blog .section-title { color: var(--xiketic); }

.blog .section-text {
  color: var(--dim-gray);
  margin-block: 50px 60px;
}

.blog-list {
  display: grid;
  gap: 50px;
}

.blog-card .card-banner { margin-block-end: 30px; }

.blog-card .card-meta-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--quick-silver);
  font-size: var(--fs-11);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card .card-meta-item ion-icon {
  --ionicon-stroke-width: 50px;
  color: var(--marigold);
}

.blog-card .card-meta-item a.item-text { transition: var(--transition); }

.blog-card .card-meta-item a.item-text:is(:hover, :focus) { color: var(--marigold); }

.blog-card .card-title {
  color: var(--raisin-black-1);
  font-size: var(--fs-5);
  font-family: var(--ff-oxanium);
  font-weight: var(--fw-800);
  text-transform: uppercase;
  line-height: 1.2;
  margin-block: 10px 15px;
  transition: var(--transition);
}

.blog-card .card-title:is(:hover, :focus) { color: var(--marigold); }

.blog-card .card-text {
  color: var(--dim-gray);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  line-height: 1.8;
  margin-block-end: 25px;
}

.blog-card .card-link {
  color: var(--raisin-black-1);
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-card .card-link ion-icon,
.blog-card .card-link:is(:hover, :focus) { color: var(--marigold); }





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

.newsletter { margin-block-end: 80px; }

.newsletter-card {
  background-color: var(--raisin-black-3);
  padding: 40px 15px;
  margin-block-start: -55px;
  border-radius: 80px;
}

.newsletter .h2 {
  font-size: var(--fs-4);
  text-transform: uppercase;
  text-align: center;
  margin-block-end: 30px;
}

.newsletter .input-wrapper {
  max-width: 300px;
  margin-inline: auto;
  margin-block-end: 10px;
}

.newsletter .email-field {
  font-size: var(--fs-9);
  color: var(--white);
  font-weight: var(--fw-500);
  padding: 17px 45px;
  padding-inline-end: 20px;
  outline: none;
}

.newsletter .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  color: var(--marigold);
  --ionicon-stroke-width: 50px;
}

.newsletter .input-wrapper::before {
  --bg: var(--raisin-black-4);
  --skewX: -20deg;
}

.newsletter-btn {
  font-size: var(--fs-9);
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 20px;
  transition: var(--transition);
}

.newsletter-btn::after { display: none; }

.newsletter-btn::before {
  --skewX: -20deg;
  transition: var(--transition);
}

.newsletter-btn:is(:hover, :focus) { color: var(--marigold); }

.newsletter-btn:is(:hover, :focus)::before { background-color: var(--white); }





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

.footer {
  color: var(--roman-silver);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(37, 188, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 12, 22, 0.98), rgba(7, 8, 16, 1));
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 18, 0.96) 0%, rgba(8, 10, 18, 0.9) 38%, rgba(8, 10, 18, 0.55) 70%, rgba(8, 10, 18, 0.12) 100%);
  pointer-events: none;
}

.footer-top {
  padding-block: 90px 50px;
}

.footer-top .container {
  position: relative;
  z-index: 1;
}

.footer-showcase {
  display: grid;
  gap: 40px;
  align-items: center;
}

.footer-copy {
  max-width: 620px;
}

.footer .logo {
  margin-block-end: 18px;
}

.footer-eyebrow {
  color: var(--marigold);
  font-family: var(--ff-oxanium);
  font-size: var(--fs-10);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-block-end: 18px;
}

.footer-title {
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-block-end: 24px;
  max-width: 10ch;
}

.footer-text {
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  line-height: 1.9;
}

.footer-lead {
  max-width: 52ch;
  margin-block-end: 28px;
}

.footer-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(58, 221, 255, 1), rgba(34, 167, 231, 1));
  color: var(--eerie-black-1);
  font-family: var(--ff-oxanium);
  font-size: 2rem;
  font-weight: var(--fw-800);
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(26, 191, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-discord-btn ion-icon {
  font-size: 2.2rem;
}

.footer-discord-btn:is(:hover, :focus) {
  transform: translateY(-3px);
  box-shadow: 0 26px 46px rgba(26, 191, 255, 0.3);
  filter: brightness(1.05);
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block: 34px 28px;
}

.footer-social-link {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--marigold);
  background: rgba(18, 24, 38, 0.84);
  border: 1px solid rgba(69, 217, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.footer-social-link ion-icon {
  font-size: 2rem;
}

.footer-social-link:is(:hover, :focus) {
  transform: translateY(-3px);
  border-color: rgba(69, 217, 255, 0.42);
  background: rgba(28, 36, 54, 0.96);
}

.footer-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-link {
  font-size: var(--fs-9);
  transition: var(--transition);
  font-weight: var(--fw-500);
  color: var(--light-gray-2);
}

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

.footer-art {
  position: relative;
  min-height: 380px;
}

.footer-art::after {
  content: "";
  position: absolute;
  inset: auto 6% 6% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(55, 218, 255, 0.2), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.footer-character {
  position: relative;
  width: min(100%, 720px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42));
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(69, 217, 255, 0.08);
  background-color: rgba(7, 9, 16, 0.74);
  padding-block: 22px;
  text-align: center;
}

.copyright {
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  line-height: 1.8;
  color: var(--quick-silver);
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 15px;
  background-color: var(--marigold);
  padding: 12px;
  z-index: 4;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.floating-socials {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5;
}

.floating-social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease, filter 0.25s ease;
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(61, 204, 255, 0.1));
}

.floating-social-link ion-icon {
  font-size: 2.9rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.floating-social-link:is(:hover, :focus) {
  transform: translateX(-6px) scale(1.12);
  opacity: 1;
  color: var(--marigold);
  filter: drop-shadow(0 0 16px rgba(61, 204, 255, 0.32));
}

.bonus-card {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.bonus-card img {
  width: min(36vw, 390px);
  min-width: 235px;
  height: auto;
  display: block;
  pointer-events: none;
}

.bonus-card:is(:hover, :focus-visible) {
  transform: translateY(-50%) translateX(8px) scale(1.02);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.42));
}

.bonus-card-toast {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(14px, -50%) scale(0.92);
  background: rgba(14, 18, 30, 0.94);
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-size: 1.2rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(68, 220, 255, 0.28);
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.bonus-card.copied .bonus-card-toast {
  opacity: 1;
  transform: translate(20px, -50%) scale(1);
}




/*-----------------------------------*\
  #PW HYNIX
\*-----------------------------------*/

body {
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 8, 18, 0.98), rgba(17, 12, 26, 1));
}

.brand-logo img {
  width: 92px;
  height: auto;
}

.header-cta {
  color: var(--eerie-black-1);
  font-family: var(--ff-oxanium);
  font-size: 1.35rem;
  font-weight: var(--fw-800);
  text-transform: uppercase;
  min-height: 50px;
  min-width: 196px;
  padding-inline: 22px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(29, 188, 255, 0.18);
}

.header-whatsapp {
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-size: 1.2rem;
  font-weight: var(--fw-800);
  text-transform: uppercase;
  min-height: 50px;
  min-width: 170px;
  padding-inline: 22px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.header-whatsapp ion-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}

.header-cta::before {
  background: linear-gradient(135deg, rgba(68, 220, 255, 1), rgba(35, 174, 234, 1));
}

.header-cta::after {
  background: linear-gradient(180deg, rgba(86, 230, 255, 1), rgba(35, 174, 234, 1));
}

.header-whatsapp::before {
  background: linear-gradient(135deg, rgba(73, 231, 128, 1), rgba(37, 211, 102, 1));
}

.header-whatsapp::after {
  background: linear-gradient(180deg, rgba(95, 244, 150, 1), rgba(20, 168, 83, 1));
}

.header-cta:is(:hover, :focus) {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(29, 188, 255, 0.28);
}

.header-whatsapp:is(:hover, :focus) {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.pw-hero {
  position: relative;
  overflow: hidden;
}

.pw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(77deg, rgb(16 11 27 / 0%) 0%, rgb(16 11 27 / 8%) 45%, rgba(16, 11, 27, 0.3) 100%);
}

.pw-hero .container,
.download-panel,
.info-card,
.rule-card,
.ranking-card { position: relative; }

.pw-hero .container { z-index: 1; }

.hero-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(109, 214, 255, 0.12) 32%, rgba(255, 255, 255, 0.02) 68%, transparent 100%);
  filter: blur(34px);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: heroSmoke 18s linear infinite;
}

.smoke-1 {
  width: 360px;
  height: 220px;
  left: -6%;
  bottom: 10%;
  animation-duration: 22s;
}

.smoke-2 {
  width: 430px;
  height: 240px;
  right: 10%;
  bottom: 12%;
  opacity: 0.32;
  animation-duration: 26s;
  animation-delay: -8s;
}

.smoke-3 {
  width: 320px;
  height: 180px;
  left: 34%;
  top: 18%;
  opacity: 0.22;
  animation-duration: 20s;
  animation-delay: -4s;
}

@keyframes heroSmoke {
  0% {
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
  50% {
    transform: translate3d(32px, -18px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(64px, -36px, 0) scale(1);
  }
}

.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-block-end: 24px;
}

.hero-secondary {
  color: var(--white);
}

.hero-secondary::before {
  --bg: transparent;
  outline: 1px solid var(--marigold);
}

.hero-highlights {
  display: grid;
  gap: 12px;
  color: var(--light-gray-2);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
}

.hero-highlights li {
  position: relative;
  padding-inline-start: 22px;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--marigold);
  box-shadow: 0 0 15px var(--marigold);
}

.hero-character {
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.45));
}

.hero-character-widget {
  position: relative;
  width: min(520px, 100%);
  height: min(620px, 72vh);
  margin-inline: auto;
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 900px;
  animation: pwFloat 3.2s ease-in-out infinite;
}

.pw-character-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 58% 58%;
  filter:
    drop-shadow(0 0 18px rgba(0, 255, 255, 0.55))
    drop-shadow(0 24px 30px rgba(0, 0, 0, 0.65));
  animation:
    pwAttack 1.35s ease-in-out infinite,
    pwGlow 2.2s ease-in-out infinite;
}

.pw-aura {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.34), rgba(0, 255, 255, 0.12) 34%, transparent 68%);
  filter: blur(14px);
  transform: translateZ(-80px);
  animation: pwAuraPulse 1.35s ease-in-out infinite;
}

.pw-arrow-shot {
  position: absolute;
  left: -42%;
  top: 48%;
  width: 48%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.9);
  transform: rotate(-12deg);
  opacity: 0;
  animation: pwArrowShot 1.35s ease-out infinite;
}

.hero-character-widget::after {
  content: "";
  position: absolute;
  left: 34%;
  bottom: 2%;
  width: 42%;
  height: 11%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(16px);
  transform: rotateX(70deg);
  animation: pwShadow 3.2s ease-in-out infinite;
}

@keyframes pwFloat {
  0%, 100% {
    transform: translateY(0) rotateY(-8deg) rotateZ(0deg);
  }
  50% {
    transform: translateY(-22px) rotateY(8deg) rotateZ(1deg);
  }
}

@keyframes pwAttack {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1) rotateZ(0deg);
  }
  22% {
    transform: translateX(-8px) translateY(3px) scale(0.985) rotateZ(-1deg);
  }
  46% {
    transform: translateX(-22px) translateY(-5px) scale(1.035) rotateZ(-4deg);
  }
  62% {
    transform: translateX(12px) translateY(0) scale(1.01) rotateZ(2deg);
  }
}

@keyframes pwArrowShot {
  0%, 35% {
    opacity: 0;
    transform: translateX(120px) rotate(-12deg) scaleX(0.25);
  }
  47% {
    opacity: 1;
    transform: translateX(30px) rotate(-12deg) scaleX(1);
  }
  75% {
    opacity: 0;
    transform: translateX(-420px) rotate(-12deg) scaleX(1.4);
  }
  100% {
    opacity: 0;
  }
}

@keyframes pwGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 14px rgba(0, 255, 255, 0.45))
      drop-shadow(0 24px 30px rgba(0, 0, 0, 0.65));
  }
  50% {
    filter:
      drop-shadow(0 0 30px rgba(0, 255, 255, 0.9))
      drop-shadow(0 30px 38px rgba(0, 0, 0, 0.75));
  }
}

@keyframes pwAuraPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.9) translateZ(-80px);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.18) translateZ(-80px);
  }
}

@keyframes pwShadow {
  0%, 100% {
    opacity: 0.42;
    transform: scale(1) rotateX(70deg);
  }
  50% {
    opacity: 0.25;
    transform: scale(0.82) rotateX(70deg);
  }
}

.server-status {
  --section-padding: 50px;
}

.status-card {
  min-width: calc(50% - 10px);
  background: linear-gradient(180deg, rgba(61, 204, 255, 0.12), rgba(61, 204, 255, 0.03));
  border: 1px solid rgba(61, 204, 255, 0.22);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}

.status-card strong {
  display: block;
  font-family: var(--ff-oxanium);
  font-size: var(--fs-6);
  color: var(--white);
}

.status-label {
  display: block;
  color: var(--marigold);
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-block-end: 8px;
}

.card-logo-preview {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 186, 34, 0.16), rgba(15, 10, 24, 0.96));
}

.card-logo-preview img {
  object-fit: contain;
  padding: 50px;
}

.download-grid,
.info-layout,
.info-grid,
.rules-grid,
.ranking-grid {
  display: grid;
  gap: 24px;
}

.download-grid {
  margin-block-start: 40px;
}

.info-layout {
  margin-block-start: 40px;
}

.download-panel,
.info-card,
.rule-card,
.ranking-card {
  background: linear-gradient(180deg, rgba(25, 18, 38, 0.98), rgba(13, 10, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-2);
}

.video-panel {
  grid-column: 1 / -1;
}

.download-panel p,
.info-card p,
.rule-card p,
.ranking-role,
.ranking-score {
  color: var(--light-gray-2);
  font-size: var(--fs-8);
  line-height: 1.8;
}

.video-note {
  margin-block-start: 14px;
  color: var(--quick-silver);
  font-size: var(--fs-10);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 20px;
}

.download-actions .btn {
  min-width: 185px;
}

.download-actions ion-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hero-button-group .btn,
.download-actions .btn,
.header-whatsapp,
.header-cta {
  text-align: center;
}

.requirements-title {
  margin-block: 26px 14px;
}

.bugcast-panel {
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 28, 40, 0.94), rgba(12, 16, 26, 0.96));
}

.bugcast-panel .h3 { margin-block-end: 14px; }

.info-summary-panel .h3,
.info-table-panel .h3 {
  margin-block-end: 18px;
}

.info-summary-panel p {
  margin-block-end: 20px;
}

.server-info-table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(69, 217, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.server-info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-info-row:last-child {
  border-bottom: none;
}

.server-info-row span {
  color: var(--light-gray-2);
  font-size: var(--fs-8);
}

.server-info-row strong {
  color: var(--white);
  font-family: var(--ff-oxanium);
  font-size: var(--fs-8);
  text-align: right;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list li {
  color: var(--light-gray-2);
  position: relative;
  padding-inline-start: 18px;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--marigold);
}

.info-card {
  text-align: center;
}

.info-card ion-icon {
  margin-inline: auto;
  font-size: 4.2rem;
  color: var(--marigold);
  margin-block-end: 20px;
}

.server-details .logo-panel {
  object-fit: contain;
  padding: 16px;
}

.centered-list {
  max-width: 420px;
  margin-inline: auto;
  text-align: left;
}

.rule-card {
  overflow: hidden;
  border: 1px solid rgba(64, 214, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(23, 19, 36, 0.98), rgba(13, 11, 22, 0.98));
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rule-accent {
  position: absolute;
  top: 0;
  left: 28px;
  width: 78px;
  height: 3px;
  background: linear-gradient(90deg, rgba(75, 223, 255, 1), rgba(75, 223, 255, 0));
  border-radius: 999px;
}

.rule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(56, 210, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(56, 210, 255, 0.05), transparent 38%);
  pointer-events: none;
}

.rule-card .h3,
.rule-card p,
.rule-number {
  position: relative;
  z-index: 1;
}

.rule-number {
  display: inline-block;
  color: rgba(87, 222, 255, 0.34);
  font-family: var(--ff-oxanium);
  font-size: 4.2rem;
  font-weight: var(--fw-800);
  line-height: 1;
  margin-block-end: 12px;
}

.rule-card .h3 {
  margin-block-end: 12px;
}

.ranking-section {
  background-size: cover;
  background-position: center;
  position: relative;
}

.ranking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 24, 0.82);
}

.ranking-section .container {
  position: relative;
  z-index: 1;
}

.media-grid {
  display: grid;
  gap: 24px;
  margin-block-start: 46px;
}

.media-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(69, 217, 255, 0.16);
  background: linear-gradient(180deg, rgba(18, 23, 36, 0.92), rgba(10, 14, 24, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(52, 213, 255, 0.22), transparent 42%),
    radial-gradient(circle at bottom right, rgba(52, 213, 255, 0.12), transparent 26%);
}

.media-card-large {
  min-height: 360px;
}

.media-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 20, 0.94));
  z-index: 1;
}

.media-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding-inline: 14px;
  border-radius: 999px;
  background: rgba(57, 218, 255, 0.18);
  color: var(--marigold);
  font-size: var(--fs-11);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-block-end: 14px;
}

.media-card .h3 {
  margin-block-end: 10px;
}

.media-card p {
  color: var(--light-gray-2);
  max-width: 44ch;
  line-height: 1.8;
}

.ranking-hero {
  min-height: 100vh;
}

.ranking-content {
  max-width: 760px;
  margin-inline: auto;
}

.ranking-card {
  text-align: center;
}

.ranking-position {
  display: inline-block;
  color: var(--marigold);
  font-family: var(--ff-oxanium);
  font-size: var(--fs-4);
  font-weight: var(--fw-800);
  margin-block-end: 12px;
}

.champion {
  border-color: rgba(255, 184, 0, 0.45);
  transform: translateY(-4px);
}

.footer-logo {
  margin-block-end: 20px;
}




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 576px screen
 */

@media (min-width: 576px) {

  /**
   * REUSED STYLE
   */

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

  .h1 { --fs-2: 7rem; }



  /**
   * HEADER
   */

  .header-actions { gap: 40px; }



  /**
   * SEARCH BOX
   */

  .search-container :is(.search-field, .search-submit) { font-size: var(--fs-3); }



  /**
   * BRAND
   */

  .brand-item { min-width: calc(33.33% - 13.33px); }



  /**
   * FEATURED GAME 
   */

  .featured-game .scrollbar-item { min-width: 50%; }



  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 75%;
    justify-content: center;
  }



  /**
   * FOOTER
   */

  .footer-showcase {
    grid-template-columns: 1fr;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .scrollbar-item { min-width: calc(50% - 15px); }



  /**
   * HERO
   */

  .hero-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * BRAND
   */

  .brand-item { min-width: calc(25% - 15px); }



  /**
   * LIVE MATCH
   */

  .live-match-banner .play-btn { font-size: 120px; }

  .live-match-player::after { font-size: 30rem; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * NEWSLETTER
   */

  .newsletter :is(.input-wrapper, .newsletter-btn) { margin: 0; }

  .newsletter .input-wrapper {
    max-width: unset;
    width: 100%;
  }

  .newsletter .h2 { --fs-4: 2.6rem; }

  .newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .download-grid,
  .info-layout,
  .info-grid,
  .rules-grid,
  .ranking-grid { grid-template-columns: 1fr 1fr; }

  .media-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom { text-align: left; }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }



  /**
   * BACK TO TOP
   */

  .back-top-btn {
    bottom: 50px;
    right: 45px;
  }

}

@media (max-width: 767px) {
  .bonus-card {
    top: auto;
    bottom: 88px;
    transform: none;
  }

  .bonus-card img {
    width: min(54vw, 270px);
    min-width: 180px;
  }

  .bonus-card:is(:hover, :focus-visible) {
    transform: translateX(6px) scale(1.02);
  }

  .bonus-card-toast {
    left: 16px;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(8px) scale(0.92);
  }

  .bonus-card.copied .bonus-card-toast {
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 992px) {
  .bonus-card img {
    width: min(30vw, 390px);
  }
}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  :is(.header, .hero, .live-match) .container { max-width: unset; }

  .scrollbar-item { min-width: calc(33.33% - 20px); }



  /**
   * HEADER
   */

  .header-bottom { outline: 1px solid hsla(0, 0%, 0%, 0.2); }

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

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline: auto 10px;
  }

  .navbar-list { display: flex; }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--white);
    font-family: var(--ff-oxanium);
    font-size: var(--fs-11);
    text-transform: uppercase;
    font-weight: var(--fw-700);
    padding: 6px 10px;
  }

  .navbar-link::before {
    display: block;
    opacity: 0;
    transition: var(--transition);
  }

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

  .navbar-link:is(:hover, :focus)::before { opacity: 1; }



  /**
   * HERO
   */

  .hero { text-align: left; }

  .hero-banner { display: block; }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 50px;
  }

  .btn { margin-inline: 0; }

  .hero-button-group { justify-content: flex-start; }

  .status-card { min-width: calc(25% - 22.5px); }

  .download-grid { grid-template-columns: 1.1fr 0.9fr; }

  .info-layout,
  .info-grid,
  .ranking-grid { grid-template-columns: repeat(3, 1fr); }

  .info-layout { grid-template-columns: 1.1fr 0.9fr; }

  .rules-grid { grid-template-columns: repeat(2, 1fr); }

  .media-grid { grid-template-columns: 1.25fr 1fr 1fr; }

  .footer-showcase {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
  }

  .footer-art {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }



  /**
   * BRAND
   */

  .brand-item { min-width: calc(20% - 16px); }



  /**
   * LATEST GAME
   */

  .latest-game .has-scrollbar { padding-block-end: 0; }



  /**
   * LIVE MATCH
   */

  .live-match-banner {
    max-width: 700px;
    margin-inline: auto;
  }

  .live-match-player {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .live-match-detail { margin-block: 0; }



  /**
   * FEATURED GAME
   */

  .featured-game .scrollbar-item { min-width: 33.33%; }



  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }



  /**
   * NEWSLETTER
   */

  .newsletter-form { max-width: 650px; }



  /**
   * FOOTER
   */

  .footer .container {
    grid-template-columns: 1fr 0.7fr 0.7fr;
    column-gap: 80px;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container,
  :is(.header, .hero, .live-match) .container { max-width: 1230px; }

  .h1 { --fs-2: 7.5rem; }

  .hero-character-widget {
    width: min(560px, 100%);
    height: min(660px, 74vh);
  }

  .scrollbar-item { min-width: calc(25% - 22.5px); }



  /**
   * HEADER
   */
  .navbar-link {
    font-size: var(--fs-9);
    padding-inline: 16px;
  }



  /**
   * HERO
   */

  .hero .container { grid-template-columns: 1fr 1fr; }

  .brand-logo img { width: 104px; }



  /**
   * BRAND
   */

  .brand-item { min-width: calc(16.66% - 16.66px); }



  /**
   * LIVE MATCH
   */

  .section-wrapper::before { height: 72%; }

  .live-match-banner { max-width: max-content; }

  .live-match-player::after { font-size: 35rem; }



  /**
   * FEATURED GAME
   */

  .featured-game .has-scrollbar { padding-block-end: 0; }

  .featured-game .scrollbar-item { min-width: 25%; }



  /**
   * NEWSLETTER
   */

  .newsletter-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 70px;
  }

  .newsletter .h2 { margin-block-end: 0; }

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



  /**
   * FOOTER
   */

  .footer .container { grid-template-columns: 1fr 0.7fr 0.7fr 1fr; }

}
