/*

TemplateMo 579 Cyborg Gaming

https://templatemo.com/tm-579-cyborg-gaming

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
	color: #CCC;
  text-decoration: none !important;
}
a:hover {
	color: #F99;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html {
  background-color: #1f2122;
  min-height: 100%;
}

body {
  position: relative;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

/* Base atmosphere (under construction layers) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    #141617 0%,
    #1a1d1f 18%,
    #1f2122 38%,
    #23282b 58%,
    #1c1f21 78%,
    #252328 100%
  );
  background-size: 280% 280%;
  animation: site-bg-drift 52s ease-in-out infinite;
}

@keyframes site-bg-drift {
  0%,
  100% {
    background-position: 5% 25%;
  }
  50% {
    background-position: 95% 75%;
  }
}

/* ——— Site / renovation background: masonry + crane + shell + dust ——— */
.site-bg-build {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Brick / blockwork (кладка стены) */
.site-bg-build__bricks {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-color: #1c1e20;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.45) 0px,
      rgba(0, 0, 0, 0.45) 1px,
      transparent 1px,
      transparent 27px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 59px,
      rgba(0, 0, 0, 0.35) 59px,
      rgba(0, 0, 0, 0.35) 60px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.028) 0px,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 59px,
      rgba(0, 0, 0, 0.35) 59px,
      rgba(0, 0, 0, 0.35) 60px
    );
  background-size:
    100% 28px,
    120px 100%,
    120px 100%;
  background-position:
    0 0,
    0 0,
    60px 14px;
  animation: site-build-bricks 100s linear infinite;
}

@keyframes site-build-bricks {
  0% {
    background-position: 0 0, 0 0, 60px 14px;
  }
  100% {
    background-position: 0 56px, 120px 0, 180px 14px;
  }
}

/* Silhouette: tower crane + house frame under construction */
.site-bg-build__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.72;
}

.site-bg-build__crane-sway {
  transform-origin: 0 0;
  animation: site-build-crane-sway 52s ease-in-out infinite;
}

@keyframes site-build-crane-sway {
  0%,
  100% {
    transform: rotate(-2.4deg);
  }
  50% {
    transform: rotate(2.4deg);
  }
}

/* Fine dust / particles in the air (ремонтная пыль) */
.site-bg-build__dust {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.07) 0, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0, transparent 2px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.06) 0, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.045) 0, transparent 2px);
  background-size: 100% 100%;
  animation: site-build-dust 28s ease-in-out infinite;
}

@keyframes site-build-dust {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.35;
  }
  33% {
    transform: translate3d(12px, -18px, 0);
    opacity: 0.42;
  }
  66% {
    transform: translate3d(-8px, 10px, 0);
    opacity: 0.32;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none !important;
    background-size: 100% 100%;
    background-position: center center;
  }

  .site-bg-build__bricks {
    animation: none !important;
  }

  .site-bg-build__crane-sway {
    animation: none !important;
    transform: none !important;
  }

  .site-bg-build__dust {
    animation: none !important;
    transform: none !important;
  }
}

body .page-content {
  margin-top: 110px;
  background-color: #27292a;
  padding: 60px;
  border-radius: 23px;
}

p {
  font-size: 15px;
  color: #666;
  line-height: 30px;
  margin-bottom: 0px;
}

::selection {
  background: #e75e8d;
  color: #fff;
}

::-moz-selection {
  background: #e75e8d;
  color: #fff;
}

.templatemo-item {
	max-width: 80px; 
	border-radius: 23px;
}

.main-button a {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: #fff;
  color: #e75e8d;
}

.main-border-button a {
  font-size: 14px;
  color: #ec6090;
  background-color: transparent;
  border: 1px solid #ec6090;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-border-button a:hover {
  border-color: #fff;
  background-color: #fff;
  color: #e75e8d;
}

.border-no-active a {
  border-color: #666;
  color: #666;
}

.border-no-active a:hover{
  border-color: #666;
  color: #666;
  background-color: transparent;
}

section {
  margin-top: 120px;
}

.heading-section h4 {
  color: #ec6090;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 30px;
}

.heading-section h4 em {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 20%, #252830 0%, #121416 55%, #0a0b0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.preloader__visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 8px;
}

.preloader__orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.preloader__orbit--outer {
  inset: 0;
  border-top-color: rgba(236, 96, 144, 0.95);
  border-right-color: rgba(236, 96, 144, 0.25);
  animation: preloader-spin 1.15s linear infinite;
}

.preloader__orbit--inner {
  inset: 12px;
  border-bottom-color: rgba(212, 160, 23, 0.75);
  border-left-color: rgba(212, 160, 23, 0.2);
  animation: preloader-spin-reverse 1.65s linear infinite;
}

.preloader__glow {
  position: absolute;
  inset: 28px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(236, 96, 144, 0.35) 0%, transparent 70%);
  animation: preloader-glow 2.2s ease-in-out infinite;
  pointer-events: none;
}

.preloader__logo-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(40, 42, 44, 0.95) 0%, rgba(28, 30, 32, 0.98) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.js-preloader .preloader__logo {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  object-fit: contain;
  border-radius: 10px;
  animation: preloader-logo-pulse 2s ease-in-out infinite;
}

.preloader__title {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.preloader__subtitle {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 96, 144, 0.85);
}

.preloader__track {
  width: min(220px, 70vw);
  height: 3px;
  margin-top: 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.preloader__track-fill {
  height: 100%;
  width: 35%;
  border-radius: 3px;
  background: linear-gradient(90deg, #c94d7a, #ec6090, #f5b8cc);
  animation: preloader-bar 1.35s ease-in-out infinite;
  box-shadow: 0 0 14px rgba(236, 96, 144, 0.45);
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes preloader-glow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes preloader-logo-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.08);
  }
}

@keyframes preloader-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__orbit--outer,
  .preloader__orbit--inner,
  .preloader__glow,
  .js-preloader .preloader__logo,
  .preloader__track-fill {
    animation: none !important;
  }

  .preloader__track-fill {
    width: 100%;
    transform: none;
  }
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: #1f2122 !important;
  height: 70px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  display: block;
  z-index: 1000;
}

.header-area {
  background-color: transparent;
  position: absolute;
  height: 70px;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px 0px;
  border-radius: 50px;
}

.background-header .main-nav {
  padding: 0px;
  background-color: transparent;
}

.header-area .main-nav #search {
  position: relative;
}

.header-area .main-nav #search input {
  background-color: #27292a;
  height: 46px;
  border-radius: 23px;
  border: none;
  color: #666;
  font-size: 14px;
  padding: 0px 15px 0px 45px;
}

.header-area .main-nav #search i {
  position: absolute;
  color: #666;
  left: 20px;
  top: 16px;
  width: 18px;
  height: 18px;
  font-size: 16px;
}

.header-area .main-nav .logo {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-basis: 25%;
  margin-right: 5%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
  width: 191px;
  display: block;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease;
}

.header-area .main-nav .logo:hover img,
.header-area .main-nav .logo:focus-visible img {
  animation: nav-logo-hover 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.header-area .main-nav .logo:focus-visible {
  outline: none;
}

.header-area .main-nav .logo:focus-visible img {
  filter: drop-shadow(0 4px 18px rgba(236, 96, 144, 0.45));
}

@keyframes nav-logo-hover {
  0% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) drop-shadow(0 0 0 transparent);
  }
  25% {
    transform: scale(1.07) rotate(-3deg);
    filter: brightness(1.06) drop-shadow(0 6px 20px rgba(236, 96, 144, 0.35));
  }
  50% {
    transform: scale(1.04) rotate(2.5deg);
    filter: brightness(1.04) drop-shadow(0 4px 16px rgba(236, 96, 144, 0.28));
  }
  75% {
    transform: scale(1.06) rotate(-1deg);
    filter: brightness(1.05) drop-shadow(0 5px 18px rgba(236, 96, 144, 0.32));
  }
  100% {
    transform: scale(1.05) rotate(0deg);
    filter: brightness(1.04) drop-shadow(0 4px 14px rgba(236, 96, 144, 0.3));
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-area .main-nav .logo img {
    transition: none;
  }

  .header-area .main-nav .logo:hover img,
  .header-area .main-nav .logo:focus-visible img {
    animation: none;
    transform: none;
    filter: none;
  }
}

.background-header .main-nav .logo {
  margin-top: 8px;
}

.background-header .main-nav .logo img {
  width: 180px;
}

.header-area .main-nav .nav {
  display: inline-flex;
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  text-align: right;
  margin-top: 0px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

/* Compact pill: only as wide as links; no empty stretch inside the bar */
.header-area .main-nav .nav.site-nav {
  flex: 0 0 auto;
  flex-basis: auto;
  width: auto;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 8px 12px;
  margin-top: 0;
  justify-content: center;
  background: rgba(22, 24, 25, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-area .main-nav .search-input {
  flex: 1 1 auto;
  min-width: 100px;
  max-width: 360px;
  margin-right: 8px;
  align-self: center;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.header-area .main-nav .nav.site-nav li {
  padding-left: 0;
  padding-right: 0;
}

.header-area .main-nav .nav.site-nav li:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 10px;
  margin-left: 8px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #666;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: transparent;
  padding: 13px 10px;
  border-radius: 18px;
  letter-spacing: .3px;
}

.header-area .main-nav .nav.site-nav li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
  -webkit-transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -o-transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-area .main-nav .nav:not(.site-nav) li:last-child a {
  background-color: transparent;
  padding: 13px 10px;
  border-radius: 18px;
}

.header-area .main-nav .nav li:last-child a img {
  max-width: 30px;
  border-radius: 50%;
  margin-left: 5px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #e75e8d !important;
}

.header-area .main-nav .nav.site-nav li a:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.header-area .main-nav .nav.site-nav li a.active {
  color: #ffffff !important;
  background: linear-gradient(155deg, rgba(236, 96, 144, 0.42) 0%, rgba(175, 50, 95, 0.28) 100%) !important;
  border-color: rgba(236, 96, 144, 0.42) !important;
  box-shadow: 0 2px 10px rgba(236, 96, 144, 0.18);
}

.header-area .main-nav .nav.site-nav li a:focus {
  outline: none;
}

.header-area .main-nav .nav.site-nav li a:focus-visible {
  outline: 2px solid rgba(236, 96, 144, 0.85);
  outline-offset: 3px;
}

.header-area .main-nav .nav:not(.site-nav) li:last-child:hover a,
.header-area .main-nav .nav:not(.site-nav) li:last-child a.active {
  color: #e75e8d !important;
  background-color: transparent !important;
}

.header-area .main-nav .nav.site-nav li:last-child:hover a {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.header-area .main-nav .nav.site-nav li:last-child a {
  padding: 12px 18px;
  min-height: 44px;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.header-area .main-nav .menu-trigger:focus-visible {
  outline: 2px solid #ec6090;
  outline-offset: 4px;
}

.background-header .main-nav .menu-trigger {
  top: 17px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #e75e8d;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #e75e8d;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #e75e8d;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #e75e8d;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #e75e8d;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #e75e8d;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #e75e8d;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #e75e8d;
}

.header-area.header-sticky {
  min-height: 70px;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav .nav.site-nav li {
    padding-left: 0;
    padding-right: 0;
  }
  .header-area .main-nav .nav.site-nav li a {
    padding: 10px 14px;
    min-height: 40px;
    font-size: 13px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area {
    top: 0;
  }
  .header-area .main-nav .search-input {
    display: none;
  }
  .header-area .main-nav {
    background-color: transparent;
    border-radius: 0px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 16px;
    top: 15px;
    max-width: calc(100% - 100px);
  }
  .header-area .main-nav .logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 48px;
    object-fit: contain;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #e75e8d!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area.header-sticky .nav {
    margin-top: 65px !important;
    text-align: center;
  }
  .background-header.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: #1e1e1e !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #fff !important;
    color: #e75e8d!important;
  }
  .header-area .main-nav .nav li:last-child a img {
    display: none;
  }
  .header-area .main-nav .nav:not(.site-nav) li:last-child a:hover {
    color: #ec6090 !important;
    background-color: transparent !important;
  }
  .header-area .main-nav .nav.site-nav {
    gap: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .header-area .main-nav .nav.site-nav li:not(:first-child) {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .header-area .main-nav .nav.site-nav li a {
    border-radius: 0 !important;
    border: none !important;
    letter-spacing: 0.02em !important;
  }
  .header-area .main-nav .nav.site-nav li a:hover {
    color: #e75e8d !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  .header-area .main-nav .nav.site-nav li a.active {
    color: #e75e8d !important;
    background: #fff !important;
    box-shadow: none !important;
    border-color: transparent !important;
  }

  /*
   * FAQ (last item): desktop uses extra padding + inline-flex on the link; on mobile that
   * limits the hover background to a narrow strip. Align with full-width row links.
   */
  .header-area .main-nav .nav.site-nav li:last-child a {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: 50px !important;
    line-height: 50px !important;
    align-items: unset !important;
    justify-content: unset !important;
    box-sizing: border-box !important;
    color: #1e1e1e !important;
    background: #fff !important;
    border-color: transparent !important;
  }

  .header-area .main-nav .nav.site-nav li:last-child:hover a,
  .header-area .main-nav .nav.site-nav li:last-child a:hover,
  .header-area .main-nav .nav.site-nav li:last-child:hover a:hover {
    color: #e75e8d !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: url(../images/banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  min-height: 380px;
  border-radius: 23px;
  padding: 80px 60px;
}

.main-banner h6 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
}

.main-banner h4 {
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.main-banner h4 em {
  font-style: normal;
  color: #ec6090;
}

/* 
---------------------------------------------
Most Popular Style
--------------------------------------------- 
*/

.most-popular {
  margin-top: 60px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.most-popular.about-hero {
  background-color: #1f2122;
  background-image:
    linear-gradient(155deg, rgba(24, 26, 27, 0.88) 0%, rgba(24, 26, 27, 0.78) 42%, rgba(24, 26, 27, 0.9) 100%),
    url("../images/index1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 280px;
}

.most-popular .item {
  background-color: #27292a;
  padding: 30px 15px;
  border-radius: 23px;
  margin-bottom: 30px;
}

.most-popular .item .item {
  padding: 0px;
  border-radius: 0px;
  background-color: transparent;
  margin-bottom: 0px;
}

.most-popular .item img {
  border-radius: 23px;
}

.most-popular .item h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.most-popular .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.most-popular .item ul {
  float: right;
  margin-top: 20px;
}

.most-popular .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.most-popular .item ul li:first-child i {
  color: yellow;
}

.most-popular .item ul li:last-child i {
  color: #ec6090;
}

.most-popular .main-button {
  text-align: center;
  margin-bottom: -53px;
}

.company-about {
  padding: 8px 5px 0 5px;
  max-width: 920px;
}

.company-about p {
  font-size: 15px;
  color: #aaa;
  line-height: 30px;
  margin-bottom: 22px;
}

.company-about p:last-child {
  margin-bottom: 0;
}

.company-about .about-lead {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.company-about a {
  color: #ec6090;
  text-decoration: none;
}

.company-about a:hover {
  color: #fff;
}

/* Legal / privacy pages */
.legal-page__article {
  max-width: 920px;
  padding: 8px 5px 8px 5px;
}

.legal-page__lead {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 28px;
}

.legal-page__article h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.legal-page__article h2:first-of-type {
  margin-top: 8px;
}

.legal-page__article p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 18px;
}

.legal-page__article p:last-child {
  margin-bottom: 0;
}

.legal-page__article a {
  color: #ec6090;
  text-decoration: none;
}

.legal-page__article a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .gaming-library.legal-page {
    padding: 22px 16px 26px;
    border-radius: 18px;
    margin-top: 48px;
  }

  .legal-page__article h2 {
    font-size: 17px;
    margin-top: 26px;
  }

  .legal-page__lead {
    font-size: 15px;
  }

  .legal-page__article p {
    font-size: 14px;
  }
}

/* About page (dedicated layout) */
.about-page-hero {
  position: relative;
  overflow: hidden;
}

.about-page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 12px;
}

.about-page-hero .heading-section h1 {
  color: #ec6090;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 22px;
}

.about-page-hero .heading-section h1 em {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
}

.about-page-hero__lead {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  max-width: 920px;
  margin: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.gaming-library.about-page {
  padding-top: 34px;
  padding-bottom: 36px;
}

/* Override global `section { margin-top: 120px }` — breaks card grids here */
.gaming-library.about-page .col-lg-12 section {
  margin-top: 0;
}

.about-page__metrics {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-page__metrics li {
  background: linear-gradient(145deg, #27292a 0%, #1f2122 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  box-sizing: border-box;
}

.about-page__metric-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.about-page__metric-label {
  font-size: 13px;
  color: #888;
  line-height: 1.45;
}

.about-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  align-items: stretch;
}

.about-page__card {
  background: #27292a;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.about-page__card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.about-page__card p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin: 0;
}

.about-page__split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 40px;
  margin-bottom: 32px;
}

.about-page__split-copy {
  flex: 1 1 320px;
  min-width: 0;
}

.about-page__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.about-page__section-title--spaced {
  margin-top: 28px;
}

.about-page__split-copy p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin: 0 0 16px;
}

.about-page__split-copy p:last-child {
  margin-bottom: 0;
}

.about-page__split-media {
  flex: 1 1 280px;
  max-width: min(100%, 480px);
  margin-left: auto;
}

.about-page__split-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.about-page__detail {
  margin: 28px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-page__detail-block {
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(39, 41, 42, 0.98) 0%, #1a1c1d 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #ec6090;
  box-sizing: border-box;
}

.about-page__detail-title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.about-page__detail-block p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin: 0 0 14px;
}

.about-page__detail-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .about-page__detail-block {
    padding: 22px 18px;
  }

  .about-page__detail-title {
    font-size: 17px;
  }
}

.about-page__foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page__foot-block {
  margin: 0;
}

.about-page__foot-title {
  font-size: 16px;
  font-weight: 600;
  color: #ec6090;
  margin: 0 0 10px;
}

.about-page__foot-block p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin: 0;
}

.about-page__foot-block a {
  color: #ec6090;
  text-decoration: none;
}

.about-page__foot-block a:hover {
  color: #fff;
}

.about-page__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: flex-start;
}

.about-page__cta-primary {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
}

.about-page__cta-primary:hover {
  background-color: #fff;
  color: #e75e8d;
}

.about-page__cta-secondary {
  font-size: 15px;
  color: #ec6090;
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 96, 144, 0.35);
  padding-bottom: 2px;
}

.about-page__cta-secondary:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {
  .about-page-hero .heading-section h1 {
    font-size: 28px;
  }

  .about-page__metrics {
    grid-template-columns: 1fr;
  }

  .about-page__grid {
    grid-template-columns: 1fr;
  }

  .about-page__foot {
    grid-template-columns: 1fr;
  }

  .about-page__split-media {
    max-width: 100%;
    margin-left: 0;
    order: -1;
  }

  .about-page__split {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .about-page__cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-page-hero .heading-section h1 {
    font-size: 24px;
  }
}

/* Services page cards */
.services-showcase {
  margin-top: 0;
}

.services-showcase__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(33, 36, 38, 0.98) 0%, rgba(26, 28, 30, 0.98) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(236, 96, 144, 0.7), transparent);
  opacity: 0.35;
  transition: opacity 0.28s ease;
}

.service-card__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 96, 144, 0.26) 0%, rgba(236, 96, 144, 0) 72%);
  opacity: 0.55;
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, rgba(236, 96, 144, 0.92), rgba(201, 76, 118, 0.9));
  box-shadow: 0 6px 14px rgba(236, 96, 144, 0.32);
  transition: transform 0.2s ease;
}

.service-card__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4b06a;
  border: 1px solid rgba(212, 176, 106, 0.34);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
}

.service-card__media {
  position: relative;
  margin: 0 0 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.06) 0%, rgba(17, 18, 20, 0.32) 100%);
  pointer-events: none;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.service-card h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.service-card p {
  color: #adadad;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card ul li {
  list-style: disc;
  color: #cecece;
  font-size: 13px;
  line-height: 1.55;
}

.service-card__actions {
  margin-top: auto;
  padding-top: 12px;
  flex-shrink: 0;
}

.service-card__more {
  font-size: 13px;
  color: #f1d5df;
  background: rgba(236, 96, 144, 0.08);
  border: 1px solid rgba(236, 96, 144, 0.5);
  border-radius: 999px;
  padding: 8px 14px;
  min-height: 36px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.service-card__more:hover {
  background: #ec6090;
  color: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 96, 144, 0.5);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card__glow {
  transform: scale(1.08);
  opacity: 0.82;
}

.service-card:hover .service-card__icon {
  transform: rotate(-4deg) scale(1.04);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card--office .service-card__icon,
.service-card--systems .service-card__icon {
  background: linear-gradient(145deg, rgba(212, 160, 23, 0.92), rgba(173, 126, 15, 0.9));
  box-shadow: 0 6px 14px rgba(212, 160, 23, 0.3);
}

@media (max-width: 1199px) {
  .services-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .services-showcase__grid {
    margin-top: 18px;
    gap: 14px;
  }

  .service-card {
    padding: 16px 14px 14px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card__media img {
    height: 136px;
  }
}

@media (max-width: 680px) {
  .services-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.services-pricing {
  margin-top: 34px;
}

.services-pricing__heading h2 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.services-pricing__heading p {
  color: #adadad;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.services-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(33, 36, 38, 0.98) 0%, rgba(25, 27, 29, 0.98) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-card__label {
  display: inline-block;
  font-size: 11px;
  color: #d4b06a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 176, 106, 0.34);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card__name {
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
}

.pricing-card__price {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.pricing-card__currency {
  font-size: 12px;
  color: #d3d3d3;
  letter-spacing: 0.08em;
  margin-right: 6px;
  font-weight: 600;
}

.pricing-card__list {
  margin: 0 0 16px;
  padding-left: 18px;
}

.pricing-card__list li {
  list-style: disc;
  color: #cecece;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.pricing-card__list li:last-child {
  margin-bottom: 0;
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(236, 96, 144, 0.55);
  background: rgba(236, 96, 144, 0.08);
  color: #f1d5df !important;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pricing-card__cta:hover {
  background: #ec6090;
  color: #fff !important;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 96, 144, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card--featured {
  border-color: rgba(236, 96, 144, 0.48);
  background: linear-gradient(180deg, rgba(54, 27, 38, 0.96) 0%, rgba(31, 26, 29, 0.98) 100%);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(236, 96, 144, 0.16);
}

.pricing-card--featured .pricing-card__label {
  color: #f6d58a;
  border-color: rgba(246, 213, 138, 0.45);
}

.pricing-card--featured .pricing-card__price {
  color: #ffdbe8;
}

@media (max-width: 1199px) {
  .services-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .services-pricing {
    margin-top: 26px;
  }

  .services-pricing__heading h2 {
    font-size: 21px;
  }

  .services-pricing__grid {
    gap: 14px;
  }

  .pricing-card {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .pricing-card__name {
    font-size: 18px;
  }

  .pricing-card__price {
    font-size: 26px;
  }
}

@media (max-width: 680px) {
  .services-pricing__grid {
    grid-template-columns: 1fr;
  }
}

.services-pricing-details {
  margin-top: 24px;
}

.services-pricing-details h3 {
  font-size: 21px;
  color: #fff;
  margin: 0 0 12px;
}

.services-pricing-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-pricing-details__item {
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(31, 34, 36, 0.98) 0%, rgba(24, 26, 28, 0.98) 100%);
}

.services-pricing-details__item h4 {
  font-size: 17px;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 8px;
}

.services-pricing-details__item p {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.services-pricing-details__item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .services-pricing-details__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .services-pricing-details {
    margin-top: 20px;
  }

  .services-pricing-details h3 {
    font-size: 19px;
  }

  .services-pricing-details__item h4 {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .services-pricing-details__grid {
    grid-template-columns: 1fr;
  }
}

/* Services pricing popups */
#plan-email-modal.plan-modal,
#plan-status-modal.plan-status-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

#plan-email-modal.plan-modal.plan-modal--show,
#plan-status-modal.plan-status-modal.plan-status-modal--show {
  opacity: 1;
  visibility: visible;
}

.plan-modal__backdrop,
.plan-status-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 10, 0.74);
  backdrop-filter: blur(3px);
}

.plan-modal__card,
.plan-status-modal__card {
  position: relative;
  width: min(100%, 520px);
  border-radius: 20px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(185deg, #1b1d1f 0%, #242728 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.plan-modal__close,
.plan-status-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #cfcfcf;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-modal__close:hover,
.plan-status-modal__close:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.plan-modal__kicker,
.plan-status-modal__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d2a756;
  margin-bottom: 8px;
}

.plan-modal__title,
.plan-status-modal__title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.plan-modal__text,
.plan-status-modal__text {
  color: #b5b5b5;
  line-height: 1.65;
  margin-bottom: 12px;
}

.plan-modal__form label {
  display: block;
  color: #c8c8c8;
  font-size: 14px;
  margin-bottom: 8px;
}

.plan-modal__form input {
  width: 100%;
  background-color: #1f2122;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  padding: 12px 16px;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-modal__form input:focus {
  border-color: rgba(236, 96, 144, 0.55);
  box-shadow: 0 0 0 3px rgba(236, 96, 144, 0.12);
  outline: none;
}

.plan-modal__form input.is-invalid {
  border-color: rgba(226, 79, 121, 0.95);
  box-shadow: 0 0 0 3px rgba(226, 79, 121, 0.2);
}

.plan-modal__submit,
.plan-status-modal__btn {
  margin-top: 12px;
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 10px 24px;
  border: none;
  border-radius: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-modal__submit:hover,
.plan-status-modal__btn:hover {
  background: #fff;
  color: #e75e8d;
}

.plan-status-modal--success .plan-status-modal__kicker {
  color: #7fd59a;
}

.plan-status-modal--success .plan-status-modal__title {
  color: #e8fff0;
}

.plan-status-modal--error .plan-status-modal__kicker {
  color: #f19ab6;
}

@media (max-width: 991px) {
  .plan-modal__card,
  .plan-status-modal__card {
    width: min(100%, 94vw);
    padding: 22px 18px 18px;
  }

  .plan-modal__title,
  .plan-status-modal__title {
    font-size: 21px;
  }

  .plan-modal__text,
  .plan-status-modal__text {
    font-size: 14px;
  }
}

/* Service details modal */
#service-detail-modal.service-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

#service-detail-modal.service-detail-modal.service-detail-modal--show {
  opacity: 1;
  visibility: visible;
}

.service-detail-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(7, 8, 10, 0.74);
  backdrop-filter: blur(3px);
}

.service-detail-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding:
    max(28px, env(safe-area-inset-top, 0px))
    16px
    max(40px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.service-detail-modal__card {
  position: relative;
  width: min(100%, 640px);
  margin: auto;
  border-radius: 20px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(185deg, #1b1d1f 0%, #242728 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.service-detail-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #cfcfcf;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-detail-modal__close:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.service-detail-modal__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d2a756;
  margin-bottom: 8px;
}

.service-detail-modal__title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.service-detail-modal__text {
  margin-bottom: 14px;
}

.service-detail-modal__text-para {
  color: #b5b5b5;
  line-height: 1.65;
  font-size: 15px;
  margin: 0 0 12px;
}

.service-detail-modal__text-para:last-child {
  margin-bottom: 0;
}

.service-detail-modal__list {
  margin: 0 0 14px;
  padding-left: 18px;
}

.service-detail-modal__list li {
  list-style: disc;
  color: #cecece;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.service-detail-modal__btn {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 10px 24px;
  border: none;
  border-radius: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-detail-modal__btn:hover {
  background: #fff;
  color: #e75e8d;
}

@media (max-width: 991px) {
  .service-detail-modal__card {
    width: min(100%, 94vw);
    padding: 22px 18px 18px;
  }

  .service-detail-modal__title {
    font-size: 21px;
  }

  .service-detail-modal__text-para,
  .service-detail-modal__list li {
    font-size: 14px;
  }
}

/* Contact page */
.contact-page__grid {
  display: grid;
  gap: 32px 48px;
  align-items: start;
  max-width: 1000px;
  margin-top: 8px;
}

@media (min-width: 992px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

.contact-page__aside h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-page__aside h2:not(:first-child) {
  margin-top: 28px;
}

.contact-page__aside p,
.contact-page__aside address {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 0;
}

.contact-page__aside a {
  color: #ec6090;
  text-decoration: none;
}

.contact-page__aside a:hover {
  color: #fff;
}

.contact-page__form .mb-3:last-child {
  margin-bottom: 0 !important;
}

.contact-page__form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #c8c8c8;
  margin-bottom: 8px;
}

.contact-page__form .form-control {
  width: 100%;
  background-color: #1f2122;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  padding: 12px 16px;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form .form-control::placeholder {
  color: #666;
}

.contact-page__form .form-control:focus {
  border-color: rgba(236, 96, 144, 0.55);
  box-shadow: 0 0 0 3px rgba(236, 96, 144, 0.12);
  outline: none;
}

.contact-page__form .form-control.is-invalid {
  border-color: rgba(226, 79, 121, 0.95);
  box-shadow: 0 0 0 3px rgba(226, 79, 121, 0.2);
}

.contact-page__form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-page__submit {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-page__submit:hover {
  background-color: #fff;
  color: #e75e8d;
}

.contact-page__map-block {
  margin-top: 34px;
}

.contact-page__map-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.contact-page__map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
  background: #1f2122;
}

.contact-page__map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* Contact popup feedback */
#contact-feedback.contact-feedback {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

#contact-feedback.contact-feedback.contact-feedback--show {
  opacity: 1;
  visibility: visible;
}

.contact-feedback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 10, 0.74);
  backdrop-filter: blur(3px);
}

.contact-feedback__card {
  position: relative;
  width: min(100%, 560px);
  border-radius: 20px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(185deg, #1b1d1f 0%, #242728 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-feedback__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #cfcfcf;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-feedback__close:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.contact-feedback__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d2a756;
  margin-bottom: 8px;
}

.contact-feedback__title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-feedback__text {
  color: #b5b5b5;
  line-height: 1.65;
  margin-bottom: 12px;
}

.contact-feedback__list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.contact-feedback__list li {
  color: #f0a4bb;
  margin-bottom: 6px;
  line-height: 1.5;
  list-style: disc;
}

.contact-feedback__btn {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 10px 24px;
  border: none;
  border-radius: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-feedback__btn:hover {
  background: #fff;
  color: #e75e8d;
}

.contact-feedback--success .contact-feedback__kicker {
  color: #7fd59a;
}

.contact-feedback--success .contact-feedback__title {
  color: #e8fff0;
}

.contact-feedback--error .contact-feedback__kicker {
  color: #f19ab6;
}

@media (max-width: 991px) {
  .contact-page__grid {
    gap: 28px;
    margin-top: 4px;
  }

  .contact-page__aside h2 {
    font-size: 17px;
  }

  .contact-page__aside h2:not(:first-child) {
    margin-top: 22px;
  }

  .contact-page__aside p,
  .contact-page__aside address {
    font-size: 14px;
  }

  .contact-page__form .form-control {
    font-size: 14px;
  }

  .contact-page__map-block {
    margin-top: 28px;
  }

  .contact-page__map-title {
    font-size: 17px;
  }

  .contact-page__map-frame iframe {
    min-height: 300px;
  }

  .contact-feedback__card {
    width: min(100%, 94vw);
    padding: 22px 18px 18px;
  }

  .contact-feedback__title {
    font-size: 21px;
  }

  .contact-feedback__text,
  .contact-feedback__list li {
    font-size: 14px;
  }
}

.company-views-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px 40px;
  margin-top: 6px;
}

.company-views-copy {
  flex: 1 1 320px;
  min-width: 0;
}

.company-views-lead {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 18px;
}

.company-views-copy p {
  color: #aaa;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 18px;
}

.company-views-copy p:last-child {
  margin-bottom: 0;
}

.company-views-media {
  flex: 1 1 280px;
  max-width: min(100%, 480px);
  margin-left: auto;
}

.company-views-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

@media (max-width: 768px) {
  .company-views-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .company-views-media {
    max-width: 100%;
    margin-left: 0;
    order: -1;
  }
}

/* 
---------------------------------------------
Gaming Library Style
--------------------------------------------- 
*/

.gaming-library {
  margin-top: 60px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.gaming-library .item {
  border-bottom: 1px solid #27292a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.gaming-library .last-item {
  margin-bottom: 30px;
}

.profile-library .last-item {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.gaming-library .item ul li {
  margin-top: 15px;
}

.gaming-library .item ul li img {
  margin-top: -30px;
}

.gaming-library .item ul li {
  display: inline-block;
  width: 17%;
}

.gaming-library .item ul li:first-child {
  width: 110px;
}

.gaming-library .item ul li:last-child {
  width: 15%;
  text-align: right;
}

.gaming-library .item ul li h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.gaming-library .item ul li span {
  color: #666;
  font-size: 14px;
}

.gaming-library .main-button {
  text-align: center;
  margin-bottom: -53px;
}

/* 
---------------------------------------------
Workflow stepper (renovation process)
--------------------------------------------- 
*/

.workflow-stepper-wrap .workflow-lead {
  color: #aaa;
  font-size: 15px;
  line-height: 30px;
  max-width: 920px;
  margin-bottom: 28px;
}

.workflow-stepper {
  margin-top: 10px;
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 4px;
}

.workflow-tab {
  flex: 1 1 auto;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #3a3c3d;
  background-color: #27292a;
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.workflow-tab .wf-num {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #666;
  text-transform: uppercase;
}

.workflow-tab .wf-label {
  color: #fff;
  font-size: 13px;
}

.workflow-tab:hover,
.workflow-tab:focus {
  outline: none;
  border-color: #ec6090;
  color: #fff;
}

.workflow-tab.active {
  border-color: #ec6090;
  background-color: #1f2122;
  box-shadow: 0 0 0 1px rgba(236, 96, 144, 0.35);
}

.workflow-tab.active .wf-num {
  color: #ec6090;
}

.workflow-panels {
  background-color: #27292a;
  border-radius: 23px;
  padding: 28px 26px 24px;
  margin-bottom: 20px;
  min-height: 220px;
}

.workflow-panel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 32px;
}

.workflow-panel-inner--reverse {
  flex-direction: row-reverse;
}

.workflow-panel-media {
  flex: 1 1 280px;
  max-width: min(100%, 440px);
}

.workflow-panel-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.workflow-panel-copy {
  flex: 1 1 300px;
  min-width: 0;
  align-self: center;
}

.workflow-panel-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 14px;
}

.workflow-panel p {
  color: #aaa;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 0;
}

.workflow-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.workflow-nav-btn {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #ec6090;
  background-color: transparent;
  border: 1px solid #ec6090;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.workflow-nav-btn:hover:not(:disabled) {
  border-color: #fff;
  background-color: #fff;
  color: #e75e8d;
}

.workflow-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #666;
  color: #666;
}

.workflow-progress {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.workflow-progress .workflow-current {
  color: #ec6090;
}

@media (max-width: 991px) {
  .gaming-library.workflow-stepper-wrap {
    padding: 22px 16px 26px;
    border-radius: 18px;
    margin-top: 48px;
  }

  .workflow-stepper-wrap .heading-section h4 {
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.25;
  }

  .workflow-stepper-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .workflow-stepper-wrap .workflow-lead {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: none;
  }

  .workflow-stepper {
    margin-top: 4px;
  }

  /* Stack steps vertically — no cramped horizontal strip or sideways scroll */
  .workflow-tabs {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: visible;
    padding-bottom: 0;
    margin-bottom: 18px;
  }

  .workflow-tab {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    padding: 14px 16px;
  }

  .workflow-panels {
    padding: 20px 16px 18px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .workflow-panel-inner,
  .workflow-panel-inner--reverse {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .workflow-panel-media {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .workflow-panel-media img {
    aspect-ratio: 16 / 10;
  }

  .workflow-panel-copy {
    align-self: stretch;
  }

  .workflow-panel-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .workflow-panel p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Prev / Next on one row, step counter full width below */
  .workflow-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }

  .workflow-prev,
  .workflow-next {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    order: 1;
    padding: 10px 14px;
    font-size: 13px;
  }

  .workflow-progress {
    flex: 1 1 100%;
    order: 2;
    text-align: center;
    padding-top: 2px;
  }
}

/* 
---------------------------------------------
Video testimonial
--------------------------------------------- 
*/

.video-testimonial__lead {
  color: #aaa;
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 24px;
}

.video-testimonial__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: #121416;
}

.video-testimonial__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(236, 96, 144, 0.12);
  z-index: 1;
}

.video-testimonial__media {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.video-testimonial__media:not(:fullscreen) {
  max-height: min(70vh, 720px);
}

.video-testimonial__frame a {
  color: #ec6090;
}

@media (max-width: 991px) {
  .gaming-library.video-testimonial {
    padding: 22px 16px 26px;
    border-radius: 18px;
    margin-top: 48px;
  }

  .video-testimonial__lead {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .video-testimonial__frame {
    border-radius: 14px;
  }
}

/* 
---------------------------------------------
Scroll to top
--------------------------------------------- 
*/

.scroll-top {
  position: fixed;
  right: clamp(14px, 4vw, 24px);
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 9997;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(236, 96, 144, 0.45);
  background: linear-gradient(165deg, #323436 0%, #1f2122 100%);
  color: #ec6090;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top:hover {
  background: linear-gradient(165deg, #e8709a 0%, #ec6090 45%, #c94d7a 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 36px rgba(236, 96, 144, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.scroll-top:focus-visible {
  outline: 2px solid #ec6090;
  outline-offset: 3px;
}

.scroll-top:active {
  transform: translateY(2px) scale(0.98);
}

@media (max-width: 991px) {
  .scroll-top {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition-duration: 0.01ms;
  }

  .scroll-top:active {
    transform: none;
  }
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 0 0 0;
  overflow: hidden;
  background: linear-gradient(185deg, #16181a 0%, #1f2122 38%, #1a1c1e 100%);
  border-top: 1px solid rgba(236, 96, 144, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -20px 60px rgba(0, 0, 0, 0.35);
}

.site-footer__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.022) 0px,
      transparent 1px,
      transparent 52px
    );
}

.site-footer__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(212, 160, 23, 0.85) 0%,
    rgba(236, 96, 144, 0.65) 35%,
    rgba(212, 160, 23, 0.55) 70%,
    rgba(236, 96, 144, 0.45) 100%
  );
  opacity: 0.75;
  pointer-events: none;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  padding-left: clamp(18px, 4vw, 36px);
  padding-right: clamp(18px, 4vw, 36px);
}

.site-footer__main {
  padding: 22px 0 32px;
}

.site-footer__panel {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 26px 24px 28px;
  background: linear-gradient(165deg, rgba(42, 44, 46, 0.98) 0%, #27292a 55%, #242628 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-footer section {
  margin-top: 0;
}

.site-footer__panel:hover {
  border-color: rgba(236, 96, 144, 0.22);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.site-footer__panel::before {
  content: '';
  display: block;
  height: 3px;
  margin: -26px -24px 22px -24px;
  border-radius: 17px 17px 0 0;
  background: linear-gradient(90deg, rgba(236, 96, 144, 0.55) 0%, rgba(212, 160, 23, 0.35) 50%, rgba(236, 96, 144, 0.25) 100%);
  opacity: 0.9;
}

.site-footer__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
  padding-bottom: 0;
  border-bottom: none;
}

.site-footer__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(236, 96, 144, 0.12);
  border: 1px solid rgba(236, 96, 144, 0.28);
  color: #ec6090;
  font-size: 15px;
  flex-shrink: 0;
}

.site-footer__title::after {
  display: none;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list--nav li {
  margin-bottom: 4px;
}

.site-footer__list--nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 12px;
  margin-left: -12px;
  border-radius: 10px;
  display: block;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  border-left: 3px solid transparent;
}

.site-footer__list--nav a:hover {
  color: #fff;
  background: rgba(236, 96, 144, 0.1);
  border-left-color: #ec6090;
  transform: translateX(4px);
}

.site-footer__list--hours {
  flex: 1;
}

.site-footer__list--hours li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__list--hours li:first-child {
  padding-top: 2px;
}

.site-footer__list--hours li:last-of-type {
  border-bottom: none;
  padding-bottom: 2px;
}

.site-footer__hours-day {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.site-footer__hours-time {
  color: rgba(210, 210, 210, 0.95);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.site-footer__tz {
  font-size: 12px;
  opacity: 0.72;
}

.site-footer__note {
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.55;
  color: #7a7a7a;
  font-style: normal;
}

.site-footer__company {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.site-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__address-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.site-footer__address-line i {
  color: #ec6090;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
}

.site-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-left: -14px;
  border-radius: 12px;
  color: #ec6090;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-footer__email i {
  font-size: 14px;
}

.site-footer__email:hover {
  color: #fff;
  background: rgba(236, 96, 144, 0.15);
}

.site-footer__bottom {
  margin-top: 8px;
  padding: 20px 8px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: #6b6b6b;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 12px;
}

.site-footer__legal a {
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 400;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: #ec6090;
}

.site-footer__legal-sep {
  color: #555;
  user-select: none;
}

@media (max-width: 991px) {
  .site-footer__main {
    padding: 20px 0 28px;
  }
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 18px 0 24px;
  }

  /* Tighter spacing between footer panels on mobile */
  .site-footer__row {
    --bs-gutter-y: 10px;
    row-gap: 10px;
  }

  .site-footer__row > [class*="col-"] {
    margin-bottom: 0 !important;
  }

  .site-footer__panel {
    padding: 22px 20px 24px;
  }

  .site-footer__panel::before {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -22px;
  }

  .site-footer__list--hours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-footer__hours-time {
    text-align: left;
    padding-left: 0;
  }

  .site-footer__bottom {
    padding: 18px 8px 28px;
  }
}

/* 
---------------------------------------------
Cookie consent banner
--------------------------------------------- 
*/

/* id + class: higher specificity than Bootstrap/Reboot on small screens */
#cookie-consent.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 0 clamp(14px, 4vw, 28px) calc(18px + env(safe-area-inset-bottom, 0));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border: none;
  box-shadow: none;
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    visibility 0s linear 0.5s;
  pointer-events: none;
}

#cookie-consent.cookie-banner.cookie-banner--show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    visibility 0s linear 0s;
  pointer-events: auto;
}

#cookie-consent .cookie-banner__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 10, 0) 0%,
    rgba(8, 9, 10, 0.45) 35%,
    rgba(8, 9, 10, 0.82) 100%
  );
  pointer-events: none;
}

@supports (backdrop-filter: blur(8px)) {
  #cookie-consent .cookie-banner__veil {
    backdrop-filter: blur(10px) saturate(1.15);
    -webkit-backdrop-filter: blur(10px) saturate(1.15);
  }
}

#cookie-consent .cookie-banner__container.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
  --bs-gutter-x: 0;
  flex: 1 1 auto;
  min-width: 0;
}

#cookie-consent .cookie-banner__card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(236, 96, 144, 0.45) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(212, 160, 23, 0.28) 100%
  );
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

#cookie-consent .cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 32px;
  padding: 22px 26px 24px;
  border-radius: 21px;
  background: linear-gradient(168deg, rgba(44, 46, 48, 0.98) 0%, #2a2c2e 42%, #222426 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

#cookie-consent .cookie-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 21px 21px 0 0;
  background: linear-gradient(
    90deg,
    rgba(212, 160, 23, 0.55) 0%,
    rgba(236, 96, 144, 0.75) 42%,
    rgba(212, 160, 23, 0.4) 100%
  );
  opacity: 0.95;
  pointer-events: none;
}

#cookie-consent .cookie-banner__inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(236, 96, 144, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

#cookie-consent .cookie-banner__lead {
  display: flex;
  align-items: flex-start;
  gap: 18px 20px;
  flex: 1 1 280px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

#cookie-consent .cookie-banner__brand {
  flex-shrink: 0;
}

#cookie-consent .cookie-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(236, 96, 144, 0.18) 0%, rgba(236, 96, 144, 0.06) 100%);
  border: 1px solid rgba(236, 96, 144, 0.38);
  color: #f078a5;
  font-size: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(236, 96, 144, 0.12);
}

#cookie-consent .cookie-banner__body {
  flex: 1;
  min-width: 0;
}

#cookie-consent .cookie-banner__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(236, 96, 144, 0.92);
}

#cookie-consent .cookie-banner__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 2.4vw, 19px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}

#cookie-consent .cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}

#cookie-consent .cookie-banner__text a {
  color: #ec6090 !important;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(236, 96, 144, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

#cookie-consent .cookie-banner__text a:hover {
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

#cookie-consent .cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

#cookie-consent button.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.2s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#cookie-consent button.cookie-banner__btn:active {
  transform: scale(0.98);
}

#cookie-consent .cookie-banner__btn--primary {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, #e8709a 0%, #ec6090 40%, #c94d7a 100%);
  box-shadow:
    0 4px 16px rgba(236, 96, 144, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#cookie-consent .cookie-banner__btn--primary:hover {
  background: #fff;
  color: #c73d6e !important;
  border-color: #fff;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.14);
}

#cookie-consent .cookie-banner__btn--primary:focus-visible {
  outline: 2px solid #ec6090;
  outline-offset: 3px;
}

#cookie-consent .cookie-banner__btn--ghost {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

#cookie-consent .cookie-banner__btn--ghost:hover {
  border-color: rgba(236, 96, 144, 0.55);
  color: #f5b8cc !important;
  background: rgba(236, 96, 144, 0.12);
}

#cookie-consent .cookie-banner__btn--ghost:focus-visible {
  outline: 2px solid rgba(236, 96, 144, 0.85);
  outline-offset: 3px;
}

/* Phones & tablets: stack like design reference */
@media (max-width: 991px) {
  #cookie-consent.cookie-banner {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
  }

  #cookie-consent .cookie-banner__container.container {
    max-width: 100%;
  }

  #cookie-consent .cookie-banner__card {
    border-radius: 26px;
  }

  #cookie-consent .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px 24px;
    gap: 22px;
    border-radius: 25px;
  }

  #cookie-consent .cookie-banner__inner::before {
    border-radius: 25px 25px 0 0;
  }

  #cookie-consent .cookie-banner__lead {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }

  #cookie-consent .cookie-banner__title {
    font-size: 1.125rem;
  }

  #cookie-consent .cookie-banner__text {
    max-width: none;
    font-size: 14px;
  }

  #cookie-consent .cookie-banner__actions {
    max-width: none;
    width: 100%;
    justify-content: stretch;
    flex-direction: column-reverse;
    gap: 12px;
  }

  #cookie-consent button.cookie-banner__btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cookie-consent.cookie-banner {
    transition-duration: 0.01ms !important;
  }

  #cookie-consent button.cookie-banner__btn:active {
    transform: none;
  }
}

/* 
---------------------------------------------
Featured Games Style
--------------------------------------------- 
*/

.featured-games {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
}

.featured-games .item .thumb {
  position: relative;
  overflow: hidden;
}

.featured-games .item .thumb .hover-effect {
  position: absolute;
  bottom: -100px;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.featured-games .item .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}

.featured-games .item .thumb .hover-effect h6 {
  background-color: rgba(31,33,34,0.95);
  display: inline-block;
  color: #ec6090;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 25px;
}

.featured-games .item img {
  border-radius: 23px;
}

.featured-games .item h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.featured-games .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.featured-games .item ul {
  float: right;
  margin-top: 20px;
}

.featured-games .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.featured-games .item ul li:first-child i {
  color: yellow;
}

.featured-games .item ul li:last-child i {
  color: #ec6090;
}

.featured-games .owl-nav {
  position: absolute;
  margin: 0 auto;
  top: -70px;
  right: 0;
}

.featured-games .owl-nav .owl-prev {
  margin-right: 2.5px;
}

.featured-games .owl-nav .owl-next {
  margin-left: 2.5px;
}

.featured-games .owl-nav .owl-prev span,
.featured-games .owl-nav .owl-next span  {
  font-size: 36px;
  display: inline-block;
  color: #666;
  opacity: 1;
  transition: all .3s;
}

.featured-games .owl-nav .owl-prev span:hover,
.featured-games .owl-nav .owl-next span:hover {
  opacity: 1;
  color: #ec6090;
}

.top-downloaded {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
  max-height: 567px;
  min-height: 567px;
}

.top-downloaded ul li {
  position: relative;
  display: inline-block;
  width: 100%;
}

.top-downloaded ul li img {
  float: left;
  margin-right: 15px;
}

.top-downloaded ul li h4 {
  font-size: 15px;
  padding-top: 7px;
}

.top-downloaded ul li h6 {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}

.top-downloaded ul li span {
  color: #fff;
  font-size: 15px;
  margin-right: 10px;
}

.top-downloaded ul li .download i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-23px);
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  color: #ec6090;
  background-color: #27292a;
  border-radius: 50%;
}

.top-downloaded ul li {
  border-bottom: 1px solid #27292a;
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.top-downloaded .text-button  {
  text-align: center;
}

.top-downloaded .text-button a {
  font-weight: 600;
  color: #ec6090;
  font-size: 15px;
}

/* 
---------------------------------------------
Start Stream Style
--------------------------------------------- 
*/

.start-stream .heading-section {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 60px;
}

.start-stream .item {
  padding: 30px;
  border: 1px solid #444;
  border-radius: 23px;
}

.start-stream .item h4 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.start-stream .main-button {
  text-align: center;
  margin-top: 30px;
}

/* 
---------------------------------------------
Live Stream Style
--------------------------------------------- 
*/

.live-stream {
  margin-top: 60px;
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
}

.live-stream .item {
  margin-bottom: 30px;
}

.live-stream .thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.live-stream .thumb img {
  border-radius: 23px; 
}

.live-stream .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.live-stream .hover-effect {
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.live-stream .hover-effect .live a { 
  position: absolute;
  background-color: rgba(236, 96, 144, 0.9);
  padding: 5px 10px;
  border-radius: 23px;
  color: #fff;
  font-size: 14px;
  right: 15px;
  top: 15px;
}

.live-stream .hover-effect ul {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}

.live-stream .hover-effect ul li {
  display: inline-block;
  margin: 0px 5px;
}

.live-stream .hover-effect ul li a {
  background-color: rgba(236, 96, 144, 0.9);
  padding: 5px 10px;
  border-radius: 23px;
  color: #fff;
  font-size: 14px;
}

.live-stream .avatar img {
  margin-right: 15px;
}

.live-stream span i {
  color: #fff;
  background-color: #ec6090;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  margin-right: 3px;
}

.live-stream span {
  font-size: 14px;
  color: #ec6090;
}

.live-stream .down-content h4 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-left: 61px;
}

.live-stream .main-button {
  text-align: center;
  margin-bottom: -53px;
}

/* 
---------------------------------------------
Featured Banner Style
--------------------------------------------- 
*/

.feature-banner .thumb {
  position: relative;
  max-height: 305px;
  overflow: hidden;
  border-radius: 23px;;
}

.feature-banner .thumb a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-23px, -23px);
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  color: #ec6090;
}

/* 
---------------------------------------------
Game Details Style
--------------------------------------------- 
*/

.game-details h2 {
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
  margin: 60px 0px;
}

.game-details .content {
  border-radius: 23px;
  padding: 30px;
  background-color: #1f2122;
}

.game-details .content .left-info {
  background-color: #27292a;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 30px;
}

.game-details .content .left-info .left {
  float: left;
}

.game-details .content .left-info h4 {
  font-size: 15px;
  display: block;
}

.game-details .content .left-info span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.game-details .content .left-info ul {
  text-align: right;
}

.game-details .content .left-info ul li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.game-details .content .left-info ul li:first-child i {
  color: yellow;
}

.game-details .content .left-info ul li:last-child i {
  color: #ec6090;
}

.game-details .content .right-info {
  background-color: #27292a;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 30px;
}

.game-details .content .right-info ul li {
  display: inline-block;
  width: 23%;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.game-details .content .right-info ul li i {
  display: block;
  margin-bottom: 12px;
}

.game-details .content .right-info ul li:first-child i {
  color: yellow;
} 

.game-details .content .right-info ul li i {
  color: #ec6090;
}

.game-details .main-border-button {
  margin-top: 35px;
}

.game-details .main-border-button a {
  text-align: center;
  width: 100%;
} 

/* 
---------------------------------------------
Other Related Style
--------------------------------------------- 
*/

.other-games {
  border-radius: 23px;
  padding: 30px 30px 0px 30px;
  background-color: #1f2122;
  margin-top: 60px;
}

.other-games .item {
  position: relative;
  border-bottom: 1px solid #27292a;
  padding-bottom: 52px;
  margin-bottom: 30px;
}

.other-games .item img {
  float: left;
  margin-right: 15px;
}

.other-games .item h4 {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 5px;
  padding-top: 15px;
}

.other-games .item span {
  color: #666;
  font-size: 14px;
  display: block;
}

.other-games ul {
  position: absolute;
  right: 0;
  top: 15px;
}

.other-games ul li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.other-games ul li:first-child i {
  color: yellow;
}

.other-games ul li:last-child i {
  color: #ec6090;
}

/* 
---------------------------------------------
Top Streamers Style
--------------------------------------------- 
*/

.top-streamers {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
  max-height: 567px;
  min-height: 567px;
}

.top-streamers ul li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #353637;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.top-streamers ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.top-streamers ul li span {
  float: left;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  padding-top: 12px;
  margin-right: 10px;
}

.top-streamers ul li h6 {
  display: inline;
  font-size: 14px;
  color: #ec6090;
  font-weight: 400;
}

.top-streamers ul li h6 i {
  color: #fff;
  background-color: #ec6090;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  margin-right: 3px;
}

.top-streamers ul li .main-button {
  float: right;
}

.top-streamers ul li .main-button a {
  padding: 8px 20px;
}

/* 
---------------------------------------------
Profile Style
--------------------------------------------- 
*/

.main-profile {
  border-radius: 23px;
  padding: 30px;
  background-color: #1f2122;
}

.main-profile .main-info span {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.main-profile .main-info h4 {
  margin-bottom: 20px;
}

.main-profile .main-info .main-border-button {
  margin-top: 25px;
}

.main-profile ul {
  border-radius: 23px;
  padding: 30px;
  background-color: #27292a;
}

.main-profile ul li {
  width: 100%;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #666;
}

.main-profile ul li span {
  float: right;
  font-weight: 500;
  color: #ec6090;
}

.main-profile ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.clips {
  margin-top: 30px;
  border-top: 2px solid #27292a;
}

.clips .heading-section {
  margin-top: 30px;
}

.clips .item  {
  border-radius: 23px;
  padding: 30px 15px;
  background-color: #27292a;
  margin-bottom: 30px;
}

.clips .item .thumb {
  position: relative;
  margin-bottom: 15px;
}

.clips .item .thumb a {
  position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-23px, -23px);
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 46px;
    color: #ec6090;
}

.clips .item h4 {
  font-size: 15px;
  display: inline-block;
}

.clips .item span i {
  color: #ec6090;
}

.clips .item span {
  float: right;
  color: #fff;
  font-size: 14px;
}

.clips .main-button {
  margin-top: 10px;
  text-align: center;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body .page-content {
    padding: 0px 30px;
  }
  .main-banner {
    text-align: center;
  }
  .main-banner h4 {
    font-size: 35px;
  }
  .gaming-library .item ul li,
  .gaming-library .item ul li:first-child,
  .gaming-library .item ul li:last-child {
    width: 100% !important;
    text-align: center !important;
  }
  .gaming-library .item ul li {
    margin-top: 30px;
  }
  .top-downloaded ul li .download i {
    top: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .top-downloaded ul li img {
    margin-right: 10px;
  }
  .top-downloaded ul li span {
    font-size: 14px;
  }
  .top-streamers ul li .main-button {
    float: none;
    margin-top: 10px;
  }
  .top-streamers ul li .main-button a {
    width: 100%;
    text-align: center;
  }
  .top-streamers,
  .top-downloaded {
    max-height: 100%;
    min-height: 100%;
  }
  .most-popular .item .inner-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #search {
    display: none;
  }
  .heading-section h4 {
    font-size: 20px;
  }
  .gaming-library .item ul li {
    width: 48% !important;
  }
  .gaming-library .item ul li:last-child {
    text-align: left;
  }
  .featured-games {
    margin-bottom: 60px;
  }
  .start-stream .item {
    margin: 15px 0px;
  }
  .feature-banner .thumb {
    margin-top: 30px;
  }
  .main-profile .main-info {
    margin: 45px 0px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .main-nav .logo {
    margin-right: 30px;
    border-right: none;
  }
  .gaming-library .item ul li {
    width: 16%;
  }
}