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

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

.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 {
  padding: 95px 16px 120px;
  max-width: 1200px;
  margin: auto;
}

.page-header {
  
  position: relative;
  
  overflow: hidden;
  
  border-radius: 28px;
  
  padding: 32px 24px;
  
  margin-bottom: 24px;
  
  background:
    linear-gradient(135deg,
      rgba(0, 255, 153, .08),
      rgba(0, 212, 255, .05));
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
}

.page-header::before {
  
  content: "";
  
  position: absolute;
  
  width: 220px;
  height: 220px;
  
  right: -60px;
  top: -60px;
  
  border-radius: 50%;
  
  background:
    rgba(0,
      255,
      153,
      0.08);
  
  filter: blur(60px);
  
}

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

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

.page-header h1 {
  
  font-size: 34px;
  
  font-weight: 800;
  
  line-height: 1.1;
  
  margin-bottom: 10px;
  
}

.page-header p {
  
  color: #b8b8b8;
  
  line-height: 1.7;
  
  max-width: 500px;
  
}

.card-image::after {
  
  content: "";
  
  position: absolute;
  
  inset: 0;
  
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .85),
      rgba(0, 0, 0, .15),
      transparent);
  
}

@media(max-width:700px) {
  
  .page-header {
    
    padding: 24px 18px;
    
  }
  
  .page-header h1 {
    
    font-size: 28px;
    
  }
  
  .page-header p {
    
    font-size: 14px;
    
  }
  
}

.filter-bar {
  
  display: flex;
  
  gap: 12px;
  
  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;
  
}

.filter-bar::-webkit-scrollbar {
  
  display: none;
  
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

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

.filter-btn.active {
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: #000;
  
  box-shadow:
  
    0 10px 20px rgba(0,
      255,
      153,
      0.18);
  
}

.filter-btn.active {
  background: #00ff99;
  color: #000;
}

.tournament-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tournament-card:hover {
  
  transform:
    translateY(-8px);
  
  border-color:
    rgba(0, 255, 153, .25);
  
  box-shadow:
  
    0 20px 40px rgba(0, 255, 153, .12);
  
}

.tournament-card {
  
  background: #0b0b0b;
  
  border: 1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 26px;
  
  overflow: hidden;
  
  transition: .3s;
  
  box-shadow:
    0 12px 35px rgba(0,
      0,
      0,
      0.35);
  
}

.tournament-card:hover {
  
  transform:
    translateY(-6px);
  
  border-color:
    rgba(0,
      255,
      153,
      0.18);
  
  box-shadow:
  
    0 20px 40px rgba(0,
      0,
      0,
      0.45);
  
}

.card-image {
  
  position: relative;
  
  height: 190px;
  
  overflow: hidden;
  
}

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

.status-badge {
  
  position: absolute;
  
  top: 14px;
  left: 14px;
  
  z-index: 5;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  font-size: 11px;
  
  font-weight: 700;
  
  letter-spacing: .5px;
  
  text-transform: uppercase;
  
  backdrop-filter: blur(10px);
  
}

.status-badge.upcoming {
  
  background:
    rgba(0, 255, 153, .15);
  
  color: #00ff99;
  
  border:
    1px solid rgba(0, 255, 153, .25);
  
}

.status-badge.live {
  
  background: #0094ff;
  
  color: #fff;
  
}

.status-badge.completed {
  
  background: #555;
  
  color: #fff;
  
}

.content {
  
  padding: 20px;
  
}

.content h2 {
  
  font-size: 28px;
  
  line-height: 1.2;
  
  margin-bottom: 14px;
  
  font-weight: 800;
  
}

.tournament-meta {
  
  display: flex;
  
  gap: 10px;
  
  flex-wrap: wrap;
  
  margin-bottom: 18px;
  
}

.tournament-meta span {
  
  display: flex;
  
  align-items: center;
  
  gap: 8px;
  
  padding: 10px 14px;
  
  background:
    rgba(0,
      255,
      153,
      0.08);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.12);
  
  border-radius: 14px;
  
  font-size: 13px;
  
  font-weight: 600;
  
  color: #e8e8e8;
  
  backdrop-filter:
    blur(8px);
  
}

.tournament-meta i {
  
  color: #00ff99;
  
  font-size: 12px;
  
}

.tournament-meta span:hover {
  
  border-color:
    rgba(0,
      255,
      153,
      0.3);
  
  background:
    rgba(0,
      255,
      153,
      0.12);
  
  transition: .25s;
  
}


.tournament-tags {
  
  display: flex;
  
  gap: 10px;
  
  flex-wrap: wrap;
  
  margin-bottom: 18px;
  
}

.tournament-tags span {
  
  background: #151515;
  
  border: 1px solid rgba(255,
      255,
      255,
      0.05);
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  font-size: 12px;
  
  color: #cfcfcf;
  
}

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

.mini-stats div {
  
  background: #121212;
  
  padding: 16px;
  
  border-radius: 18px;
  
}

.mini-stats small {
  
  display: block;
  
  font-size: 12px;
  
  color: #888;
  
  margin-bottom: 6px;
  
}

.mini-stats strong {
  
  font-size: 20px;
  
}

.progress {
  
  height: 8px;
  
  background: #181818;
  
  border-radius: 999px;
  
  overflow: hidden;
  
  margin-bottom: 14px;
  
}

.progress-fill {
  
  height: 100%;
  
  background:
    linear-gradient(90deg,
      #00ff99,
      #00d4ff);
  
}

.slot-row {
  
  display: flex;
  
  justify-content: space-between;
  
  font-size: 13px;
  
  color: #a8a8a8;
  
  margin-bottom: 18px;
  
}

.actions {
  
  display: flex;
  
  gap: 12px;
  
}

.btn {
  
  flex: 1;
  
  height: 52px;
  
  border: none;
  
  border-radius: 16px;
  
  font-weight: 700;
  
  cursor: pointer;
  
}

.details-btn {
  
  background: #1a1a1a;
  
  color: white;
  
}

.join-btn {
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: #000;
  
}

.room-full-btn {
  
  background: #ff9500;
  
  color: white;
  
}

.live-btn {
  
  background: #0094ff;
  
  color: white;
  
}

.completed-btn {
  
  background: #555;
  
  color: white;
  
}

.top-row {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  margin-bottom: 12px;
  
}

.meta-row {
  
  display: flex;
  
  gap: 10px;
  
  flex-wrap: wrap;
  
  margin-bottom: 18px;
  
}

.meta-row span {
  
  background: #181818;
  
  padding: 8px 12px;
  
  border-radius: 999px;
  
  font-size: 12px;
  
  color: #bbb;
  
}

.soon-badge {
  
  background: #ff9500;
  
  color: white;
  
  padding: 6px 12px;
  
  border-radius: 999px;
  
  font-size: 11px;
  
  font-weight: 700;
  
}

.slots-text {
  
  color: #aaa;
  
  font-size: 13px;
  
  margin-top: 8px;
  
}

.content h2 {
  
  font-size: 22px;
  
  margin: 10px 0;
  
  line-height: 1.3;
}


.live {
  background: #ff003c;
}

.upcoming {
  background: #00b894;
}

.completed {
  background: #555;
}

.full {
  background: #ff9500;
}

.btn {
  
  flex: 1;
  
  height: 50px;
  
  border: none;
  
  border-radius: 14px;
  
  font-weight: 700;
  
  cursor: pointer;
}

.details-btn {
  
  background: #1c1c1c;
  
  color: white;
}

.join-btn {
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: black;
}


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



.stats-grid div {
  
  background: #181818;
  
  padding: 12px;
  
  border-radius: 14px;
}

.stats-grid span {
  
  display: block;
  
  font-size: 12px;
  
  color: #888;
  
  margin-bottom: 6px;
}

.stats-grid strong {
  
  font-size: 16px;
}

.room-full-btn {
  
  background: #ff9500 !important;
  color: #fff !important;
  
}

.live-btn {
  
  background: #0094ff !important;
  color: #fff !important;
  
}

.completed-btn {
  
  background: #555 !important;
  color: #fff !important;
  
}

.image-title {
  
  position: absolute;
  
  left: 18px;
  bottom: 18px;
  
  z-index: 5;
  
  font-size: 22px;
  
  font-weight: 800;
  
  line-height: 1.2;
  
  max-width: 85%;
  
  text-shadow:
    0 4px 20px rgba(0, 0, 0, .8);
  
}

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

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

.popup-overlay {
  
  position: fixed;
  
  inset: 0;
  
  background:
    rgba(0, 0, 0, .75);
  
  backdrop-filter:
    blur(8px);
  
  display: none;
  
  justify-content: center;
  
  align-items: center;
  
  z-index: 99999;
  
  padding: 20px;
  
}

.popup-box {
  
  width: 100%;
  
  max-width: 420px;
  
  background:
    #0b0b0b;
  
  border-radius: 24px;
  
  border:
    1px solid rgba(0, 255, 153, .15);
  
  overflow: hidden;
  
}

.popup-header {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  padding: 18px 20px;
  
  border-bottom:
    1px solid rgba(255, 255, 255, .05);
  
}

.close-popup {
  
  border: none;
  
  background: none;
  
  color: white;
  
  font-size: 20px;
  
  cursor: pointer;
  
}

.settings-content {
  
  padding: 20px;
  
}

.setting-row {
  
  display: flex;
  
  justify-content: space-between;
  
  padding: 14px 0;
  
  border-bottom:
    1px solid rgba(255, 255, 255, .05);
  
}

.setting-row span {
  
  color: #888;
  
}

.setting-row strong {
  
  color: white;
  
}

.settings-tip {
  
  margin-top: 18px;
  
  padding: 14px;
  
  border-radius: 14px;
  
  background:
    rgba(0, 255, 153, .08);
  
  color: #00ff99;
  
  font-size: 13px;
  
  line-height: 1.6;
  
}

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