/* Imports */
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&amp;lang=en');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Roboto Condensed:100,300,400,500,700,900');


:root{
    --static-7:#1d1d1d;
    --static-6:#222222;
    --static-5:#333434;
    --static-4:#4b4b4b;
    --static-3:#878787;
    --static-2:#b7b7b7;
    --static-1:#eeeeee;
}

html[data-theme='dark']{

    /* Theme Color Contrast */
    --color-contrast-1:#b7b7b7;

    /* Globale variables */
    --nav-height:3.5rem;

    /* Background colors */
    --bg-color-1: #1f2128;
    --bg-color-2: #242731;
    --bg-color-3: #2d3243;
    --bg-color-4: #14161D;
    --bg-color-5: #636e8a;
    --bg-color-6: #1f2128;
    --bg-color-card-rgb: 20, 22, 29;
    --bg-gradient-1:linear-gradient(135deg, rgba(31,33,40,1) 0%, rgba(21,23,28,1) 100%);
    --bg-gradient-2:linear-gradient(135deg, rgba(41,47,68,1) 0%, rgba(31,33,42,1) 100%);
    --bg-gradient-3:linear-gradient(135deg, rgba(44,50,71,1) 0%, rgba(30,34,48,1) 100%);


    --bg-gradient-transparent-1:linear-gradient(135deg, rgba(31,33,40,1) 0%, rgba(21,23,28,0) 100%);
    --bg-gradient-transparent-2:linear-gradient(135deg, rgba(41,47,68,1) 0%, rgba(31,33,42,0) 100%);
    --bg-gradient-transparent-3:linear-gradient(135deg, rgba(44,50,71,1) 0%, rgba(30,34,48,0) 100%);

    --bg-gradient-1-reverse:linear-gradient(0deg, rgba(31,33,40,1) 0%, rgba(21,23,28,0) 100%);

    /* Accent colors */
    --accent-1:#1c75bc;
    --accent-2:#4b8ef2;
    --accent-gradient-1:linear-gradient(135deg, rgba(28,117,188,1) 0%, rgba(103,180,248,1) 100%);
    --accent-gradient-2:linear-gradient(135deg, rgba(28,108,227,1) 0%, rgba(87,151,246,1) 100%);
    --accent-gradient-1-r:linear-gradient(135deg, rgba(103,180,248,1) 0%, rgba(28,117,188,1) 100%);
    --accent-gradient-2-r:linear-gradient(135deg, rgba(87,151,246,1) 0%, rgba(28,108,227,1) 100%);
    --line-gradient: linear-gradient(
        90deg,
        rgba(33, 111, 228, 0) 0%,
        #5596F5 50%,
        rgba(33, 111, 228, 0) 100%
    );
    --line-gradient-2: linear-gradient(
        90deg,
        #5596F5 0%,
        rgba(33, 111, 228, 0) 100%
    );


    /* Secondary colors */
    --color-dark-1:#1d1d1d;
    --color-dark-2:#222222;
    --color-dark-3:#333434;
    --color-dark-4:#4b4b4b;
    --color-dark-5:#b7b7b7;
    --color-text-1:#eeeeee;
    --color-text-2:#b7b7b7;


    /* Font family */
    --font-family-1:"Lato";
    --font-family-2:"Roboto";
    --font-family-3:"Roboto Condensed";
    --font-family-4:"Graduate";

    /* Highligt colors */
    --highlight-blue:    #0d6efd;
    --highlight-indigo:  #6610f2;
    --highlight-purple:  #6f42c1;
    --highlight-pink:    #d63384;
    --highlight-red:     #dc3545;
    --highlight-orange:  #fd7e14;
    --highlight-yellow:  #ffc107;
    --highlight-green:   #198754;
    --highlight-teal:    #20c997;
    --highlight-cyan:    #0dcaf0;
    --highlight-white: #ffffff;
    --highlight-black: #000;

    /* Highligt Gradient */
    --bg-success-1:linear-gradient(135deg, rgba(39,181,120,1) 0%, rgba(20,134,52,1) 100%);
    --bg-danger-1:linear-gradient(135deg, rgba(173,66,70,1) 0%, rgba(114,47,47,1) 100%);

    /* box-shadow */
    --box-shadow-accent-1:0px 16px 16px -10px rgba(50, 130, 250, 0.5);
    --box-shadow-accent-2:0px 20px 18px -16px rgba(87,151,246,0.60);
    --box-shadow-accent-3:0px 20px 18px -16px rgba(87,151,246,0.90);
    --box-shadow-accent-4:0px 16px 18px -10px rgba(82, 138, 221, 0.4);

    --box-shadow-dark-1:0px 20px 18px -16px rgba(0,0,0,0.15);
    --box-shadow-dark-2:0px 20px 18px -16px rgba(0,0,0,0.35);
    --box-shadow-dark-3:0px 20px 18px -16px rgba(0,0,0,0.55);
    --box-shadow-dark-4:0px 25px 20px -16px rgba(0,0,0,0.35);
    --box-shadow-dark-5:0px 25px 20px -16px rgba(0,0,0,0.45);

    --box-shadow-success-1:0px 16px 18px -10px rgba(39,181,120, 0.4);
    --box-shadow-danger-1:0px 16px 18px -10px rgba(173,66,70, 0.4);

    /* Contrast */
    --brightness-contrast:2;

    /* Borders */
    --border-accent: 1px solid var(--accent-1);
    --border-accent-light: 1px solid var(--accent-2);

    /* Padding */
    --container-padding-sm: 1.25rem;
    --container-padding-lg: 7.5rem;
}

/* DISABLED in Symfony - these global resets conflict with style.css
 * Uncomment only in the pure HTML repo (index.html)
 *
 * {
 *   box-sizing: border-box;
 *   text-decoration: none;
 *   color: inherit;
 * }
 *
 * html, body{
 *   padding: 0;
 *   margin: 0;
 *   font-family: var(--font-family-1);
 *   scrollbar-width: none;
 *   background: var(--bg-color-4);
 *   background-image: url('/public/assets/images/background-pattern.png');
 *   background-repeat: repeat;
 *   background-size: 2.5rem;
 *   z-index: -2;
 *   position: relative;
 *   max-width: 100%;
 *   overflow-x: hidden;
 * }
 */

/* =========================
   NAVBAR START
========================= */
.nav-wrapper{
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background: var(--bg-gradient-1);
}
.nav__left-wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.5);
}
.nav-wrapper > .border-bottom{
    display: none;
}
.nav__left{
    color: var(--static-1);
    background: var(--bg-gradient-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.2rem;
    position: relative;
}
.nav__left .logo-container{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1.25rem;
    flex-shrink: 0;
}
.nav__left .logo-background{
    position: absolute;
    left: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}
.nav__left .logo{
    width: 16px;
    height: auto;
    position: relative;
    z-index: 1;
}
.nav__left .nav-toggle-btn{
    margin-left: 0.75rem;
    z-index: 10;
    position: relative;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}
.nav__menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    font-size: .8rem;
    color: var(--color-text-2);
    background-color: var(--bg-color-1);
}
.nav__menu.active{
    display: block;
}
.nav__menu a{
    display: block;
    width: 100%;
    padding: 1rem;
}
.nav-wrapper .border-bottom{
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--line-gradient);
}
.nav__right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: var(--color-text-2);
    font-size: .9rem;
    gap: 1.25rem;
}
.nav__right .nav__button{
    cursor: pointer;
}
.nav__right .nav__button.profile{
    border: 1px solid var(--accent-2);
    border-radius: 1.25rem;
    height: 2rem;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.nav__right .nav__button.profile img{
    width: 100%;
    height: auto;
}
.nav__right .support{
    position: relative;
    color: var(--accent-2);
}
.nav__right .chat{
    position: relative;
}
.nav__right .chat .dot{
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--highlight-red);
    border-radius: 1.25rem;
    height: 0.4375rem;
    width: 0.4375rem;
}
/* =========================
   NAVBAR END
========================= */





.main-wrapper{
    margin-top: 3.75rem;
}

.diamond-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--accent-2);
  background: var(--bg-color-2);
  transform: rotate(45deg);
}





/* =========================
   COVER START
========================= */
.cover-section{
    position: relative;
    background-color: transparent;
    /* padding-inline: 20px; */
}
.cover-section .cover-image{
    width: 100%;
    aspect-ratio: 16/9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(8px);
}
.cover-section .header{
    font-size: 1.625rem;
    color: var(--color-text-1);
    padding-top: 3.75rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-weight: 300;
    box-sizing: border-box;
    padding-inline: 1.25rem;
    z-index: 1;
    position: relative;
}
.cover-section .header span{
    color: var(--accent-2);
    font-weight: 700;
}
.cover-section .filter-container{
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
    padding-inline: 20px;
}
.cover-section .filter-container .search-input{
    position: relative;
    color: var(--color-text-1);
}
.cover-section .filter-container .search-input input{
    width: 100%;
    outline: none;
    border: var(--border-accent);
    background-color: var(--bg-color-1);
    padding: 1.25rem;
    transition: .4s;
    box-shadow: 0px 0px 30px -30px rgba(83, 179, 255, 0);
}
.cover-section .filter-container .search-input input:focus{
    box-shadow: 0px 0px 30px -10px rgba(83, 179, 255, 0.5);
}
.cover-section .filter-container .search-input i{
    color: var(--color-text-1);
    position: absolute;
    top: 50%;
    right: 0.875rem;
    transform: translateY(-50%);
}
.cover-section .filter-container .alphabhat-filter{
    color: var(--static-3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
}
.cover-section .filter-container .alphabhat-filter div{
    cursor: pointer;
}
.cover-section .filter-container .alphabhat-filter .active{
    color: var(--color-text-1);
}

.no-results {
  display: none;
  text-align: center;
  color: var(--color-text-2);
  margin-top: 2.5rem;
  font-size: 0.875rem;
}
.games-wrapper{
    position: relative;
}
.games-slider{
    margin-top: 2.5rem;
    padding: 0 var(--container-padding-sm);
    position: relative;
}
.games-slider .swiper-slide{
  width: calc(100% - 2.5rem) !important; /* 1.25rem left + 1.25rem right */
}
/* when only 1 visible slide */
.games-slider.single .swiper-slide {
  width: 100% !important;
}

/* when 2 slides (optional better look) */
.games-slider.few .swiper-slide {
  width: calc(50% - 10px) !important;
}
.games-slider .game-card{
    width: 100%;
    height: max-content;
    background-color: var(--bg-color-1);
    border: var(--border-accent);
}
.games-slider .game-card .game-card__cover{
    height: max-content;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 180px;
    min-width: 400px;
}
.games-slider .game-card{
    width: 100%;
    height: auto;
}
.games-slider .game-card__icon{
    width: 2.375rem;
    aspect-ratio: 1/1;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}
.games-slider .game-card .game-card__title{
    padding: 1.25rem 0.625rem;
    text-align: center;
    width: 100%;
    color: var(--color-text-2);
}

.games-slider .game-card .border-bottom{
    height: 1px;
    width: 100%;
    background: var(--line-gradient);
}

.games-slider-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top: 3.125rem;
    padding:0px 1.25rem;
    color: var(--color-text-1);
    height: 50px;
    z-index: 2;
    position: relative;
}
.games-all-btn{
    position: relative;
    border: 1px solid var(--bg-color-3);
    padding:1.25rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--bg-color-2);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.games-all-btn:hover{
    border-color: var(--accent-1);
}
.games-all-btn::before{
  content:"";
  position:absolute;
  inset: 0.25rem;
  border: 2px solid var(--bg-color-3);
  pointer-events:none;
}
.games-prev, .games-next{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 2.25rem;
    width: 2.25rem;
    cursor: pointer;
}
.games-prev i, .games-next i{
    position: absolute;
    z-index: 1;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.games-prev .btn-shape, .games-next .btn-shape{
    width: 2.25rem;
    aspect-ratio: 1/1;
    border: 1px solid var(--accent-2);
    background-color: var(--bg-color-2);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
}

.games-all-button-secondary{
    display: none;
}
/* =========================
   COVER END
========================= */





/* =========================
   WHY CHOOSE US START
========================= */
.why-slider-container{
    position: relative;
    box-sizing: border-box;
    padding: 0 var(--container-padding-sm);
    margin-top: 3.125rem;
}
.why-slider-container .slide{
    border: var(--border-accent);
}
.why-slider-container .why-slider{
    box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.75);
}
.why-slider-container .image-cover{
    width: 100%;
    height: 12.5rem;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    transition: .2s;
}
.why-slider-container .why-us-content{
    background-color: var(--bg-color-4);
    padding: 1.25rem;
}
.why-slider-container .label{
    color: var(--accent-1);
    font-size: .8rem;
}
.why-slider-container .content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}
.why-slider-container .title{
    color: var(--color-text-1);
    font-size: 1.5rem;
    margin-top: 0.9375rem;
}
.why-slider-container .description{
    color: var(--color-dark-5);
    font-size: 1rem;
}

.why-us-slider-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top: 1.25rem;
    padding:0px 0.625rem;
    color: var(--color-text-1);
    height: 50px;
    z-index: 20;
    position: relative;
    width: 100%;
}
.why-us-prev, .why-us-next{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 2.25rem;
    width: 2.25rem;
    cursor: pointer;
}
.why-us-prev i, .why-us-next i{
    position: absolute;
    z-index: 1;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.why-us-prev .btn-shape, .why-us-next .btn-shape{
    width: 2.25rem;
    aspect-ratio: 1/1;
    border: 1px solid var(--accent-2);
    background-color: var(--bg-color-2);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
}
/* =========================
   WHY CHOOSE US END
========================= */





/* =========================
   VALUE SECTION START START
========================= */
.value-wrapper{
    max-width: 100%;
    margin: 3.125rem 0;
    padding: 0 var(--container-padding-sm);
    box-sizing: border-box;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    overflow-x: clip;
}
.value-wrapper .value{
    text-align: center;
    min-width: 0;
    margin-top: 0.625rem;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}
.value-wrapper .label{
    margin-bottom: 0.625rem;
    color: var(--color-text-2);
    font-size: 1.1rem;
    max-width: 100%;
}
.value-wrapper .num{
    font-size: 2.25rem;
    color: var(--accent-1);
    max-width: 100%;
}
/* =========================
   VALUE SECTION START END
========================= */





/* =========================
   HOT DEALS START
========================= */
.hot-deals-wrapper{
    margin-top: 3.125rem;
    padding: 0 var(--container-padding-sm);
}

.section-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.section-header .title{
    color: var(--color-text-1);
    font-size: 1.75rem;
}
.section-header .diamond,
.section-header .gradient{
    display: none;
}
.section-header .btn{
    position: relative;
    border: 1px solid var(--bg-color-3);
    color: var(--color-text-1);
    padding:1.25rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--bg-color-2);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.section-header .btn:hover{
    border-color: var(--accent-1);
}
.section-header .btn::before{
  content:"";
  position:absolute;
  inset: 0.25rem;
  border: 2px solid var(--bg-color-3);
  pointer-events:none;
}

.hot-deal-slider{
    margin-top: 1.25rem;
}
.hot-deal-slider .swiper-slide{
    height: auto;
}
.hot-deal-card{
    height: 100%;
    background-color: var(--bg-color-4);
    border: var(--border-accent);
}
.hot-deal-card .image-cover{
    width: 100%;
    height: 12.5rem;
    background-size: cover;
}
.hot-deal-info{
    padding: 1.25rem;
    position: relative;
}
.hot-deal-info .hot-deal-logo{
    position: absolute;
    height: 3.125rem;
    width: 3.125rem;
    top: 0;
    right: 1.25rem;
    background-color: var(--bg-color-4);
    border: var(--border-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0, -50%) rotate(45deg);
}
.hot-deal-logo img{
    width: 60%;
    height: auto;
    transform: rotate(-45deg);
}
.hot-deal-info .title{
    font-size: 1.2rem;
    color: var(--color-text-1);
    margin-bottom: 5px;
}
.hot-deal-info .list-item{
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.625rem;
}
.hot-deal-info .diamond{
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--accent-1);
    transform: rotate(45deg);
}
.hot-deal-info .point{
    color: var(--color-dark-5);
}

.hot-deals-cta{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    height: 100%;
    width: 100%;
    background: var(--accent-gradient-1);
    color: var(--static-1);
    font-size: 1.1rem;
}
.hot-deals-cta .title{
    font-size: 1.75rem;
    margin-bottom: 10px;
}
/* =========================
   HOT DEALS END
========================= */





/* =========================
   TESTIMONIAL SECTION START
========================= */
.testimonial-slider{
    margin-top: 3.125rem;
}
.testimonial-card{
  transition: .4s;
  transform: scale(.9);
}

.testimonial-card{
  background: var(--bg-color-2);
  padding: 1.875rem;
  min-height: 18.75rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text-2);
}
.testimonial-card .user-meta{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card .avatar{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--accent-2);
    flex-shrink: 0;
}
.testimonial-card .avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-card .user{
    font-size: 1rem;
}
.testimonial-card .testimonial{
    font-size: 1.75rem;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-style: italic;
    font-weight: 400;
}
.testimonial-card .booster-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0.625rem;
}
.testimonial-card .stars{
    color: var(--accent-1);
}

.swiper-slide-active .testimonial-card{
    opacity: 1;
    transform: scale(1);
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem; 
    background: linear-gradient(135deg, #4b8ef2, #1c75bc);
    clip-path: polygon(
    0% 5%,     /* top-left slant */
    50% 0%,     /* top peak */
    100% 5%,   /* top-right slant */
    100% 95%,   /* bottom-right slant */
    50% 100%,   /* bottom dip */
    0% 95%      /* bottom-left slant */
    );
    border: 2px solid var(--accent-2);
    color: var(--color-text-1);
    position: relative;
    overflow: hidden;
}

.swiper-slide-active .testimonial-card::before,
.swiper-slide-active .testimonial-card::after{
  content: "";
  position: absolute;
  pointer-events: none;
  clip-path: polygon(
    0% 5%,
    50% 0%,
    100% 5%,
    100% 95%,
    50% 100%,
    0% 95%
  );
}

.swiper-slide-active .testimonial-card::before{
  inset: 0.625rem;              /* inner border position */
  background: var(--bg-color-2);      /* border color */
  z-index: 1;
}

.swiper-slide-active .testimonial-card::after{
  inset: 0.75rem;              /* border thickness */
  background: linear-gradient(135deg, #4b8ef2, #1c75bc);
  z-index: 2;
}

.swiper-slide-active .testimonial-card > *{
  position: relative;
  z-index: 3;
}



.swiper-slide-active .testimonial-card .stars{
    color: var(--color-text-1);
}
/* =========================
   TESTIMONIAL SECTION END
========================= */





/* =========================
   POPULAR GUIDES START
========================= */
.popular-guides-wrapper{
  margin-top: 3.125rem;
  padding: 0 var(--container-padding-sm);
}

.popular-guides-slider{
  margin-top: 1.25rem;
}

.guide__card{
  border: var(--border-accent);
  background: var(--bg-color-4);
  height: 100%;
}

.guide__card .image{
  height: 25rem;
  background-size: cover;
  background-position: top center;
}

.guide__card .info{
  padding: 1.875rem 1.25rem;
  position: relative;
}

.guide__card .guide__logo{
  position: absolute;
  height: 3.125rem;
  width: 3.125rem;
  top: 0;
  right: 1.25rem;
  background-color: var(--bg-color-4);
  border: var(--border-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, -50%) rotate(45deg);
}

.guide__card .guide__logo img{
  width: 60%;
  height: auto;
  transform: rotate(-45deg);
}

.guide__card .title{
    font-size: 1.2rem;
    max-width: 80%;
    color: var(--color-text-2);
    font-weight: 300;
}
/* =========================
   POPULAR GUIDES END
========================= */





/* =========================
   MOST WANTED OFFERS START
========================= */
.most-wanted-wrapper{
    margin-top: 3.125rem;
    /* padding: 0 var(--container-padding-sm); */
}
.most-wanted-wrapper .header{
    padding-inline: 1.25rem;
}
.most-wanted-container{
    position: relative;
    margin-top: 2.5rem;
}
.most-wanted-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: var(--border-accent);
    background: var(--bg-color-4);
    padding: 1.25rem;
    height: 100%;
}
.most-wanted-card__title{
    color: var(--color-text-1);
}
.most-wanted-card__price{
    color: var(--color-text-2);
    font-size: 0.9rem;
}
.most-wanted-card__badge {
  border: 1px solid var(--accent-2);
  transform: rotate(45deg);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.most-wanted-card__badge img {
  width: 60%;
  height: auto;
  transform: rotate(-45deg);
}
.most-wanted-card__badge span{
    transform: rotate(-45deg);
}
.mw-nav{
    display:flex;
    justify-content:space-between;
    margin-top:2.5rem;
    padding-inline: 1.25rem;
}
.most-wanted-prev, .most-wanted-next{
    position: relative;
    width:2.25rem;
    height:2.25rem;
    cursor:pointer;
    color: var(--color-text-2);
}
.most-wanted-prev i, .most-wanted-next i{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:1;
}
.most-wanted-prev .btn-shape,
.most-wanted-next .btn-shape{
    width:2.25rem;
    height:2.25rem;
    border:1px solid var(--accent-2);
    background:var(--bg-color-2);
    transform:rotate(45deg);
}
/* =========================
   MOST WANTED OFFERS END
========================= */





/* =========================
   FOOTER START
========================= */
.footer{
    margin-top: 5rem;
    background: var(--bg-color-1);
    position: relative;
    padding: 0 1.25rem 6.25rem;
}

.footer-top{
    position: relative;
    padding-top: 2.5rem;
    text-align: center;
}

.footer-top .line{
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(33,111,228,0) 0%, #5596F5 50%, rgba(33,111,228,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-logo{
    width: 4.375rem;
    height: 4.375rem;
    margin: 0 auto;
    background: var(--bg-color-4);
    border: 1px solid var(--accent-2);
    transform: rotate(45deg) translate(-70%, 0%);
    display:flex;
    align-items:center;
    justify-content:center;
    position: absolute;
    top: 0;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    z-index: 2;
}

.footer-logo img{
    width: 1.25rem;
    transform: rotate(-45deg) translate(5%, -5%);
}

.footer-content{
    display: grid;
    gap: 1.875rem;
    margin-top: 2.5rem;
    grid-template-columns: 1fr 1fr;
}

.footer-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
    width: 100%;
}

.footer-col{
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    color: var(--color-text-2);
}

.footer-col .separator_line{
    height: 2px;
    width: 50%;
    background: var(--line-gradient-2);
}
.footer-col i{
    margin-right: .5rem;
}
.footer-col .social i{
    margin-right: 0;
}
.footer-title{
    color: var(--color-text-1);
    margin-bottom: 0.625rem;
}

.footer-main{
    width: 100%;
}

.footer-desc{
    width: 100%;
}

.footer-actions{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.social{
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--accent-2);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-1);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.social:hover{
    background: rgba(75, 142, 242, 0.1);
    border-color: var(--accent-1);
    color: var(--color-text-1);
}

.social i{
    transform: rotate(-45deg);
    font-size: 1rem;
    line-height: 1;
}

.chat-btn{
    padding: 0.65rem 1.25rem;
    background: var(--accent-gradient-1);
    color: white;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.chat-btn:hover{
    opacity: 0.9;
    color: white;
}

.payment-methods{
    margin-top: 2.5rem;
    padding: 1.25rem;
    border: 1px solid var(--accent-2);
    background: var(--bg-color-4);
}

.payment-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
    gap: 1.875rem;
    align-items: center;
    justify-items: center;
}

.payment-grid img{
    max-width: 6.25rem;
    opacity: 0.8;
    transition: .3s;
}

.payment-grid img:hover{
    opacity: 1;
}

.footer-games {
  margin-top: 2.5rem;
}

.footer-games-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875rem;
}

.footer-games-header::before,
.footer-games-header::after {
    content: "";
    flex: 1;
    height: 1px;
}
.footer-games-header::before{
    background: linear-gradient(
        90deg,
        rgba(33,111,228,0) 0%,
        #5596F5 100%
    );
}
.footer-games-header::after{
    background: linear-gradient(
        90deg,
        #5596F5 0%,
        rgba(33,111,228,0) 100%
    );
}

.footer-games-header .title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.125rem;
  /* margin: 0 14px; */
  color: var(--color-text-1);
  line-height: 1;
  white-space: nowrap;
  isolation: isolate;
}

.footer-games-header .title::before,
.footer-games-header .title::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    16px 100%,
    0 50%
  );
}

.footer-games-header .title::before {
  background: var(--accent-2);
  z-index: -2;
}

.footer-games-header .title::after {
  inset: 0.0625rem;
  background: var(--bg-color-1);
  z-index: -1;
}

.games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 0.625rem;
  justify-content: space-between;
}

.games-list div {
  padding: 0.625rem 1rem;
  border: 1px solid var(--bg-color-3);
  background: var(--bg-color-2);
  color: var(--color-text-2);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: .2s;
  flex: 0 0 auto;
}

.games-list div:hover {
  border-color: var(--accent-1);
  color: var(--color-text-1);
}

.footer-bottom {
  margin-top: 2.5rem;
}

.footer-bottom .line {
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    rgba(33,111,228,0) 0%,
    #5596F5 50%,
    rgba(33,111,228,0) 100%
  );
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--color-text-2);
  font-size: 0.8125rem;
  line-height: 1.6;
}


/* =========================
   FOOTER END
========================= */



@media (min-width: 87.5rem){
    .why-slider-container .image-cover{
        height: 37.5rem !important;
    }
}
@media (min-width: 75rem){
    .why-slider-container .image-cover{
        height: 31.25rem !important;
    }


    /* Hot Deals Start */
    .hot-deals-wrapper{
        margin-top: 3.125rem;
        padding: 0 var(--container-padding-lg);
    }
    .hot-deal-card .image-cover.first{
        height: 31.25rem;
    }
    .hot-deal-slider .swiper-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.25rem;
    }

    .hot-deal-slider .swiper-slide {
        width: 100% !important;
    }
    .hot-deal-slider .swiper-slide:nth-child(1) {
        grid-row: span 2;
    }
    .hot-deal-slider .swiper-slide:last-child {
        grid-column: 3;
        grid-row: 2;
    }
    /* Hot Deals End */
}

@media (min-width: 62rem){

    /* Navbar Start */
    .nav-wrapper{
        flex-direction: row;
        height: max-content;
    }
    .nav__left-wrapper{
        position: unset;
        display: flex;
        width: 100%;
        box-shadow: 0px 10px 80px rgba(0, 0, 0, 0);
    }
    .nav-wrapper > .border-bottom{
        display: block;
    }
    .nav__left{
        background: transparent;
        width: max-content;
    }
    .nav__left .nav-toggle-btn{
        display: none;
    }
    .nav__left > .border-bottom{
        display: none;
    }
    .nav__menu, .nav__menu.active{
        position: unset;
        left: unset;
        top: unset;
        width: max-content;
        display: flex;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        background-color: transparent;
    }
    .nav__menu a{
        width: max-content;
    }
    .nav__right{
        position: static;
        width: max-content;
        gap: 1.875rem;
    }
    /* Navbar End */



    /* Cover Start */
    .cover-section{
        padding-inline: 7.5rem;
    }
    .cover-section .header{
        padding-inline: 0px;
    }
    .cover-section .filter-container{
        padding-inline: 0px;
        flex-direction: row;
        justify-content: space-between;
    }
    .cover-section .filter-container .search-input{
        min-width: 31.25rem;
    }
    .cover-section .filter-container .alphabhat-filter{
        font-size: 1.125rem;
    }
    .games-slider .swiper-slide{
        width: auto !important;
    }
    .games-slider{
        height: 40.625rem;
        padding: 0 var(--container-padding-sm);
    }
    .games-slider .swiper-slide{
        height: calc((100% - 1.25rem) / 2) !important;
    }

    .games-slider-nav{
        position: absolute;
        left: 0;
        top: 50%;
        z-index: 1;
        width: 100%;
        transform: translateY(-50%);
        padding: 0;
        margin: 0;
    }
    .games-slider-nav .games-all-btn{
        display: none;
    }
    .games-slider-nav .games-prev{
        transform: translateX(-200%);
    }
    .games-slider-nav .games-next{
        transform: translateX(200%);
    }

    .games-all-button-secondary{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
        box-sizing: border-box;
    }
    .games-all-button-secondary .diamond{
        height: 16px;
        width: 16px;
        transform: rotate(-45deg);
        background-color: var(--bg-color-4);
        border: var(--border-accent);
    }
    .games-all-button-secondary .gradient{
        width: 200px;
        background: linear-gradient(90deg, rgba(28,117,188,1) 0%, rgba(28,117,188,0) 100%);
        height: 2px;
    }
    .games-all-button-secondary .gradient:nth-child(4){
        background: linear-gradient(90deg, rgba(28,117,188,0) 0%, rgba(28,117,188,1) 100%);
    }
    
    .games-all-button-secondary .btn-link{
        position: relative;
        border: 1px solid var(--bg-color-3);
        padding:20px 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: var(--bg-color-2);
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        color: var(--color-text-1);
    }
    .games-all-button-secondary .btn-link:hover{
        border-color: var(--accent-1);
    }
    .games-all-button-secondary .btn-link::before{
    content:"";
    position:absolute;
    inset: 4px;
    border: 2px solid var(--bg-color-3);
    pointer-events:none;
    }
    /* Cover End */





    /* Why Choose Us Start */
    .why-slider-container{
        position: relative;
        box-sizing: border-box;
        padding: 0 var(--container-padding-lg);
        margin-top: 50px;
    }
    
    .why-slider-container .content-wrapper{
        flex-direction: row;
        gap: 10px;
        margin-top: 10px;
    }
    .why-slider-container .why-us-content{
        padding: 2.5rem;
    }
    .why-slider-container .label{
        font-size: 1rem; /* already rem */
    }
    .why-slider-container .title{
        font-size: 1.5rem;
        margin-top: 0;
    }
    .why-slider-container .image-cover{
        height: 25rem;
    }
    .why-us-slider-nav{
        position: absolute;
        left: 0;
        top: 50%;
        z-index: 1;
        width: 100%;
        transform: translateY(-50%);
        padding: 0;
        margin: 0;
    }
    .why-us-slider-nav .why-us-prev{
        left: 50px;
    }
    .why-us-slider-nav .why-us-next{
        right: 50px;
    }
    /* Why Choose Us End */





    /* Value Section Start */
    .value-wrapper{
        padding: 0 var(--container-padding-lg); /* uses variable */
        display: flex;
        justify-content: space-between;
    }
    /* Value Section End */





    /* Hot Deals Start */
    .section-header .diamond,
    .section-header .gradient{
        display: block;
    }

    .section-header .diamond{
        background-color: var(--bg-color-4);
        border: 2px solid var(--accent-1);
        width: 20px;
        height: 20px;
        transform: rotate(-45deg) translate(13px, 13px);
    }

    .section-header .gradient{
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(28,117,188,1) 0%, rgba(28,117,188,0) 100%);
    }
    /* remove gap between diamond & gradient like before */
    .section-header .diamond + .gradient,
    .section-header .gradient + .diamond{
        margin-left: -20px;
    }
    /* Hot Deals End */





    /* Testimonial Section Start */
    .testimonial-slider{
        margin-top: 150px;
    }
    /* Testimonial Section End */





    /* Popular Guides Start */
    .popular-guides-wrapper{
        margin-top: 9.375rem;
        padding: 0 var(--container-padding-lg);
    }

    .popular-guides-slider .swiper-wrapper{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .popular-guides-slider .swiper-slide{
        width: 100% !important;
    }

    .popular-guides-wrapper .header{
        gap: 20px;
    }

    .popular-guides-wrapper .header .diamond,
    .popular-guides-wrapper .header .gradient{
        display: block;
    }

    .popular-guides-wrapper .header .diamond{
        background-color: var(--bg-color-4);
        border: 2px solid var(--accent-1);
        width: 1.25rem;
        height: 1.25rem;
        transform: rotate(-45deg) translate(13px, 13px);
    }

    .popular-guides-wrapper .header .gradient{
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(28,117,188,1) 0%, rgba(28,117,188,0) 100%);
    }
    /* Popular Guides End */


    /* Most Wanted Offers Start */
    .most-wanted-wrapper{
        padding: 0 var(--container-padding-lg); /* uses variable */
    }
    .most-wanted-wrapper .header{
        padding-inline: 0px;
    }

    .mw-nav{
        position:absolute;
        top:50%;
        width:100%;
        transform:translateY(-50%);
        margin:0;
        padding-inline: 0;
    }

    .most-wanted-prev{
        position:absolute;
        left:-4.375rem;
        margin-top: -15px;
    }

    .most-wanted-next{
        position:absolute;
        right:-4.375rem;
        margin-top: -15px;
    }
    /* Most Wanted Offers End */
    
    
    
    
    
    /* Footer Start */
    .footer{
        padding: 0 7.5rem 2.5rem;
    }
    .footer-content{
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 0px; /* no padding change needed */
        justify-items: stretch;
    }

    .footer-group{
        display: contents;
    }

    .payment-methods{
        padding: 2.5rem;
    }

    .payment-grid{
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem 3.75rem;
    }

    /* Footer End */

}

@media (min-width: 48rem){
    .why-slider-container .image-cover{
        height: 18.75rem;
    }
}
@media (min-width: 576px){}
@media (min-width: 480px){}
