/* RESET */

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

button,
a,
.account-card,
.game-image,
.hot-card {
  
  transition: .3s;
  
}

body {
  background: #000;
  color: white;
  font-family: 'Poppins', sans-serif;
}

body {
  
  background:
  
    radial-gradient(circle at top,
      rgba(0,
        255,
        153,
        0.05),
      transparent 30%),
    
    #050505;
  
}

html {
  
  scroll-behavior: smooth;
  
}

::selection {
  
  background: #00ff99;
  
  color: black;
  
}

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

::-webkit-scrollbar-track {
  
  background: #080808;
  
}

::-webkit-scrollbar-thumb {
  
  background: #00ff99;
  
  border-radius: 999px;
  
}

/* NAVBAR */

.navbar {
  
  position: fixed;
  
  top: 0;
  left: 0;
  
  width: 100%;
  height: 72px;
  
  padding: 0 18px;
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  background:
    rgba(0, 0, 0, .82);
  
  backdrop-filter: blur(16px);
  
  border-bottom:
    1px solid rgba(255, 255, 255, .06);
  
  z-index: 9999;
}

.nav-left {
  
  display: flex;
  
  align-items: center;
  
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-text h1 {
  
  font-size: 22px;
}

.nav-text span {
  
  font-size: 11px;
  
  color: #888;
}

.nav-btn {
  
  width: 42px;
  height: 42px;
  
  border: none;
  
  border-radius: 14px;
  
  background:
    rgba(255, 255, 255, .06);
  
  color: white;
}



/* MAIN */

.main-container {
  
  padding:
    90px 18px 110px;
  
  background:
    radial-gradient(circle at top,
      rgba(13, 13, 16, .84),
      rgba(0, 0, 0, .95) 70%);
}


/* ANNOUNCEMENT */

.announcement {
  
  background:
    linear-gradient(135deg,
      rgba(122, 92, 255, .9),
      rgba(74, 46, 191, .85));
  
  padding: 20px;
  
  border-radius: 24px;
  
  margin-bottom: 24px;
}

.announcement h2 {
  
  font-size: 24px;
  
  margin-bottom: 10px;
}

.announcement p {
  
  font-size: 14px;
  
  line-height: 1.7;
  
  color: #f1f1f1;
}


/* HERO */


.hero {
  
  position: relative;
  
  min-height: 520px;
  
  border-radius: 32px;
  
  overflow: hidden;
  
  margin-bottom: 36px;
  
  background:
  
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1600&auto=format&fit=crop') center center / cover;
  
  display: flex;
  
  align-items: flex-end;
  
}

.hero-overlay {
  
  position: absolute;
  
  inset: 0;
  
  background:
  
    linear-gradient(180deg,
      rgba(0, 0, 0, .2),
      rgba(0, 0, 0, .9)),
    
    radial-gradient(circle at top,
      rgba(0, 255, 153, .15),
      transparent 50%);
  
}

.hero-content {
  
  position: relative;
  
  z-index: 2;
  
  padding: 40px;
  
  max-width: 760px;
  
}

.hero-tag {
  
  display: inline-flex;
  
  align-items: center;
  
  padding: 10px 18px;
  
  border-radius: 999px;
  
  background:
    rgba(0, 255, 153, .12);
  
  border:
    1px solid rgba(0, 255, 153, .2);
  
  color: #00ff99;
  
  font-size: 12px;
  
  font-weight: 700;
  
  letter-spacing: .5px;
  
  margin-bottom: 20px;
  
}

.hero h1 {
  
  font-size: 58px;
  
  line-height: 1.05;
  
  font-weight: 800;
  
  margin-bottom: 18px;
  
}

.hero p {
  
  font-size: 18px;
  
  line-height: 1.8;
  
  color: #cfcfcf;
  
  margin-bottom: 28px;
  
  max-width: 620px;
  
}

.hero-stats {
  
  display: flex;
  
  gap: 16px;
  
  margin-top: 10px;
  
  flex-wrap: wrap;
  
}

.hero-stat {
  
  background:
    rgba(255, 255, 255, .05);
  
  backdrop-filter:
    blur(12px);
  
  border:
    1px solid rgba(255, 255, 255, .08);
  
  border-radius: 18px;
  
  padding: 16px 20px;
  
  min-width: 120px;
  
}

.hero-stat strong {
  
  display: block;
  
  font-size: 24px;
  
  color: #00ff99;
  
  margin-bottom: 4px;
  
}

.hero-stat span {
  
  font-size: 13px;
  
  color: #aaa;
  
}


/* BUTTONS */

.hero-buttons {
  
  display: flex;
  
  gap: 14px;
  
  flex-wrap: wrap;
}

.hero-btn {
  
  border: none;
  
  padding: 14px 24px;
  
  border-radius: 16px;
  
  font-size: 14px;
  
  font-weight: 600;
  
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.primary-btn {
  
  background:
  
    linear-gradient(135deg,
      #00ff99,
      #00d67f);
  
  color: #000;
  
  font-weight: 700;
  
}

.secondary-btn {
  
  background:
    rgba(255, 255, 255, .06);
  
  border:
    1px solid rgba(255, 255, 255, .08);
  
  color: white;
  
}

.hero-btn {
  
  padding: 15px 26px;
  
  border-radius: 18px;
  
  transition: .25s;
  
}

.hero-btn:hover {
  
  transform:
    translateY(-2px);
  
}

/* ACCOUNT */

.account-box {
  
  display: grid;
  
  grid-template-columns:
    repeat(4,
      1fr);
  
  gap: 18px;
  
  margin-top: 32px;
  
  margin-bottom: 40px;
  
}

.account-card {
  
  position: relative;
  
  overflow: hidden;
  
  background:
  
    linear-gradient(180deg,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .02));
  
  backdrop-filter:
    blur(12px);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 26px;
  
  padding: 26px 18px;
  
  text-align: center;
  
  text-decoration: none;
  
  color: white;
  
  transition: .35s;
  
}

.account-card::before {
  
  content: "";
  
  position: absolute;
  
  top: -50%;
  
  left: -50%;
  
  width: 200%;
  
  height: 200%;
  
  background:
  
    radial-gradient(circle,
      rgba(0,
        255,
        153,
        0.08),
      transparent 60%);
  
  opacity: 0;
  
  transition: .4s;
  
  pointer-events: none;
  
}

.account-card:hover {
  
  transform:
    translateY(-8px);
  
  border-color:
    rgba(0,
      255,
      153,
      0.18);
  
  box-shadow:
  
    0 15px 40px rgba(0,
      255,
      153,
      0.12);
  
}

.account-card:hover::before {
  
  opacity: 1;
  
}

.account-icon {
  
  width: 78px;
  height: 78px;
  
  margin: auto auto 18px;
  
  border-radius: 22px;
  
  display: flex;
  
  align-items: center;
  
  justify-content: center;
  
  background:
  
    rgba(0,
      255,
      153,
      0.08);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.15);
  
}

.account-icon i {
  
  font-size: 30px;
  
  color: #00ff99;
  
}

.account-card h3 {
  
  font-size: 15px;
  
  font-weight: 700;
  
  line-height: 1.5;
  
  color: white;
  
}

@media(max-width:900px) {
  
  .account-box {
    
    grid-template-columns:
      repeat(2,
        1fr);
    
  }
  
}

@media(max-width:500px) {
  
  .account-box {
    
    gap: 14px;
    
  }
  
  .account-card {
    
    padding: 20px 14px;
    
  }
  
  .account-icon {
    
    width: 64px;
    height: 64px;
    
  }
  
  .account-icon i {
    
    font-size: 24px;
    
  }
  
  .account-card h3 {
    
    font-size: 13px;
    
  }
  
}

/* SECTION */

#tournamentModes {
  
  margin-top: 40px;
  
}

/* TITLE */

.section-title {
  
  position: relative;
  
  display: inline-block;
  
  font-size: 35px;
  
  font-weight: 700;
  
  color: white;
  
  margin-bottom: 32px;
  
  letter-spacing: .5px;
  
}

.section-title::after {
  
  content: "";
  
  position: absolute;
  
  left: 0;
  bottom: -10px;
  
  width: 90px;
  
  height: 4px;
  
  border-radius: 999px;
  
  background:
  
    linear-gradient(90deg,
      #00ff99,
      transparent);
  
}

/* GRID */

.games-grid {
  
  display: grid;
  
  grid-template-columns:
    repeat(auto-fit,
      minmax(260px,
        1fr));
  
  gap: 24px;
  
}

/* LINKS */

.games-grid a {
  
  text-decoration: none;
  
}

/* CARD */

.game-image {
  
  position: relative;
  
  overflow: hidden;
  
  border-radius: 28px;
  
  aspect-ratio: 1/1;
  
  background: #111;
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  
  box-shadow:
    0 10px 30px rgba(0,
      0,
      0,
      0.35);
  
}

/* IMAGE */

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

/* OVERLAY */

.game-overlay {
  
  position: absolute;
  
  inset: 0;
  
  background:
  
    linear-gradient(180deg,
      rgba(0,
        0,
        0,
        0),
      rgba(0,
        0,
        0,
        0.92)),
    
    linear-gradient(180deg,
      rgba(0,
        255,
        153,
        0.05),
      transparent);
  
  z-index: 1;
  
}

/* SOFT TOP GLOW */

.game-image::after {
  
  content: "";
  
  position: absolute;
  
  inset: 0;
  
  background:
  
    radial-gradient(circle at top,
      rgba(255,
        255,
        255,
        0.08),
      transparent 60%);
  
  z-index: 2;
  
  pointer-events: none;
  
}

/* TITLE */

.game-name {
  
  position: absolute;
  
  left: 22px;
  
  right: 22px;
  
  bottom: 22px;
  
  z-index: 3;
  
  font-size: 22px;
  
  font-weight: 800;
  
  line-height: 1.3;
  
  color: white;
  
  text-shadow:
    0 3px 12px rgba(0,
      0,
      0,
      0.7);
  
}

/* OPTIONAL SUBTEXT */

.game-name span {
  
  display: block;
  
  margin-top: 6px;
  
  font-size: 13px;
  
  font-weight: 500;
  
  color: #00ff99;
  
}

/* HOVER */

.game-image:hover {
  
  transform:
    translateY(-8px);
  
  border-color:
    rgba(0,
      255,
      153,
      0.18);
  
  box-shadow:
  
    0 20px 45px rgba(0,
      255,
      153,
      0.12);
  
}

.game-image:hover img {
  
  transform: scale(1.08);
  
}

/* TABLET */

@media(max-width:768px) {
  
  .games-grid {
    
    grid-template-columns:
      repeat(2,
        1fr);
    
    gap: 16px;
    
  }
  
  .game-name {
    
    font-size: 16px;
    
    left: 16px;
    
    right: 16px;
    
    bottom: 16px;
    
  }
  
}

/* MOBILE */

@media(max-width:480px) {
  
  .games-grid {
    
    grid-template-columns:
      repeat(2,
        1fr);
    
    gap: 14px;
    
  }
  
  .game-image {
    
    border-radius: 22px;
    
  }
  
  .game-name {
    
    font-size: 14px;
    
    line-height: 1.4;
    
    left: 14px;
    
    right: 14px;
    
    bottom: 14px;
    
  }
  
  .game-name span {
    
    font-size: 11px;
    
  }
  
}

/* TABBAR */

.tabbar {
  
  position: fixed;
  
  left: 0;
  right: 0;
  bottom: 0;
  
  height: 72px;
  
  background: #050505;
  
  border-top: 1px solid #222;
  
  display: flex;
  
  justify-content: space-around;
  
  align-items: center;
  
  z-index: 999;
}

.tab-item {
  
  background: none;
  
  border: none;
  
  color: #777;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  gap: 4px;
  
  font-size: 11px;
}

.tab-item i {
  
  font-size: 20px;
}

.tab-item.active {
  
  color: #00ff99;
}


.main-container {
  
  padding:
    90px 18px 110px;
}

/* MOBILE */

@media(max-width:700px) {
  
  .games-grid {
    
    grid-template-columns:
      repeat(2, 1fr);
  }
  
  .account-box {
    
    grid-template-columns:
      repeat(2, 1fr);
  }
  
  .hero h1 {
    
    font-size: 28px;
  }
  
  .brand-name {
    
    font-size: 20px;
  }
}

.tab-item {
  
  text-decoration: none;
  
  color: #777;
}

.site-footer {
  
  position: relative;
  
  overflow: hidden;
  
}

.site-footer::before {
  
  content: "";
  
  position: absolute;
  
  top: -150px;
  
  right: -150px;
  
  width: 300px;
  
  height: 300px;
  
  background:
  
    radial-gradient(circle,
      rgba(0,
        255,
        153,
        0.05),
      transparent);
  
  pointer-events: none;
  
}

.site-footer {
  
  margin-top: 0px;
  
  padding:
    60px 20px 120px;
  
  background:
    linear-gradient(to bottom,
      #050505,
      #000);
  
  border-top:
    1px solid rgba(255, 255, 255, .06);
  
  color: white;
}

.site-footer {
  
  padding: 30px 20px 100px;
  
  text-align: center;
  
}

/* TOP */

.footer-top {
  
  display: grid;
  
  grid-template-columns:
    2fr 1fr 1fr;
  
  gap: 40px;
  
  margin-bottom: 40px;
}


/* BRAND */

.footer-brand h2 {
  
  font-size: 32px;
  
  font-weight: 800;
  
  margin-bottom: 12px;
  
}

.footer-brand p {
  
  color: #999;
  
  line-height: 1.8;
  
  font-size: 14px;
  
  max-width: 320px;
}

.footer-logo {
  
  width: 58px;
  
  margin-bottom: 14px;
}


/* LINKS */

.footer-links {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 12px;
}

.footer-links h3 {
  
  margin-bottom: 8px;
  
  font-size: 18px;
}

.footer-links a {
  
  color: #888;
  
  text-decoration: none;
  
  font-size: 14px;
  
  transition: .25s;
}

.footer-socials a:hover {
  
  background: #00ff99;
  
  color: black;
  
  transform:
  
    translateY(-4px) scale(1.05);
  
}

/* SOCIALS */

.footer-socials {
  
  display: flex;
  
  justify-content: center;
  
  gap: 16px;
  
  margin-bottom: 35px;
}

.footer-socials a {
  
  width: 46px;
  height: 46px;
  
  border-radius: 50%;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  background:
    rgba(255, 255, 255, .05);
  
  border:
    1px solid rgba(255, 255, 255, .06);
  
  color: white;
  
  text-decoration: none;
  
  transition: .25s;
}

.footer-socials a:hover {
  
  background: #00ff99;
  
  color: black;
  
  transform: translateY(-3px);
}


/* PAYMENTS */

.footer-payments {
  
  background:
    rgba(255, 255, 255, .03);
  
  border:
    1px solid rgba(255, 255, 255, .06);
  
  border-radius: 22px;
  
  padding: 24px;
  
  text-align: center;
  
  margin-bottom: 35px;
}

.footer-payments p {
  
  color: #bbb;
  
  margin-bottom: 18px;
  
  font-size: 15px;
}

.payment-logos {
  
  display: flex;
  
  justify-content: center;
  
  align-items: center;
  
  flex-wrap: wrap;
  
  gap: 18px;
}

.payment-logos img {
  
  height: 28px;
  
  object-fit: contain;
  
  opacity: .9;
}


/* BOTTOM */

.footer-bottom {
  
  text-align: center;
  
  border-top:
    1px solid rgba(255, 255, 255, .05);
  
  padding-top: 24px;
}

.footer-bottom p {
  
  color: #aaa;
  
  margin-bottom: 8px;
  
  font-size: 14px;
}

.footer-bottom small {
  
  color: #666;
  
  font-size: 12px;
}


/* MOBILE */

@media(max-width:700px) {
  
  .footer-top {
    
    grid-template-columns:
      1fr;
    
    gap: 30px;
  }
  
  .footer-brand p {
    
    max-width: 100%;
  }
  
  .footer-links {
    
    gap: 10px;
  }
  
  .payment-logos {
    
    gap: 12px;
  }
  
  .payment-logos img {
    
    height: 24px;
  }
}



/* SPACING FIX */

.account-box {
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 12px;
}

.games-grid {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 20px;
}


/* ===================
ANNOUNCEMENTS
=================== */

/* =========================
   ANNOUNCEMENTS
========================= */

.announcement-box {
  
  position: relative;
  
  overflow: hidden;
  
  background:
  
    linear-gradient(180deg,
      rgba(255, 255, 255, .04),
      rgba(255, 255, 255, .02));
  
  backdrop-filter:
    blur(14px);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 28px;
  
  padding: 24px;
  
  margin-bottom: 32px;
  
  box-shadow:
  
    0 10px 35px rgba(0,
      0,
      0,
      0.25);
  
}

.announcement-box::before {
  
  content: "";
  
  position: absolute;
  
  top: -80px;
  right: -80px;
  
  width: 180px;
  height: 180px;
  
  background:
  
    radial-gradient(circle,
      rgba(0,
        255,
        153,
        0.08),
      transparent);
  
  pointer-events: none;
  
}

/* HEADER */

.announcement-header {
  
  display: flex;
  
  align-items: center;
  
  gap: 12px;
  
  margin-bottom: 22px;
  
}

.announcement-header i {
  
  font-size: 22px;
  
  color: #00ff99;
  
}

.announcement-header h2 {
  
  font-size: 28px;
  
  font-weight: 800;
  
  color: white;
  
}

/* CONTAINER */

#announcementContainer {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 14px;
  
}

/* CARD */

.announcement-card {
  
  position: relative;
  
  padding: 18px 20px;
  
  border-radius: 18px;
  
  font-size: 14px;
  
  font-weight: 500;
  
  line-height: 1.7;
  
  transition: .3s;
  
  overflow: hidden;
  
}

.announcement-card:hover {
  
  transform:
    translateY(-2px);
  
}

/* IMPORTANT */

.important {
  
  background:
  
    linear-gradient(135deg,
      rgba(255,
        59,
        48,
        0.12),
      rgba(255,
        59,
        48,
        0.04));
  
  border:
    1px solid rgba(255,
      59,
      48,
      0.25);
  
}

/* UPDATE */

.update {
  
  background:
  
    linear-gradient(135deg,
      rgba(0,
        255,
        153,
        0.10),
      rgba(0,
        255,
        153,
        0.04));
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.20);
  
}

/* NOTICE */

.notice {
  
  background:
  
    linear-gradient(135deg,
      rgba(255,
        170,
        0,
        0.10),
      rgba(255,
        170,
        0,
        0.04));
  
  border:
    1px solid rgba(255,
      170,
      0,
      0.20);
  
}

/* MOBILE */

@media(max-width:768px) {
  
  .announcement-box {
    
    padding: 20px;
    
  }
  
  .announcement-header h2 {
    
    font-size: 24px;
    
  }
  
  .announcement-card {
    
    padding: 16px;
    
    font-size: 13px;
    
  }
  
}

.account-card {
  text-decoration: none;
  color: white;
}

.account-card:hover {
  transform: translateY(-4px);
  transition: .3s;
}

/* =========================
HOT MODES & PLAYER DEMANDS
========================= */

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


.hot-box,
.demand-box {
  
  position: relative;
  
  overflow: hidden;
  
  padding: 28px;
  
  border-radius: 28px;
  
  background:
  
    linear-gradient(180deg,
      rgba(255, 255, 255, .04),
      rgba(255, 255, 255, .02));
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  backdrop-filter:
    blur(16px);
  
  box-shadow:
    0 12px 35px rgba(0,
      0,
      0,
      0.25);
}

.hot-box::before {
  
  content: "";
  
  position: absolute;
  
  top: -100px;
  right: -100px;
  
  width: 220px;
  height: 220px;
  
  background:
  
    radial-gradient(circle,
      rgba(0,
        255,
        153,
        0.08),
      transparent);
  
  pointer-events: none;
  
}

/* HEADER */

.hot-header {
  display: flex;
  
  align-items: center;
  
  gap: 12px;
  
  margin-bottom: 24px;
  
}

.hot-header i {
  
  font-size: 22px;
  
  color: #00ff99;
  
}

.hot-header h2 {
  
  font-size: 30px;
  
  font-weight: 800;
  
  color: white;
  
}


/* HOT CARDS */

.hot-cards {
  
  display: grid;
  
  grid-template-columns:
    repeat(auto-fit,
      minmax(260px,
        1fr));
  
  gap: 18px;
  
}

/* CARD */

.hot-card {
  
  position: relative;
  
  overflow: hidden;
  
  padding: 24px;
  
  border-radius: 22px;
  
  background:
  
    rgba(255,
      255,
      255,
      0.04);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  transition: .3s;
  
}


.hot-card::before {
  
  content: "";
  
  position: absolute;
  
  top: -40px;
  right: -40px;
  
  width: 100px;
  height: 100px;
  
  background:
  
    radial-gradient(circle,
      rgba(0,
        255,
        153,
        0.08),
      transparent);
  
  pointer-events: none;
  
}

.hot-card:hover {
  
  transform:
    translateY(-6px);
  
  border-color:
    rgba(0,
      255,
      153,
      0.18);
  
  box-shadow:
  
    0 15px 35px rgba(0,
      255,
      153,
      0.10);
  
}

/* BADGE */

.hot-badge {
  
  display: inline-flex;
  
  align-items: center;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  font-size: 11px;
  
  font-weight: 700;
  
  letter-spacing: .5px;
  
  margin-bottom: 16px;
  
  background:
    rgba(0,
      255,
      153,
      0.10);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.20);
  
  color: #00ff99;
  
}

/* TITLE */

.hot-card h3 {
  
  font-size: 22px;
  
  font-weight: 700;
  
  line-height: 1.4;
  
  margin-bottom: 12px;
  
  color: white;
  
}

/* DESCRIPTION */

.hot-card p {
  
  font-size: 14px;
  
  line-height: 1.8;
  
  color: #b8b8b8;
  
}

/* MOBILE */

@media(max-width:768px) {
  
  .hot-box {
    
    padding: 22px;
    
  }
  
  .hot-header h2 {
    
    font-size: 26px;
    
  }
  
  .hot-card {
    
    padding: 20px;
    
  }
  
  .hot-card h3 {
    
    font-size: 18px;
    
  }
  
}

@media(max-width:480px) {
  
  .hot-cards {
    
    grid-template-columns: 1fr;
    
  }
  
}

/* DEMANDS */

.demand-content {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 16px;
}

.demand-item {
  
  display: flex;
  
  align-items: flex-start;
  
  gap: 14px;
  
  padding: 18px;
  
  border-radius: 18px;
  
  background:
    rgba(255, 255, 255, .04);
  
  border:
    1px solid rgba(255, 255, 255, .06);
  
  transition: .3s ease;
}

.demand-item:hover {
  
  transform: translateX(6px);
  
  background:
    rgba(255, 255, 255, .06);
}

.demand-item i {
  
  color: #00ff99;
  
  font-size: 18px;
  
  margin-top: 3px;
  
  text-shadow:
    0 0 10px rgba(0, 255, 153, .7);
}

.demand-item p {
  
  color: #ddd;
  
  font-size: 14px;
  
  line-height: 1.8;
}

.demand-item strong {
  
  color: white;
}


/* MOBILE */

@media(max-width:700px) {
  
  .hot-header h2 {
    
    font-size: 22px;
  }
  
  .hot-card h3 {
    
    font-size: 17px;
  }
  
}

.reveal {
  
  opacity: 0;
  
  transform:
    translateY(40px);
  
  transition:
  
    opacity .8s ease,
    
    transform .8s ease;
  
}

.reveal.active {
  
  opacity: 1;
  
  transform:
    translateY(0);
  
}



#splashScreen {
  
  position: fixed;
  
  inset: 0;
  
  background: #050505;
  
  display: flex;
  
  flex-direction: column;
  
  justify-content: center;
  
  align-items: center;
  
  z-index: 99999;
  
  transition:
    opacity .8s ease,
    transform .8s ease;
  
}

.splash-logo {
  
  width: 110px;
  
  height: 110px;
  
  object-fit: contain;
  
  margin-bottom: 24px;
  
  animation:
    logoIntro .8s ease;
  
}

@keyframes logoIntro {
  
  from {
    
    opacity: 0;
    
    transform:
      scale(.8);
    
  }
  
  to {
    
    opacity: 1;
    
    transform:
      scale(1);
    
  }
  
}

.splash-title {
  
  font-size: 34px;
  
  font-weight: 800;
  
  color: #fff;
  
  margin-bottom: 10px;
  
}

#splashText {
  
  width: 320px;
  
  text-align: center;
  
  color: #d8d8d8;
  
  font-size: 15px;
  
  line-height: 1.7;
  
  font-weight: 500;
  
  opacity: 1;
  
  transition:
    opacity .25s ease;
  
}

.intro-progress {
  
  width: 220px;
  
  height: 4px;
  
  background:
    rgba(255, 255, 255, .08);
  
  border-radius: 999px;
  
  overflow: hidden;
  
  margin-top: 25px;
  
}

#introBar {
  
  width: 0%;
  
  height: 100%;
  
  background: #00ff99;
  
  border-radius: 999px;
  
}

@media(max-width:768px) {
  
  .splash-logo {
    
    width: 90px;
    
    height: 90px;
    
  }
  
  .splash-title {
    
    font-size: 28px;
    
  }
  
  #splashText {
    
    width: 280px;
    
    font-size: 14px;
    
  }
  
}
