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

body {
  
  background:
    radial-gradient(circle at top,
      rgba(0, 255, 153, 0.08),
      transparent 35%),
    #050505;
  
  color: #ffffff;
  
  padding-top: 95px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 90px;
  
  min-height: 100vh;
  
  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;
}

.container {
  max-width: 900px;
  margin: auto;
}

.card {
  
  background:
    linear-gradient(180deg,
      #121212,
      #0c0c0c);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 28px;
  
  padding: 32px;
  
  box-shadow:
  
    0 20px 50px rgba(0,
      0,
      0,
      0.35);
  
}

.room-header {
  
  text-align: center;
  
  margin-bottom: 28px;
  
}

.room-icon {
  
  width: 82px;
  height: 82px;
  
  margin: auto;
  
  border-radius: 50%;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  background:
    rgba(0,
      255,
      153,
      0.1);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.15);
  
  margin-bottom: 18px;
  
}

.room-icon i {
  
  font-size: 34px;
  
  color: #00ff99;
  
}

.card h1 {
  
  font-size: 34px;
  
  font-weight: 800;
  
  margin-bottom: 10px;
  
}

.subtitle {
  
  max-width: 500px;
  
  margin: auto;
  
  line-height: 1.7;
  
  color: #999;
  
}

#registrationId,
#gameUid {
  
  width: 100%;
  
  height: 62px;
  
  background: #0c0c0c;
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 18px;
  
  padding: 0 18px;
  
  color: white;
  
  font-size: 15px;
  
  margin-bottom: 14px;
  
  transition: .25s;
  
}

#registrationId:focus,
#gameUid:focus {
  
  outline: none;
  
  border-color: #00ff99;
  
  box-shadow:
  
    0 0 0 4px rgba(0,
      255,
      153,
      0.08);
  
}

#getRoomBtn {
  
  width: 100%;
  
  height: 60px;
  
  border: none;
  
  border-radius: 18px;
  
  font-size: 16px;
  
  font-weight: 700;
  
  cursor: pointer;
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  color: #000;
  
  transition: .25s;
  
}

#getRoomBtn:hover {
  
  transform:
    translateY(-2px);
  
}

#getRoomBtn:disabled {
  
  opacity: .7;
  
}


.result {
  margin-top: 25px;
}

.status-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 18px;
}

.status-title {
  color: #00ff99;
  font-size: 18px;
  margin-bottom: 12px;
}

.room-box {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
}

.room-box strong {
  display: block;
  color: #00ff99;
  margin-bottom: 6px;
}

.countdown {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.error {
  color: #ff4d4d;
}

.success {
  color: #00ff99;
}

.room-box button {
  
  margin-top: 10px;
  
  width: 100%;
  
  height: 42px;
  
  border: none;
  
  border-radius: 10px;
  
  cursor: pointer;
  
  font-weight: 600;
  
}

.notes-card {
  
  margin-top: 20px;
  
  background:
    rgba(255,
      255,
      255,
      0.03);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.05);
  
  border-radius: 22px;
  
  padding: 22px;
  
}

.notes-card h3 {
  
  color: #00ff99;
  
  margin-bottom: 12px;
  
  font-size: 18px;
  
}

.notes-card p {
  
  line-height: 1.9;
  
  color: #aaa;
  
}

.notes-card h3 {
  
  margin-bottom: 10px;
  
  color: #00ff99;
  
}

.notes-card p {
  
  color: #aaa;
  
  line-height: 1.6;
  
  font-size: 14px;
  
}

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

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

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


/* MOBILE */

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

.success-card {
  
  background:
    linear-gradient(180deg,
      #111,
      #0a0a0a);
  
}

.success-header {
  
  text-align: center;
  
  margin-bottom: 24px;
  
}

.success-icon {
  
  font-size: 42px;
  
  margin-bottom: 12px;
  
}

.success-header h3 {
  
  font-size: 24px;
  
  color: #00ff99;
  
  margin-bottom: 8px;
  
}

.success-header p {
  
  color: #aaa;
  
}

.room-grid {
  
  display: grid;
  
  grid-template-columns:
    1fr 1fr;
  
  gap: 16px;
  
}

.room-detail-card {
  
  background: #0f0f0f;
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.06);
  
  border-radius: 20px;
  
  padding: 20px;
  
}

.room-detail-card span {
  
  display: block;
  
  font-size: 12px;
  
  color: #888;
  
  margin-bottom: 8px;
  
}

.room-detail-card h2 {
  
  font-size: 24px;
  
  margin-bottom: 16px;
  
  word-break: break-word;
  
}

.copy-btn {
  
  width: 100%;
  
  height: 46px;
  
  border: none;
  
  border-radius: 14px;
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d4ff);
  
  font-weight: 700;
  
  cursor: pointer;
  
  color: black;
  
}

@media(max-width:700px) {
  
  .room-grid {
    
    grid-template-columns:
      1fr;
    
  }
  
}

.premium-countdown {
  
  font-size: 38px;
  
  font-weight: 800;
  
  text-align: center;
  
  color: #00ff99;
  
  margin-top: 12px;
  
  text-shadow:
    0 0 20px rgba(0,
      255,
      153,
      0.35);
  
}

.locked-badge {
  
  display: inline-flex;
  
  align-items: center;
  
  justify-content: center;
  
  padding: 10px 18px;
  
  border-radius: 999px;
  
  background:
    rgba(255,
      153,
      0,
      0.12);
  
  color: #ffb347;
  
  font-size: 13px;
  
  font-weight: 700;
  
  margin-bottom: 12px;
  
}

.loader {
  width: 40px;
  height: 40px;
  margin: auto;
  border: 4px solid rgba(255, 255, 255, .1);
  border-top: 4px solid #00ff99;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.loading-card,
.error-state,
.empty-state {
  
  text-align: center;
  padding: 30px 20px;
  
}

.error-state i,
.empty-state i {
  
  font-size: 42px;
  margin-bottom: 14px;
  color: #00ff99;
  
}

.retry-btn {
  
  margin-top: 18px;
  width: 100%;
  
  height: 34px;
  
  border: none;
  
  border-radius: 10px;
  
  cursor: pointer;
  
  font-weight: 600;
  
}

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