/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  /* Unique palette: "Midnight Mango + Neon Mint" */
  --bg0:#070A12;
  --bg1:#0B1024;
  --bg2:#111A3A;

  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.10);

  --text:#F2F5FF;
  --muted: rgba(242,245,255,0.74);

  --mango:#FFB000;
  --papaya:#FF5A3D;
  --orchid:#B14CFF;
  --mint:#38F7C4;
  --cyan:#25D7FF;

  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --radius: 16px;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 12%, rgba(177,76,255,0.26), transparent 55%),
    radial-gradient(800px 520px at 90% 18%, rgba(56,247,196,0.18), transparent 55%),
    radial-gradient(900px 520px at 50% 100%, rgba(255,176,0,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg2));
  width: 100%;
  overflow-x: hidden;
}

a{ color: inherit; }

h1{ font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; letter-spacing: -0.03em; margin: 10px 0; }
h2{ font-size: 1.6rem; margin: 10px 0; }
h3{ font-size: 1.25rem; margin: 10px 0; }

p{
  font-size: 16px;
  line-height: 28px;
  margin: 10px 0;
  color: var(--muted);
}

::selection{
  background: rgba(56,247,196,0.24);
}

/* ===== NAV ===== */
.menu{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(7,10,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.banner{
	width:auto;
	height:auto;
	display:block;
	
}

.banner img{
	    width: clamp(220px, 90vw, 560px);
	height:auto;
	
	
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, #fff, rgba(255,255,255,0.15) 35%),
    linear-gradient(135deg, var(--mango), var(--papaya), var(--orchid));
  box-shadow: 0 0 0 4px rgba(255,176,0,0.10), 0 12px 24px rgba(255,90,61,0.18);
}

.brand-text{ color: var(--text); }
.brand-badge{
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(56,247,196,0.12);
  border: 1px solid rgba(56,247,196,0.24);
  color: var(--mint);
}

.menu-links{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.menu-links a{
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(242,245,255,0.85);
  transition: background 0.2s ease, transform 0.2s ease;
}
.menu-links a:hover{
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* ===== DROPDOWN ===== */
.dropdown{ position: relative; display: inline-block; outline: none; }

.dropdown-label{
  background:
    linear-gradient(135deg, rgba(56,247,196,0.22), rgba(37,215,255,0.12));
  color: var(--text);
  border: 1px solid rgba(56,247,196,0.25);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
.dropdown-label:hover,
.dropdown-label:focus{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.dropdown-content{
  position: absolute;
  top: 48px;
  right: 0;
  background: rgba(12,16,36,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  list-style: none;
  width: 190px;
  z-index: 10;
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.dropdown-content li a{
  display: block;
  padding: 10px 12px;
  color: rgba(242,245,255,0.9);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.dropdown-content li a:hover{
  background: rgba(255,176,0,0.10);
  transform: translateX(2px);
}

.dropdown:focus-within .dropdown-content{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero{
  padding: 64px 16px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(255,176,0,0.20), transparent 60%),
    radial-gradient(600px 300px at 85% 15%, rgba(56,247,196,0.16), transparent 65%),
    radial-gradient(600px 300px at 60% 90%, rgba(177,76,255,0.12), transparent 60%);
}

.hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  text-align:center;
}

.eyebrow{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,245,255,0.78);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.lead{
  font-size: 18px;
  line-height: 30px;
  color: rgba(242,245,255,0.78);
}

.hero-actions{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta-button{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: #0b0f1f;
  background: linear-gradient(135deg, var(--mango), var(--papaya));
  box-shadow: 0 18px 35px rgba(255,90,61,0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.cta-button:hover{ transform: translateY(-2px); filter: brightness(1.05); }

.ghost-button{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: rgba(242,245,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ghost-button:hover{ transform: translateY(-2px); background: rgba(255,255,255,0.09); }

.micro-stats{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill{
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(242,245,255,0.86);
}

/* ===== HERO CARD (visual) ===== */
.hero-card{
  border-radius: var(--radius);
  background:
    radial-gradient(800px 340px at 30% 20%, rgba(37,215,255,0.12), transparent 60%),
    radial-gradient(700px 320px at 80% 40%, rgba(255,176,0,0.10), transparent 60%),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.road{
  position: relative;
  height: 280px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 34px 100%,
    linear-gradient(180deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(180deg, rgba(17,26,58,0.8), rgba(7,10,18,0.85));
}

.lane{
  position: absolute;
  left: 10%;
  right: 10%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding-left: 12px;
}
.lane .tag{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(242,245,255,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.lane-1{ top: 18px; }
.lane-2{ top: 84px; }
.lane-3{ top: 150px; }
.lane-4{ top: 216px; }

.lane-1{ box-shadow: inset 0 0 0 1px rgba(56,247,196,0.22); }
.lane-4{ box-shadow: inset 0 0 0 1px rgba(255,176,0,0.20); }

.lists ol, ul{
	font-weight: 700;
    margin-bottom: 10px;
    list-style: none;
    padding: 0px;
}

.chicken{
  position: absolute;
  left: 18%;
  top: 205px;
  font-size: 34px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5));
  animation: bob 1.8s ease-in-out infinite;
}

.car{
  position: absolute;
  font-size: 30px;
  top: 0;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
  opacity: 0.95;
}

.c1{ top: 24px; left: -20%; animation: drive1 5.8s linear infinite; }
.c2{ top: 92px; left: -35%; animation: drive2 6.6s linear infinite; }
.c3{ top: 158px; left: -25%; animation: drive3 5.2s linear infinite; }

.card-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
}

.meter{
  display: grid;
  gap: 8px;
  width: 70%;
}
.meter span{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,245,255,0.72);
}
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
.bar i{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--orchid));
  box-shadow: 0 10px 20px rgba(37,215,255,0.18);
}

.chip{
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,176,0,0.12);
  border: 1px solid rgba(255,176,0,0.22);
  color: rgba(255,176,0,0.95);
}

/* ===== FEATURES ===== */
.games{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 30px auto 10px;
  max-width: 1200px;
  padding: 0 16px;
}

.game-card{
  flex: 1;
  min-width: 260px;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.game-card h2{
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: rgba(242,245,255,0.95);
}

.game-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
  border-color: rgba(56,247,196,0.20);
}

/* ===== CONTENT ===== */
.category-section{
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 26px 18px;
  text-align: center;
  line-height: 1.8;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,0,0,0.22);
}

.content-block{
  margin-top: 26px;
}

/* ===== TABLE ===== */
.p-table{
  max-width: 900px;
  margin: 1.8rem auto;
  background: rgba(10,14,30,0.7);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  overflow: hidden;
  text-align: left;
}

.p-table thead th{
  background:
    linear-gradient(135deg, rgba(255,176,0,0.16), rgba(177,76,255,0.10));
  padding: 14px 14px;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.p-table tbody td{
  padding: 12px 16px;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(242,245,255,0.82);
}

.p-table tbody tr:hover{
  background: rgba(56,247,196,0.06);
}

.p-table tbody tr:last-child td{
  border-bottom: none;
}

/* ===== FOOTER ===== */
footer{
  margin-top: 34px;
  padding: 14px 10px 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,10,18,0.55);
}
footer p{
  color: rgba(242,245,255,0.60);
  font-size: 12px;
}

/* ===== ANIMS ===== */
@keyframes drive1 { from { transform: translateX(0); } to { transform: translateX(160%); } }
@keyframes drive2 { from { transform: translateX(0); } to { transform: translateX(170%); } }
@keyframes drive3 { from { transform: translateX(0); } to { transform: translateX(150%); } }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-card{ order: 2; }
}

@media (max-width: 480px){
  .menu{ padding: 10px 12px; }
  .menu-links{ justify-content: center; }
  .dropdown-content{ width: 170px; }

  .p-table thead{ display: none; }
  .p-table tbody td{
    display: block;
    padding: 10px 14px;
  }
  .p-table tbody td:first-child{
    margin-top: 10px;
    font-weight: 900;
    color: rgba(255,176,0,0.95);
  }
}