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

body {
  background: #050505;
  color: white;
  font-family: Poppins, sans-serif;
  padding: 20px;
}

main {
  padding: 95px 16px 120px;
  max-width: 1200px;
  margin: auto;
}

.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;
}

.mode-grid {
  
  display: flex;
  
  gap: 10px;
  
  overflow-x: auto;
  
  padding: 6px;
  
  margin-bottom: 26px;
  
  background: #0d0d0d;
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.05);
  
  border-radius: 18px;
  
  scrollbar-width: none;
  
}

.mode-grid::-webkit-scrollbar {
  
  display: none;
  
}

.mode-btn {
  
  padding: 12px 18px;
  
  border: none;
  
  border-radius: 14px;
  
  background: transparent;
  
  color: #888;
  
  font-weight: 600;
  
  cursor: pointer;
  
  transition: .25s;
  
  white-space: nowrap;
  
}


.mode-btn.active {
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: black;
  
  box-shadow:
  
    0 10px 25px rgba(0,
      255,
      153,
      0.2);
  
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  
  position: relative;
  
  overflow: hidden;
  
  border-radius: 28px;
  
  background:
    linear-gradient(180deg,
      #131313,
      #090909);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.08);
  
  box-shadow:
    0 10px 35px rgba(0,
      0,
      0,
      0.45);
  
  transition: .35s;
  
}

.result-card:hover {
  
  transform:
    translateY(-8px);
  
  border-color:
    rgba(0,
      255,
      153,
      0.25);
  
  box-shadow:
    0 20px 50px rgba(0,
      255,
      153,
      0.12);
  
}

.result-image {
  
  width: 100%;
  
  height: 220px;
  
  display: block;
  
  object-fit: cover;
  
  vertical-align: middle;
  
}

.result-card {
  
  position: relative;
  
  overflow: hidden;
  
}

.result-card::before {
  
  content: "";
  
  position: absolute;
  
  width: 260px;
  height: 260px;
  
  top: -120px;
  right: -120px;
  
  background:
    rgba(0,
      255,
      153,
      0.08);
  
  border-radius: 50%;
  
  filter: blur(80px);
  
  pointer-events: none;
  
}

.result-content {
  
  padding: 18px 20px;
  
}

.declared {
  
  display: inline-flex;
  
  align-items: center;
  
  gap: 6px;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  background:
    rgba(0,
      255,
      153,
      0.12);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.15);
  
  color: #00ff99;
  
  font-size: 11px;
  
  font-weight: 700;
  
  margin-bottom: 16px;
  
}

.result-stats {
  
  display: grid;
  
  grid-template-columns:
    1fr 1fr;
  
  gap: 12px;
  
  margin: 18px 0;
  
}

.result-stat {
  
  background: #151515;
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.05);
  
  padding: 14px;
  
  border-radius: 16px;
  
}

.result-stat span {
  
  display: block;
  
  font-size: 11px;
  
  color: #777;
  
  margin-bottom: 6px;
  
}

.result-stat strong {
  
  font-size: 15px;
  
  color: white;
  
}

.result-content h2 {
  margin-bottom: 10px;
}

.result-content p {
  color: #bbb;
  margin-bottom: 8px;
}

.view-btn {
  
  height: 52px;
  
  font-size: 15px;
  
  border-radius: 14px;
  
}

.view-btn {
  
  width: 100%;
  
  height: 54px;
  
  border: none;
  
  border-radius: 16px;
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: #000;
  
  font-size: 15px;
  
  font-weight: 700;
  
  cursor: pointer;
  
  transition: .25s;
  
  margin-top: 10px;
  
}

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

.empty {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.empty i {
  font-size: 60px;
  margin-bottom: 20px;
  color: #ffd700;
}

.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: 28px;
  
  margin-bottom: 14px;
  
  font-weight: 700;
}

.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-links a:hover {
  
  color: #00ff99;
}


/* 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;
  }
}

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

.tab-item {
  
  flex: 1;
  
  height: 100%;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  gap: 5px;
  
  text-decoration: none;
  
  color: #777;
}

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

.tab-item span {
  
  font-size: 11px;
}

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

@media(max-width:700px) {
  
  .hero-content h1 {
    
    font-size: 28px;
  }
  
  .footer-top {
    
    grid-template-columns: 1fr;
  }
  
  .rule-card {
    
    flex-direction: column;
  }
}

.site-footer::before {
  
  content: "";
  
  position: absolute;
  
  top: 0;
  left: 50%;
  
  transform:
    translateX(-50%);
  
  width: 92%;
  
  height: 1px;
  
  background:
    linear-gradient(90deg,
      transparent,
      rgba(0,
        255,
        153,
        0.35),
      transparent);
  
}

.results-hero {
  
  position: relative;
  
  overflow: hidden;
  
  padding: 34px 28px;
  
  margin-bottom: 24px;
  
  border-radius: 28px;
  
  background:
    linear-gradient(135deg,
      rgba(0, 255, 153, .08),
      rgba(0, 255, 153, .02));
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.12);
  
}

.hero-glow {
  
  position: absolute;
  
  width: 260px;
  height: 260px;
  
  right: -80px;
  top: -80px;
  
  background:
    rgba(0,
      255,
      153,
      0.12);
  
  border-radius: 50%;
  
  filter: blur(70px);
  
}

.results-tag {
  
  display: inline-block;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  background:
    rgba(0,
      255,
      153,
      0.12);
  
  color: #00ff99;
  
  font-size: 12px;
  
  font-weight: 700;
  
  letter-spacing: 1px;
  
  margin-bottom: 14px;
  
}

.results-hero h1 {
  
  font-size: 42px;
  
  font-weight: 800;
  
  line-height: 1.1;
  
  margin-bottom: 10px;
  
}

.results-hero p {
  
  color: #a5a5a5;
  
  max-width: 500px;
  
  line-height: 1.7;
  
}

@media(max-width:700px) {
  
  .results-hero h1 {
    
    font-size: 30px;
    
  }
  
  .result-image {
    
    height: 190px;
    
  }
  
}

.result-title {
  
  font-size: 30px;
  
  font-weight: 800;
  
  line-height: 1.2;
  
  margin-bottom: 18px;
  
  color: #fff;
  
}

.result-stats {
  
  display: grid;
  
  grid-template-columns:
    1fr 1fr;
  
  gap: 12px;
  
  margin-bottom: 18px;
  
}

.result-stat {
  
  background:
    rgba(255, 255, 255, .04);
  
  border:
    1px solid rgba(255, 255, 255, .05);
  
  padding: 16px;
  
  border-radius: 16px;
  
}

.result-stat span {
  
  display: block;
  
  font-size: 11px;
  
  color: #8d8d8d;
  
  text-transform: uppercase;
  
  letter-spacing: .8px;
  
  margin-bottom: 8px;
  
}

.result-stat strong {
  
  font-size: 16px;
  
  font-weight: 700;
  
  color: #fff;
  
  word-break: break-word;
  
}

.result-content {
  position: relative;
  z-index: 2;
}

.result-image {
  position: relative;
  z-index: 1;
}

/* ===========================
RESULTS CARD FIX
=========================== */

.result-banner {
  
  position: relative;
  
  height: 140px;
  
  overflow: hidden;
  
}

.result-image {
  
  width: 100%;
  
  height: 100%;
  
  object-fit: cover;
  
  display: block;
  
}

.result-ribbon {
  
  position: absolute;
  
  top: 14px;
  
  left: 14px;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  font-size: 11px;
  
  font-weight: 700;
  
  background: rgba(0, 255, 153, .15);
  
  border: 1px solid rgba(0, 255, 153, .2);
  
  color: #00ff99;
  
  backdrop-filter: blur(10px);
  
}

.result-content {
  
  padding: 18px;
  
  position: relative;
  
  z-index: 2;
  
}

.result-title {
  
  font-size: 22px;
  
  font-weight: 800;
  
  line-height: 1.3;
  
  margin-bottom: 16px;
  
  color: #fff;
  
}

.winner-row {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  padding: 14px 16px;
  
  border-radius: 18px;
  
  margin-bottom: 14px;
  
  background:
    linear-gradient(135deg,
      rgba(0, 255, 153, .08),
      rgba(0, 255, 153, .02));
  
  border:
    1px solid rgba(0,
      255,
      153,
      .12);
  
}

.winner-row span {
  
  font-size: 13px;
  
  color: #9d9d9d;
  
}

.winner-row strong {
  
  font-size: 17px;
  
  font-weight: 700;
  
  color: #00ff99;
  
}

.info-row {
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 12px;
  
  margin-bottom: 18px;
  
}

.info-box {
  
  background: #121212;
  
  border: 1px solid rgba(255, 255, 255, .05);
  
  border-radius: 16px;
  
  padding: 14px;
  
}

.info-box span {
  
  display: block;
  
  font-size: 11px;
  
  color: #7f7f7f;
  
  margin-bottom: 6px;
  
  text-transform: uppercase;
  
}

.info-box strong {
  
  font-size: 15px;
  
  font-weight: 700;
  
  color: white;
  
}

.view-btn {
  
  margin-top: 0;
  
  height: 52px;
  
  font-size: 15px;
  
  font-weight: 700;
  
  border-radius: 16px;
  
}

@media(max-width:700px) {
  
  .result-banner {
    
    height: 120px;
    
  }
  
  .result-title {
    
    font-size: 20px;
    
  }
  
  .winner-row strong {
    
    font-size: 15px;
    
  }
  
}

.result-banner {
  
  height: 180px;
  
  overflow: hidden;
  
}

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

.info-box {
  
  background:
    linear-gradient(180deg,
      #141414,
      #0d0d0d);
  
  border:
    1px solid rgba(255,
      255,
      255,
      .05);
  
  border-radius: 18px;
  
  padding: 14px;
  
}

.info-box strong {
  
  font-size: 15px;
  
  font-weight: 700;
  
  color: #fff;
  
}

.info-box {
  
  background:
    linear-gradient(180deg,
      #141414,
      #0d0d0d);
  
  border:
    1px solid rgba(255,
      255,
      255,
      .05);
  
  border-radius: 18px;
  
  padding: 14px;
  
}

.info-box strong {
  
  font-size: 15px;
  
  font-weight: 700;
  
  color: #fff;
  
}

.skeleton-card {
  
  height: 420px;
  
  border-radius: 24px;
  
  overflow: hidden;
  
  position: relative;
  
  background: #121212;
  
}

.skeleton-card::before {
  
  content: "";
  
  position: absolute;
  
  inset: 0;
  
  background:
  
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .06),
      transparent);
  
  animation:
    skeletonMove 1.2s infinite;
  
}

@keyframes skeletonMove {
  
  from {
    
    transform:
      translateX(-100%);
    
  }
  
  to {
    
    transform:
      translateX(100%);
    
  }
  
}

.skeleton-image {
  
  height: 200px;
  
  background: #181818;
  
}

.skeleton-content {
  
  padding: 20px;
  
}

.skeleton-line {
  
  height: 14px;
  
  border-radius: 10px;
  
  background: #181818;
  
  margin-bottom: 12px;
  
}

.long {
  width: 100%;
}

.short {
  width: 60%;
}

.empty-state {
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  text-align: center;
  
  padding: 50px 25px;
  
  background:
    rgba(255, 255, 255, .03);
  
  border:
    1px solid rgba(255, 255, 255, .05);
  
  border-radius: 24px;
  
}

.empty-state i {
  
  font-size: 48px;
  
  color: #00ff99;
  
  margin-bottom: 16px;
  
}

.empty-state h2 {
  
  font-size: 22px;
  
  margin-bottom: 8px;
  
}

.empty-state p {
  
  color: #9c9c9c;
  
  line-height: 1.6;
  
  max-width: 280px;
  
}

.error-state {
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  text-align: center;
  
  padding: 50px 25px;
  
  border-radius: 24px;
  
  background:
    rgba(255, 80, 80, .04);
  
  border:
    1px solid rgba(255,
      80,
      80,
      .12);
  
}

.error-state i {
  
  font-size: 50px;
  
  color: #ff6565;
  
  margin-bottom: 15px;
  
}

.error-state p {
  
  color: #aaa;
  
  margin-top: 10px;
  
}
