/* ===== SATURDAYS GAMING SECTION - ALL STYLES ===== */
/* Auto-generated from gaming frontend CSS files */

/* ===== App.css ===== */
.app-container {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0 5rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow-x: clip;
  position: relative;
  background: var(--bg-color);
}

/* Navbar */
.gaming-section .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 5rem;
  margin: 0 -5rem 0 -5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(6, 17, 9, 0.65);
  backdrop-filter: blur(16px);
}

/* Section Switcher Dropdown (gaming dark theme) */
.gaming-section .navbar-section-switcher {
  position: relative;
}

.gaming-section .navbar-section-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar-section-btn:hover {
  border-color: rgba(198,240,63,0.4);
  background: rgba(198,240,63,0.08);
}

.gaming-section .section-icon {
  font-size: 15px;
}

.gaming-section .section-chevron {
  transition: transform 0.25s ease;
}

.gaming-section .section-chevron.open {
  transform: rotate(180deg);
}

.gaming-section .navbar-section-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: #1a1f1a;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  z-index: 1000;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.gaming-section .navbar-section-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
  color: #fff;
}

.gaming-section .navbar-section-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
}

.gaming-section .navbar-section-dropdown-item.active {
  background: rgba(198,240,63,0.08);
}

.gaming-section .dropdown-item-icon {
  font-size: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  flex-shrink: 0;
}

.gaming-section .navbar-section-dropdown-item.active .dropdown-item-icon {
  background: rgba(198,240,63,0.12);
}

.gaming-section .dropdown-item-info {
  display: flex;
  flex-direction: column;
}

.gaming-section .dropdown-item-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.gaming-section .dropdown-item-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

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

.logo {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--text-main);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-links {
  display: flex;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 2.5rem;
  padding: 0.5rem 2rem;
  gap: 3rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

.nav-item:not(.active) {
  color: var(--text-muted);
}

.nav-item.active {
  color: var(--primary);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.nav-item svg {
  width: 18px;
  height: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.coin-balance {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #141108;
  padding: 0.3rem 0.5rem 0.3rem 0.3rem;
  border-radius: 2rem;
  border: 1px solid #2a220d;
}

.coin-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.4);
}

.coin-info {
  display: flex;
  flex-direction: column;
}

.coin-amount {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.coin-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.add-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-left: 0.5rem;
}
.add-btn:hover { background: rgba(255, 255, 255, 0.2); }

.bell-btn {
  color: var(--text-main);
  position: relative;
}
.bell-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg-color);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--panel-border);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-level {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.user-rank {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Main Layout Grid */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.weekend-mode {
  background: var(--primary);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0px #fff;
  transition: transform 0.2s;
}
.weekend-mode:hover {
  transform: rotate(2deg) scale(1.05);
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.text-primary { 
  background: linear-gradient(90deg, var(--primary), #a5d661, #20ff70, var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s linear infinite;
  display: inline-block;
}

@keyframes textShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -200% 0; }
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 450px;
}
.hero-desc span {
  color: var(--primary);
  position: relative;
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
}

.hero-desc span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -2%;
  width: 104%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2,15 Q25,8 50,12 T98,10 M10,18 Q45,22 90,16' fill='none' stroke='%23a8e05f' stroke-width='3' stroke-linecap='round' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: -1;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 3rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  max-width: 420px;
}

.search-bar svg {
  color: var(--text-muted);
  width: 20px;
  height: 20px;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.search-bar input::placeholder { color: var(--text-muted); }

.search-btn {
  background: var(--primary);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.search-btn:hover { 
  transform: scale(1.15) rotate(15deg); 
  box-shadow: 2px 2px 0px #fff;
}

.hero-image-container {
  flex: 1.6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 550px;
}

.hero-sticker-group {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 500px;
  transform: rotate(-1deg) scale(1.08);
  transform-origin: center right;
  z-index: 10;
}

.turf-mask-wrapper {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 85%;
  height: 75%;
  /* Fade Top Edge to blend seamlessly into the page background */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
}

.sticker-turf-panel {
  width: 100%;
  height: 100%;
  background: #0a0f0c;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: -10px 15px 30px rgba(0,0,0,0.6);
  /* Fade Left and Right edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.turf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.stadium-light-beam-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(15px);
  z-index: 5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.stadium-light-beam-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 33.5%, rgba(255, 255, 255, 0.7) 34%, rgba(200, 230, 255, 0.2) 65%, rgba(0, 0, 0, 0) 100%);
  clip-path: polygon(50% 34%, 61% 33.5%, 85% 100%, 25% 100%);
  animation: beamPulse 4s infinite alternate ease-in-out;
}

@keyframes beamPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.play-hard-text {
  position: absolute;
  bottom: 25%;
  left: 10%;
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  transform: rotate(-8deg);
  z-index: 10;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

@keyframes playHardWiggle {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-4deg) scale(1.05); }
}

.arrow-sticker {
  position: absolute;
  top: 8%;
  left: -10%;
  width: 100px;
  height: auto;
  z-index: 14;
  pointer-events: none;
  animation: floatArrow 3.5s infinite ease-in-out;
  transform: rotate(-10deg);
  filter: drop-shadow(0px 0px 4px rgba(198, 240, 63, 0.4));
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-5px) rotate(-7deg); }
}

.crown-sticker {
  position: absolute;
  top: -10%;
  left: -13%;
  width: 220px;
  height: auto;
  z-index: 15;
  pointer-events: none;
  animation: floatCrown 4s infinite ease-in-out;
}

@keyframes floatCrown {
  0%, 100% { 
    transform: translateY(0) rotate(-25deg); 
    filter: contrast(1.3) drop-shadow(0px 0px 2px rgba(198, 240, 63, 1)) drop-shadow(0px 0px 8px rgba(198, 240, 63, 0.5));
  }
  50% { 
    transform: translateY(-10px) rotate(-22deg); 
    filter: contrast(1.3) drop-shadow(0px 0px 4px rgba(198, 240, 63, 1)) drop-shadow(0px 0px 12px rgba(198, 240, 63, 0.8));
  }
}

.hero-objects-3d {
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 110%;
  height: auto;
  z-index: 20;
  filter: drop-shadow(-15px 25px 35px rgba(0,0,0,0.85));
}

/* PC Fan Glows */
.fan-glow {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: fanPulse 2s infinite alternate ease-in-out;
  z-index: 21;
}

.fan-side {
  bottom: 38%;
  right: 27.5%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at center, 
    rgba(0, 243, 255, 0.8) 0%, 
    rgba(200, 0, 255, 0.4) 40%, 
    rgba(0, 0, 0, 0) 65%
  );
  filter: blur(8px);
  animation: bluePinkPulse 3s infinite alternate ease-in-out;
}

@keyframes bluePinkPulse {
  0% { filter: blur(8px) hue-rotate(0deg); opacity: 0.7; transform: scale(1); }
  100% { filter: blur(12px) hue-rotate(70deg); opacity: 1; transform: scale(1.05); }
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 3;
}

.panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.level-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 235px;
}

.level-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.level-badge {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.level-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.level-info p {
  color: var(--text-main);
  font-size: 0.9rem;
}

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: #1e2a22;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.next-reward {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.reward-info p {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.reward-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.claim-btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(198, 240, 63, 0.2);
}

.claim-btn.active {
  background: #fff;
  color: #000;
  animation: pulseButton 1.5s infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
}

.claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 240, 63, 0.4);
}

.claim-btn:active:not(:disabled) {
  transform: translateY(0);
}

.claim-btn:disabled {
  background: var(--panel-border);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

/* Quests Panel */
.quests-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}
.quests-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.timer {
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
  color: var(--text-main);
  text-align: right;
  font-weight: 600;
}
.timer span { display: block; font-size: 0.65rem; color: var(--text-muted); font-weight: normal; margin-top: 2px;}

.quest-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* Quests Panel */
.quests-panel {
  height: 235px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.quests-panel::-webkit-scrollbar {
  display: none;
}

.quests-panel .quests-header h3 {
  color: var(--text-main);
  font-weight: 700;
}

.quests-panel .quests-header h3 svg {
  color: var(--primary);
}

.quests-panel .timer {
  background: var(--bg-color);
  color: var(--text-main);
  border-radius: 1rem;
  padding: 0.3rem 0.8rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--panel-border);
}

.quests-panel .timer span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.quest-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--panel-border);
}

.quest-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quest-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quest-icon.completed {
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  padding: 0.15rem;
  box-shadow: 0 0 10px rgba(168, 224, 95, 0.4);
}

.quest-details {
  flex: 1;
}

.quest-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
}

.quest-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.quest-reward {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.coin-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.quest-progress-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quest-progress-bg {
  flex: 1;
  height: 6px;
  background: var(--bg-color);
  border-radius: 3px;
  overflow: hidden;
}

.quest-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(168, 224, 95, 0.4);
}

.quest-status {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.status-tick {
  color: #7a9c4a;
}

/* Popular Picks */
.popular-picks {
  background: #e6e2d3;
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  color: #000;
  margin-top: -1.5rem;
  position: relative;
  z-index: 5;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  margin-top: 0.4rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.section-title svg { color: var(--primary); }

.view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7a9c4a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.slider-arrow-btn {
  background: #ffffff;
  border: none;
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: absolute;
  top: 50%;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slider-arrow-btn.left-arrow {
  left: -22px;
  transform: translateY(-50%);
}

.slider-arrow-btn.right-arrow {
  right: -22px;
  transform: translateY(-50%);
}

.slider-arrow-btn:hover {
  background: var(--primary);
  color: #000;
}

.slider-arrow-btn.left-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}

.slider-arrow-btn.right-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}
.view-all:hover {
  text-decoration: underline;
}

.slider-wrapper {
  overflow-x: auto;
  width: 100%;
  scrollbar-width: none;
}
.slider-wrapper::-webkit-scrollbar {
  display: none;
}

.cards-slider-track {
  display: flex;
  width: max-content;
  padding-bottom: 0;
}

.cards-slider-track:hover {
}

.cards-container {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

@keyframes slideTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.venue-card {
  min-width: 300px;
  background: #080d0a;
  border: 1px solid #1a221d;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  color: #fff;
  flex: 1;
}

.venue-img-container {
  height: 120px;
  position: relative;
}

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.3s;
}

.venue-card:hover .venue-img { 
  transform: scale(1.05); 
  opacity: 1; 
}

.venue-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-hot { background: #ff5722; color: #fff; }
.badge-rated, .badge-trending, .badge-fast { background: #a5d661; color: #000; }

.venue-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.venue-heart svg {
  transition: transform 0.2s, fill 0.2s;
}

.venue-heart:hover svg {
  transform: scale(1.1);
  fill: rgba(255,255,255,0.3);
}

.venue-info {
  padding: 0.8rem 1rem;
}

.venue-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  color: #fff;
}

.venue-location {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.venue-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.venue-stats {
  font-size: 0.85rem;
  color: #bbb;
  display: flex;
  align-items: center;
}

.book-btn {
  background: #a5d661;
  color: #000;
  border: none;
  border-radius: 0.4rem;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.book-btn:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  background: #a5d661;
  box-shadow: 4px 4px 0px #fff;
  border: 2px solid #000;
}


/* Rewards Drawer Toggle Button */
.rewards-toggle-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--primary);
  color: #000;
  border: 2px solid #000;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 1.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: -4px 4px 0px rgba(198, 240, 63, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
}

.rewards-toggle-btn.hidden {
  transform: translate(100%, -50%);
}

.rewards-toggle-btn:hover {
  background: #fff;
  box-shadow: -6px 6px 0px rgba(255, 255, 255, 0.4);
}

.toggle-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  letter-spacing: 2px;
  transform: rotate(180deg);
}

/* Rewards Drawer Overlay */
.rewards-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 17, 9, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

/* Rewards Drawer */
.rewards-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(25, 25, 25, 0.95), rgba(10, 10, 10, 0.98));
  background-size: 200% 200%;
  animation: bgShift 5s ease infinite;
  border-left: 2px solid var(--primary);
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  overflow-y: auto;
}

.rewards-drawer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(198, 240, 63, 0.03) 10px,
    rgba(198, 240, 63, 0.03) 20px
  );
  pointer-events: none;
  z-index: 0;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.rewards-drawer.open {
  transform: translateX(0);
}

.close-drawer-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.close-drawer-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.rewards-drawer-header {
  margin-bottom: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.rewards-drawer-header h3 {
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0px rgba(198, 240, 63, 0.7), -1px -1px 0px #ff0055;
  line-height: 1.3;
}

.rewards-drawer-header p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-left: 3px solid var(--primary);
  line-height: 1.5;
}

/* Vertical Timeline */
.vertical-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-left: 10px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover {
  transform: translateX(8px);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: #111;
  border: 3px dashed #444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.timeline-item.active .timeline-icon {
  background: #222;
  border: 3px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(198, 240, 63, 0.4);
  animation: funkyPulse 0.8s infinite alternate;
}

@keyframes funkyPulse {
  0% { box-shadow: 0 0 10px rgba(198, 240, 63, 0.5), inset 0 0 5px rgba(198, 240, 63, 0.2); border-color: #fff; }
  100% { box-shadow: 0 0 20px rgba(198, 240, 63, 1), inset 0 0 10px rgba(198, 240, 63, 0.8); border-color: var(--primary); }
}

.timeline-item.completed .timeline-icon {
  background: var(--primary);
  border: 3px solid #000;
  color: #000;
  box-shadow: 4px 4px 0px rgba(255,255,255,0.2);
}

.timeline-label {
  font-size: 0.9rem;
  color: #888;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #111;
  padding: 2px 8px;
  border: 1px dashed #333;
}

.timeline-item.active .timeline-label { 
  color: #000; 
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 2px 2px 0 #fff;
}

.timeline-item.completed:not(.active) .timeline-label { 
  color: var(--primary);
  border-color: var(--primary);
  background: #111;
}

.vertical-timeline-line {
  width: 6px;
  height: 40px;
  background: #222;
  margin-left: 21px;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  margin-top: 4px;
  margin-bottom: 4px;
}

.vertical-timeline-line.active {
  background: repeating-linear-gradient(
    0deg,
    var(--primary),
    var(--primary) 10px,
    #fff 10px,
    #fff 20px
  );
  background-size: 28px 28px;
  animation: moveStripesVertical 0.5s linear infinite;
  box-shadow: 0 0 10px rgba(198, 240, 63, 0.4);
  border: none;
}

@keyframes moveStripesVertical {
  0% { background-position: 0 0; }
  100% { background-position: 0 28px; }
}

.view-rewards-btn {
  background: var(--primary);
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  padding: 1.2rem;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px rgba(198, 240, 63, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.1s ease;
  width: 100%;
}

.view-rewards-btn:hover { background: #fff; }
.view-rewards-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px transparent;
}

@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .hero-image-container { display: none; }
  .hero-content { padding-right: 0; }
  .timeline { display: none; }
}

/* Level Up Modal Styles */
.level-up-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.level-up-modal-content {
  background: var(--panel-bg);
  border: 2px solid var(--primary);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 0 50px rgba(198, 240, 63, 0.3), inset 0 0 20px rgba(198, 240, 63, 0.1);
  text-align: center;
  animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-fill-mode: both;
  animation-delay: 0.8s;
}

.level-up-badge-large {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 20px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(198, 240, 63, 0.5);
  transform: rotate(5deg);
  animation: badgeWiggle 2s infinite ease-in-out;
}

.level-up-badge-large span {
  font-size: 4rem;
  font-weight: 900;
  color: #000;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.level-up-modal-content h2 {
  font-size: 1.5rem;
  color: #fff;
}

.level-up-modal-content p {
  font-size: 1.2rem;
  color: #aaa;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #333;
}

.text-gold {
  color: #ffb703;
  font-weight: 800;
}

.modal-close-btn {
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  0% { transform: scale(0.5) translateY(250px); opacity: 0; }
  80% { transform: scale(1.02) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes badgeWiggle {
  0%, 100% { transform: rotate(5deg) scale(1); }
  50% { transform: rotate(-5deg) scale(1.05); }
}

.glitch-text {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  text-shadow: 0.05em 0 0 var(--primary), -0.025em -0.05em 0 #ff0055,
    0.025em 0.05em 0 #00ffff;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 0.05em 0 0 var(--primary), -0.05em -0.025em 0 #ff0055, -0.025em 0.05em 0 #00ffff; }
  14% { text-shadow: 0.05em 0 0 var(--primary), -0.05em -0.025em 0 #ff0055, -0.025em 0.05em 0 #00ffff; }
  15% { text-shadow: -0.05em -0.025em 0 var(--primary), 0.025em 0.025em 0 #ff0055, -0.05em -0.05em 0 #00ffff; }
  49% { text-shadow: -0.05em -0.025em 0 var(--primary), 0.025em 0.025em 0 #ff0055, -0.05em -0.05em 0 #00ffff; }
  50% { text-shadow: 0.025em 0.05em 0 var(--primary), 0.05em 0 0 #ff0055, 0 -0.05em 0 #00ffff; }
  99% { text-shadow: 0.025em 0.05em 0 var(--primary), 0.05em 0 0 #ff0055, 0 -0.05em 0 #00ffff; }
  100% { text-shadow: -0.025em 0 0 var(--primary), -0.025em -0.025em 0 #ff0055, -0.025em -0.05em 0 #00ffff; }
}

/* Categories Section */
.categories-section {
  /* margin-top: 2rem; */
  z-index: 5;
  position: relative;
}

.categories-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.categories-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex-shrink: 0;
  min-width: 240px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-bg-icon {
  position: absolute;
  top: -20%;
  right: -20%;
  opacity: 0.05;
  color: var(--cat-color);
  transform: scale(4) rotate(-15deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.category-card:hover .category-bg-icon {
  transform: scale(4.5) rotate(0deg);
  opacity: 0.1;
}

.category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cat-color);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover .category-icon {
  transform: scale(1.15);
  background: var(--cat-color);
  color: #000;
  box-shadow: 0 0 25px var(--cat-color), inset 0 0 10px rgba(255,255,255,0.5);
  border-color: transparent;
}

.category-text {
  text-align: center;
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.category-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.category-subtitle {
  font-size: 0.8rem;
  color: var(--cat-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.7;
}

.category-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cat-color);
  opacity: 0.3;
  transition: all 0.4s ease;
}

.category-card:hover .category-glow {
  height: 100%;
  opacity: 0.05;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px var(--cat-color);
}

/* Main Content Split */
.main-content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  z-index: 5;
  position: relative;
}

/* Tournaments Section */
.tournaments-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.tournament-card {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  height: 140px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.tournament-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0a0e14 0%, rgba(10, 14, 20, 0.9) 30%, rgba(10, 14, 20, 0.4) 60%, transparent 100%);
  z-index: 1;
}

.tournament-date-box {
  width: 80px;
  height: 90px;
  background: #0a0e14;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto 1.5rem auto 1.5rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.tournament-date-box .month {
  color: #ff3333;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.tournament-date-box .day {
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.tournament-content {
  flex: 1;
  padding: 1rem 1.5rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.tournament-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tournament-info h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.tournament-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tournament-info p {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.prize-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(20, 30, 20, 0.8);
  border: 1px solid #a8e05f;
  color: #a8e05f;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0;
  width: fit-content;
}

.join-event-btn {
  background: #d8edc7;
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.join-event-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(216, 237, 199, 0.6);
}

.register-btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(168, 224, 95, 0.2);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 224, 95, 0.4);
}

.register-btn.full {
  background: var(--panel-border);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
}
.register-btn.full:hover {
  transform: none;
}

/* Personalize & Play Section */
.personalize-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  margin-top: 4rem;
  z-index: 5;
  position: relative;
}

/* Cyber Forge / Customization Entry Card */
.forge-entry-card {
  position: relative;
  background: linear-gradient(135deg, rgba(168, 224, 95, 0.05), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(168, 224, 95, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(168, 224, 95, 0.1), inset 0 0 20px rgba(168, 224, 95, 0.05);
}

.forge-entry-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(168, 224, 95, 0.6);
  box-shadow: 0 15px 40px rgba(168, 224, 95, 0.2), inset 0 0 30px rgba(168, 224, 95, 0.1);
}

.forge-entry-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.forge-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(168, 224, 95, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a8e05f;
  box-shadow: 0 0 20px rgba(168, 224, 95, 0.3), inset 0 0 15px rgba(168, 224, 95, 0.2);
  border: 1px solid rgba(168, 224, 95, 0.5);
  transition: all 0.3s ease;
}

.forge-entry-card:hover .forge-icon-ring {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 30px rgba(168, 224, 95, 0.5), inset 0 0 20px rgba(168, 224, 95, 0.4);
}

.forge-entry-text {
  flex: 1;
}

.forge-entry-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff, #a8e05f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.forge-entry-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 1px;
}

.forge-access-btn {
  background: linear-gradient(90deg, #ccff00, #a8e05f);
  color: #000;
  border: none;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(168, 224, 95, 0.3);
}

.forge-entry-card:hover .forge-access-btn {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(168, 224, 95, 0.5);
}

.forge-entry-glow {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 224, 95, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Arcade Redesign */
.arcade-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(180deg, #12121e, #0a0a10);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 1.2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,0,255,0.05);
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.arcade-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cpath d='M40 80 L120 40 L160 110 L250 60 L320 130 L380 90 M160 110 L100 200 L180 260 L280 220 L320 130' stroke='%234a2377' stroke-width='2' fill='none' /%3E%3Ccircle cx='40' cy='80' r='3' fill='%236a2be2'/%3E%3Ccircle cx='120' cy='40' r='2' fill='%236a2be2'/%3E%3Ccircle cx='160' cy='110' r='3' fill='%238a2be2'/%3E%3Ccircle cx='250' cy='60' r='2' fill='%236a2be2'/%3E%3Ccircle cx='320' cy='130' r='3' fill='%238a2be2'/%3E%3Ccircle cx='380' cy='90' r='2' fill='%236a2be2'/%3E%3Ccircle cx='100' cy='200' r='2' fill='%236a2be2'/%3E%3Ccircle cx='180' cy='260' r='3' fill='%238a2be2'/%3E%3Ccircle cx='280' cy='220' r='2' fill='%236a2be2'/%3E%3Cpath d='M60 240 Q90 210 110 200' stroke='%230055ff' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M100 190 L115 195 L110 210' stroke='%230055ff' stroke-width='5' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M200 140 L215 155 M215 140 L200 155 M207 125 L207 170' stroke='%23ff2a40' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M340 250 L350 260 M350 250 L340 260 M345 240 L345 270 M335 255 L355 255' stroke='%23ccff00' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M300 40 Q310 20 320 40 T340 40' stroke='%2300e5ff' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M80 130 L90 140 M90 130 L80 140' stroke='%23ff00ff' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='50' cy='150' r='2' fill='%23fff' opacity='0.7'/%3E%3Ccircle cx='150' cy='50' r='2' fill='%23fff' opacity='0.7'/%3E%3Ccircle cx='250' cy='180' r='2' fill='%23fff' opacity='0.7'/%3E%3Ccircle cx='350' cy='150' r='2' fill='%23fff' opacity='0.7'/%3E%3Ccircle cx='200' cy='280' r='2' fill='%23fff' opacity='0.7'/%3E%3Ccircle cx='20' cy='280' r='2' fill='%23fff' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E");
}

.arcade-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.arcade-title-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arcade-title-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 1rem;
  margin-right: -0.2rem;
}

.custom-arcade-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.5);
}

.arcade-title-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.arcade-text-highlight {
  color: #ccff00;
  font-style: italic;
  font-weight: 900;
}

.arcade-title-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.view-all-link {
  color: #ccff00;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.view-all-link:hover {
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
  transform: translateX(5px);
}

.arcade-horizontal-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  /* Add padding to allow box-shadow and transform to pop without clipping */
  padding: 1.5rem 1rem;
  margin: -1.5rem -1rem; /* Offset padding so layout aligns */
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
}

.arcade-horizontal-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge */
}

.arcade-game-card {
  width: 180px;
  flex-shrink: 0;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.arcade-game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.3);
}

/* Specific Hover Glows removed */

.game-card-image {
  height: 110px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.game-card-content {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.game-card-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.game-card-xp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f2c76a;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.play-now-neon {
  width: 100%;
  background: #a8e05f;
  color: #000;
  border: none;
  padding: 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(168, 224, 95, 0.4);
}

.play-now-neon:hover {
  background: #bbf07a;
  box-shadow: 0 0 25px rgba(168, 224, 95, 0.8);
  transform: scale(1.05);
}

/* Custom Cursors */
.cursor-crosshair { cursor: crosshair; }
.cursor-crosshair * { cursor: crosshair !important; }
.cursor-neon-dot { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="%23a8e05f" stroke="%23000" stroke-width="2"/></svg>') 8 8, auto; }
.cursor-neon-dot * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="%23a8e05f" stroke="%23000" stroke-width="2"/></svg>') 8 8, auto !important; }
.cursor-gamepad { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff0055" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" y1="12" x2="10" y2="12"></line><line x1="8" y1="10" x2="8" y2="14"></line><line x1="15" y1="13" x2="15.01" y2="13"></line><line x1="18" y1="11" x2="18.01" y2="11"></line><rect x="2" y="6" width="20" height="12" rx="2"></rect></svg>') 12 12, auto; }
.cursor-gamepad * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff0055" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" y1="12" x2="10" y2="12"></line><line x1="8" y1="10" x2="8" y2="14"></line><line x1="15" y1="13" x2="15.01" y2="13"></line><line x1="18" y1="11" x2="18.01" y2="11"></line><rect x="2" y="6" width="20" height="12" rx="2"></rect></svg>') 12 12, auto !important; }
.cursor-sword { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="14.5 17.5 3 6 3 3 6 3 17.5 14.5"></polyline><line x1="13" y1="19" x2="19" y2="13"></line><line x1="16" y1="16" x2="20" y2="20"></line><line x1="19" y1="21" x2="21" y2="19"></line></svg>') 3 3, auto; }
.cursor-sword * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="14.5 17.5 3 6 3 3 6 3 17.5 14.5"></polyline><line x1="13" y1="19" x2="19" y2="13"></line><line x1="16" y1="16" x2="20" y2="20"></line><line x1="19" y1="21" x2="21" y2="19"></line></svg>') 3 3, auto !important; }

/* Custom Scrollbars */
html.scrollbar-neon {
  --sb-width: 12px;
  --sb-track: #061109;
  --sb-thumb: var(--primary);
  --sb-thumb-radius: 6px;
  --sb-thumb-border: 2px solid #061109;
}

html.scrollbar-galaxy {
  --sb-width: 14px;
  --sb-track: #0f0c29;
  --sb-radius: 8px;
  --sb-thumb: #8A2BE2;
  --sb-thumb-radius: 8px;
}

html.scrollbar-cyber {
  --sb-width: 10px;
  --sb-track: #111;
  --sb-border: 1px solid #ff0055;
  --sb-thumb: #00ffff;
  --sb-thumb-radius: 0;
}

html.scrollbar-minimal {
  --sb-width: 4px;
  --sb-track: transparent;
  --sb-thumb: rgba(255,255,255,0.2);
  --sb-thumb-radius: 4px;
}

/* Epic Gamification Sections */
.epic-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
  position: relative;
  z-index: 5;
}

/* 1. Locker Room */
.locker-room-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
}

.avatar-panel, .badges-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.avatar-display {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  background: rgba(0,0,0,0.3);
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.avatar-base {
  position: relative;
  width: 100px;
  height: 140px;
}

.avatar-head {
  width: 60px;
  height: 60px;
  background: #ffcc99;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  transition: all 0.3s ease;
}

.avatar-body {
  width: 80px;
  height: 70px;
  background: var(--primary);
  border-radius: 40px 40px 10px 10px;
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 1;
}

/* Hats */
.hat-cap::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -5px;
  width: 70px;
  height: 35px;
  background: #ff0055;
  border-radius: 35px 35px 0 0;
  z-index: 3;
}
.hat-crown::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 5px;
  width: 50px;
  height: 30px;
  background: gold;
  clip-path: polygon(0 0, 20% 50%, 50% 0, 80% 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* Glasses */
.avatar-eyes {
  position: absolute;
  top: 25px;
  left: 10px;
  width: 40px;
  height: 10px;
  display: flex;
  justify-content: space-between;
}
.avatar-eyes::before, .avatar-eyes::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}
.glasses-shades {
  background: #111;
  border-radius: 5px;
  width: 45px;
  height: 15px;
  top: 22px;
  left: 8px;
  z-index: 4;
}
.glasses-shades::before, .glasses-shades::after { display: none; }

.glasses-vr {
  background: #00ffff;
  border-radius: 8px;
  width: 50px;
  height: 20px;
  top: 20px;
  left: 5px;
  z-index: 4;
  box-shadow: 0 0 10px #00ffff;
}
.glasses-vr::before, .glasses-vr::after { display: none; }

.avatar-mouth {
  position: absolute;
  bottom: 12px;
  left: 20px;
  width: 20px;
  height: 5px;
  background: #c27c65;
  border-radius: 0 0 10px 10px;
}

.avatar-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.control-group span {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.control-buttons {
  display: flex;
  gap: 0.8rem;
}

.control-buttons button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.control-buttons button.active {
  background: rgba(168, 224, 95, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.badge-card.unlocked {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(0,0,0,0.4));
  border-color: rgba(255, 0, 85, 0.3);
}

.badge-card.unlocked .badge-icon {
  color: #ff0055;
  text-shadow: 0 0 10px #ff0055;
}

.badge-card.locked {
  opacity: 0.5;
  filter: grayscale(100%);
}

.badge-icon {
  color: var(--text-muted);
}

.badge-info h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.badge-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 2. Midnight Wheel */
.midnight-wheel-section {
  width: 100%;
}

.wheel-vault {
  background: linear-gradient(180deg, #111, #061109);
  border: 2px solid #222;
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
}

.wheel-vault.unlocked {
  border-color: #00ffff;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.vault-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  z-index: 2;
}

.dev-unlock-btn {
  background: transparent;
  color: #666;
  border: 1px solid #444;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
}
.dev-unlock-btn:hover { color: #fff; border-color: #fff; }

.vault-locked-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  z-index: 2;
}

.lock-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px dashed #444;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinRing 20s linear infinite;
  margin-bottom: 1rem;
}

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

.vault-lock-icon {
  color: #ff0055;
  animation: pulseLock 2s infinite;
}

@keyframes pulseLock {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px #ff0055); }
}

.vault-locked-state h3 { font-size: 2rem; color: #fff; }
.vault-locked-state p { color: var(--text-muted); }

.countdown-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.cd-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-box small {
  font-size: 0.8rem;
  color: #ff0055;
  margin-top: 0.2rem;
}

.vault-unlocked-state {
  padding: 2rem 0;
  z-index: 2;
}

.glowing-wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #ff0055 0deg 90deg, 
    #00ffff 90deg 180deg, 
    var(--primary) 180deg 270deg, 
    #8A2BE2 270deg 360deg
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.4);
  animation: spinWheel 10s linear infinite;
}

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

.spin-wheel {
  width: 280px;
  height: 280px;
  background: #111;
  border-radius: 50%;
  position: relative;
}

.wheel-segment {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  text-align: center;
  padding-top: 20px;
  font-weight: bold;
  color: #fff;
}

.wheel-segment span { display: block; transform: rotate(-45deg); margin-top: 20px; margin-left: 20px;}
.s1 { transform: rotate(45deg); color: #ff0055; }
.s2 { transform: rotate(135deg); color: #00ffff; }
.s3 { transform: rotate(225deg); color: var(--primary); }
.s4 { transform: rotate(315deg); color: #8A2BE2; }

.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 20px #fff;
  cursor: pointer;
  z-index: 10;
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #fff;
  z-index: 10;
}

/* 3. Heatmap */
.heatmap-section {
  width: 100%;
}

.heatmap-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.radar-map {
  background: #020804;
  border: 1px solid #1a3a22;
  border-radius: 1.5rem;
  height: 400px;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(168, 224, 95, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 224, 95, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  margin-top: -400px;
  margin-left: -400px;
  background: conic-gradient(from 0deg, transparent 70deg, rgba(168, 224, 95, 0.2) 90deg, transparent 90deg);
  border-radius: 50%;
  animation: radarSpin 4s linear infinite;
  pointer-events: none;
}

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

.hotspot {
  position: absolute;
}

.h1 { top: 30%; left: 40%; }
.h2 { top: 60%; left: 70%; }
.h3 { top: 75%; left: 25%; }

.pulse {
  width: 20px;
  height: 20px;
  background: #ff0055;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff0055;
  animation: hotspotPulse 2s infinite;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 20px rgba(255, 0, 85, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}

.hotspot-label {
  position: absolute;
  top: 25px;
  left: -30px;
  background: rgba(0,0,0,0.8);
  border: 1px solid #ff0055;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

.trending-venues {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.trending-venues h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trending-item:last-child { border-bottom: none; padding-bottom: 0; }

.rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff0055;
}

.venue-info h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.2rem; }
.venue-info p { color: var(--text-muted); font-size: 0.85rem; }

/* Footer */
.app-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 5;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 4rem;
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-column h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.link-column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-column a:hover {
  color: var(--primary);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-cta h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.download-btn {
  background: var(--panel-bg);
  color: var(--text-main);
  border: 1px solid var(--panel-border);
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: var(--text-main);
  color: #000;
}

/* Gaming footer social links */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .brand-logo {
  margin-bottom: 1rem;
}

.gaming-footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.gaming-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.gaming-social-link:hover {
  color: #06120a;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Gaming app store badges */
.gaming-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.2rem;
  border-radius: 0.8rem;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.gaming-app-badge:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.gaming-app-badge svg {
  flex-shrink: 0;
}

.gaming-app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.gaming-app-badge-top {
  font-size: 0.62rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gaming-app-badge-store {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Vouchers Section */
.vouchers-section {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.voucher-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 2.5rem auto 0;
}

.voucher-showcase {
  width: 100%;
  perspective: 1000px;
}

.voucher-showcase-card {
  background: #111;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: voucherFlip 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.05);
}

@keyframes voucherFlip {
  0% { transform: rotateY(90deg) scale(0.9); opacity: 0; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

.voucher-image-container {
  position: relative;
  width: 100%;
  height: 200px;
}

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

.voucher-showcase-title {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  margin: 0;
  padding: 0 1rem;
}

.voucher-showcase-bottom {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(180deg, #111 0%, #0a0f14 100%);
}

.voucher-showcase-price {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voucher-redeem-btn {
  background: #a8e05f;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.voucher-redeem-btn:hover {
  background: #c6f03f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(168, 224, 95, 0.4);
}

.voucher-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.voucher-arrow:hover {
  background: #a8e05f;
  color: #000;
  border-color: #a8e05f;
  transform: translateY(-50%) scale(1.1);
}

.voucher-arrow.left {
  left: -22px;
}

.voucher-arrow.right {
  right: -22px;
}


/* ===== BrowsePage.css ===== */
.browse-page-container {
  padding: 2rem 5%;
  min-height: 100vh;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header Section */
.browse-header {
  margin-bottom: 3rem;
}

.browse-title-section {
  margin-bottom: 2rem;
}

.browse-title-section h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -1px;
}

.browse-title-section h1 span {
  color: #a8e05f;
  text-shadow: 0 0 20px rgba(168, 224, 95, 0.4);
}

.browse-title-section p {
  color: #888;
  font-size: 1.1rem;
  margin: 0;
  max-width: 600px;
}

/* Search and Controls */
.browse-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.search-bar-wrapper {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  color: #666;
  transition: color 0.3s ease;
}

.venue-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.2rem 1.2rem 3.5rem;
  border-radius: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.venue-search-input:focus {
  outline: none;
  border-color: rgba(168, 224, 95, 0.5);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(168, 224, 95, 0.1);
}

.venue-search-input:focus + .search-icon {
  color: #a8e05f;
}

.filter-btn, .view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover, .view-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.view-toggle-btn.active {
  background: rgba(168, 224, 95, 0.1);
  border-color: rgba(168, 224, 95, 0.5);
  color: #a8e05f;
}

/* Category Pills */
.category-scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.category-pills {
  display: flex;
  gap: 1rem;
  min-width: max-content;
}

.category-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  color: #aaa;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.category-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.category-pill.active {
  background: #a8e05f;
  color: #000;
  border-color: #a8e05f;
  box-shadow: 0 0 15px rgba(168, 224, 95, 0.3);
}

/* Venue Grid */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.venue-card {
  background: linear-gradient(180deg, #12121e, #0a0a10);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 224, 95, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(168, 224, 95, 0.05);
}

.venue-card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.venue-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover .venue-image {
  transform: scale(1.05);
}

.venue-status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.open {
  background: #a8e05f;
  box-shadow: 0 0 8px #a8e05f;
}

.status-dot.closed {
  background: #ff0055;
  box-shadow: 0 0 8px #ff0055;
}

.venue-xp-badge {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: #111;
  border: 1px solid #a8e05f;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  z-index: 2;
}

.venue-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.venue-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 1rem;
}

.venue-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.venue-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
}

.review-count {
  color: #888;
  font-weight: 500;
  font-size: 0.85rem;
}

.venue-meta-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.venue-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #aaa;
  font-size: 0.9rem;
}

.price-item {
  color: #a8e05f;
  font-weight: 700;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.venue-tag {
  background: rgba(255, 255, 255, 0.05);
  color: #bbb;
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.venue-card-actions {
  margin-top: auto;
}

.book-btn-neon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #a8e05f;
  border: 1px solid #a8e05f;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venue-card:hover .book-btn-neon {
  background: #a8e05f;
  color: #000;
  box-shadow: 0 0 20px rgba(168, 224, 95, 0.3);
}

/* Map View Placeholder */
.map-view-placeholder {
  height: 60vh;
  border-radius: 1.5rem;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&q=80&w=1200') center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-view-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.map-glass-panel {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(168, 224, 95, 0.3);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(168, 224, 95, 0.1);
  max-width: 400px;
}

.map-placeholder-icon {
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(168, 224, 95, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.map-glass-panel h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
}

.map-glass-panel p {
  color: #888;
  margin-bottom: 2rem;
}

.return-grid-btn {
  background: #a8e05f;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.return-grid-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(168, 224, 95, 0.4);
}

/* Empty State */
.no-results-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-results-state h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem 0;
}

.no-results-state p {
  color: #888;
  margin-bottom: 1.5rem;
}

.reset-filters-btn {
  background: transparent;
  color: #a8e05f;
  border: 1px solid #a8e05f;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-filters-btn:hover {
  background: rgba(168, 224, 95, 0.1);
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .browse-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .browse-title-section h1 {
    font-size: 2.5rem;
  }
}


/* ===== CyberForge.css ===== */
/* src/CyberForge.css */
.forge-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: forgeFadeIn 0.3s ease;
}

@keyframes forgeFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(15px); }
}

.forge-modal-content {
  background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 0, 85, 0.1), transparent 50%),
              rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 3rem;
  width: 900px;
  max-width: 90vw;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.1), inset 0 0 30px rgba(0, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: forgeScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes forgeScaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.forge-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.forge-close-btn:hover {
  color: #00ffff;
  transform: rotate(90deg) scale(1.2);
}

.forge-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.forge-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.forge-subtitle {
  color: #00ffff;
  opacity: 0.7;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.forge-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
}

.blueprint-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 130px;
}

.blueprint-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.blueprint-card:hover {
  background: rgba(0, 255, 255, 0.05);
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}

.blueprint-card:hover::before {
  left: 200%;
}

.blueprint-card.equipped {
  background: rgba(0, 255, 255, 0.15);
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
}

.blueprint-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.blueprint-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.equipped-badge {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: #00ffff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 1px;
  animation: slideUpBadge 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUpBadge {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}


/* ===== CyberPong.css ===== */
.pong-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pong-modal-overlay.playing,
.pong-modal-overlay.playing * {
  cursor: none !important;
}

.pong-modal-content {
  background: #0a0a0f;
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 0 50px rgba(255, 0, 85, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pong-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pong-close-btn:hover {
  opacity: 1;
  color: #ff0055;
  transform: rotate(90deg);
}

.pong-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.pong-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px #ff0055, 0 0 20px #00ffff;
  letter-spacing: 2px;
}

.pong-scoreboard {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: monospace;
}

.score-player { color: #00ffff; text-shadow: 0 0 10px #00ffff; }
.score-divider { color: #444; }
.score-ai { color: #ff0055; text-shadow: 0 0 10px #ff0055; }

.pong-game-container {
  width: 800px;
  height: 500px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.pong-canvas {
  background: #061109;
  cursor: none;
  border-radius: 1rem;
  border: 1px solid #222;
}

.pong-menu, .pong-gameover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.pong-menu h3 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
}

.pong-menu p {
  color: #ccc;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.pong-difficulty-btns {
  display: flex;
  gap: 1rem;
}

.diff-btn {
  background: transparent;
  border: 2px solid #444;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.diff-btn.easy:hover { border-color: #a8e05f; color: #a8e05f; box-shadow: 0 0 15px rgba(168, 224, 95, 0.4); transform: translateY(-3px); }
.diff-btn.medium:hover { border-color: #00ffff; color: #00ffff; box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); transform: translateY(-3px); }
.diff-btn.hard:hover { border-color: #ff0055; color: #ff0055; box-shadow: 0 0 15px rgba(255, 0, 85, 0.4); transform: translateY(-3px); }

.pong-gameover {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(5px);
}

.win-icon { animation: bounce 2s infinite; }
.lose-icon { animation: shake 0.5s infinite; }

.win-text {
  font-size: 3rem;
  color: #a8e05f;
  text-shadow: 0 0 20px rgba(168, 224, 95, 0.5);
  margin: 1rem 0;
}

.lose-text {
  font-size: 3rem;
  color: #ff0055;
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
  margin: 1rem 0;
}

.reward-box {
  background: rgba(168, 224, 95, 0.1);
  border: 1px solid rgba(168, 224, 95, 0.3);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reward-box p { color: #aaa; font-size: 0.9rem; margin-bottom: 0.5rem; }
.reward-box span { color: #a8e05f; font-size: 1.5rem; font-weight: 900; }

.pong-play-again-btn {
  background: linear-gradient(90deg, #ff0055, #8A2BE2);
  border: none;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.pong-play-again-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}


/* ===== FlappyBird.css ===== */
.flappy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.flappy-game-container {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 50px rgba(0, 243, 255, 0.1), inset 0 0 20px rgba(0, 243, 255, 0.05);
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flappy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.flappy-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00f3ff;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.flappy-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.flappy-close-btn:hover {
  color: #ff0055;
  background: rgba(255, 0, 85, 0.1);
  transform: rotate(90deg);
}

.flappy-canvas-wrapper {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8) inset;
}

.flappy-canvas {
  display: block;
  background-color: #110822;
  cursor: pointer;
}

.flappy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 10;
}

.flappy-overlay h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
}

.flappy-score-display {
  font-size: 1.5rem;
  color: #ccff00;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.flappy-start-btn {
  background: #00f3ff;
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.flappy-start-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===== Leaderboard.css ===== */
.leaderboard-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: modalFadeIn 0.3s ease;
}

.leaderboard-content {
  background: linear-gradient(180deg, #12121e, #0a0a10);
  border: 1px solid rgba(168, 224, 95, 0.3);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 70vh;
  padding: 2rem 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(168, 224, 95, 0.05);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}

.leaderboard-content::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.leaderboard-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  transition: all 0.2s ease;
}

.leaderboard-close-btn:hover {
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}

.leaderboard-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.leaderboard-trophy {
  color: #a8e05f;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(168, 224, 95, 0.4));
}

.leaderboard-header h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

.leaderboard-header h2 span {
  color: #a8e05f;
}

.leaderboard-header p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.leaderboard-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.top-three {
  border-color: rgba(168, 224, 95, 0.2);
  background: linear-gradient(90deg, rgba(168, 224, 95, 0.1), rgba(0,0,0,0));
}

.rank-one {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(0,0,0,0));
}

.rank-two {
  border-color: rgba(192, 192, 192, 0.5);
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.15), rgba(0,0,0,0));
}

.rank-three {
  border-color: rgba(205, 127, 50, 0.5);
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.15), rgba(0,0,0,0));
}

.rank-col {
  width: 40px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-three .rank-col {
  color: #fff;
}

.player-col {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-avatar {
  font-size: 1.5rem;
}

.player-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.xp-col {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a8e05f;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Leaderboard Entry Card */
.leaderboard-entry-card {
  position: relative;
  background: linear-gradient(135deg, rgba(168, 224, 95, 0.05), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(168, 224, 95, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(168, 224, 95, 0.1), inset 0 0 20px rgba(168, 224, 95, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leaderboard-entry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 224, 95, 0.6);
  box-shadow: 0 15px 40px rgba(168, 224, 95, 0.2), inset 0 0 30px rgba(168, 224, 95, 0.1);
}

.leaderboard-entry-text h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-entry-text h2 span {
  color: #a8e05f;
}

.leaderboard-entry-text p {
  color: #888;
  margin: 0;
  font-size: 1rem;
}

.leaderboard-access-btn {
  background: transparent;
  color: #a8e05f;
  border: 2px solid #a8e05f;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(168, 224, 95, 0.2);
}

.leaderboard-entry-card:hover .leaderboard-access-btn {
  background: #a8e05f;
  color: #000;
  box-shadow: 0 0 25px rgba(168, 224, 95, 0.5);
}

.leaderboard-entry-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 224, 95, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}


/* ===== PenaltyShootout.css ===== */
.penalty-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.penalty-game-container {
  background: #0a0e14;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
}

.penalty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.penalty-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.penalty-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.penalty-close-btn:hover {
  background: rgba(255, 0, 85, 0.8);
  transform: rotate(90deg);
}

.penalty-pitch-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  border-radius: 1rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #173d24 0%, #08170c 100%);
  border: 2px solid #2B5845;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
  user-select: none;
}

/* 3D Grass Floor */
.pitch-grass {
  position: absolute;
  bottom: -20%;
  left: -50%;
  width: 200%;
  height: 150%;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.03) 50%, transparent 50%);
  background-size: 120px 100px;
  transform: rotateX(70deg);
  transform-origin: bottom center;
}

/* Penalty Box Lines */
.pitch-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotateX(70deg);
  transform-origin: bottom center;
  width: 50%;
  height: 60%;
  border: 5px solid rgba(255,255,255,0.7);
  border-bottom: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Penalty Spot */
.pitch-spot {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%) rotateX(70deg);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
}

/* Goal Structure */
.goal-structure {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 38%;
  border: 10px solid #e0e0e0;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  box-shadow: 
    0 0 20px rgba(255,255,255,0.4), 
    inset 0 0 20px rgba(255,255,255,0.4),
    5px 5px 15px rgba(0,0,0,0.8);
  z-index: 10;
}

.goal-net {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.3) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.3) 75%, rgba(255,255,255,0.3)),
    linear-gradient(45deg, rgba(255,255,255,0.3) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.3) 75%, rgba(255,255,255,0.3));
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.6;
  z-index: 5;
}

/* Goalkeeper */
.goalkeeper {
  position: absolute;
  top: 30%; /* Inside goal roughly */
  left: 50%;
  width: 70px;
  height: 90px;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gk-head {
  width: 28px;
  height: 28px;
  background: #ffccaa;
  border-radius: 50%;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
}

/* Give GK some cyber glasses */
.gk-head::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 4px;
  right: 4px;
  height: 6px;
  background: #00f3ff;
  border-radius: 3px;
  box-shadow: 0 0 10px #00f3ff;
}

.gk-body {
  width: 50px;
  height: 60px;
  background: linear-gradient(135deg, #ff0055, #990033);
  border-radius: 10px 10px 5px 5px;
  box-shadow: 0 10px 25px rgba(255, 0, 85, 0.6);
  border: 2px solid rgba(255,255,255,0.2);
}

/* Ball */
.ball-wrapper {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translateX(-50%) translateZ(0);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 20;
}

.ball {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #dddddd 40%, #777777);
  box-shadow: 
    -8px 15px 20px rgba(0,0,0,0.6),
    inset -3px -3px 10px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
}

/* Simple ball pattern */
.ball::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 40%;
  height: 40%;
  background: #222;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotate(15deg);
}

/* UI Elements */
.hud {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  z-index: 30;
  text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.score {
  color: #a8e05f;
  text-shadow: 0 0 10px rgba(168, 224, 95, 0.5);
}

.lives {
  color: #ff0055;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.heart {
  display: inline-block;
  margin-left: 5px;
}

.aim-container {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  display: flex;
  align-items: center;
  z-index: 25;
}

.aim-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.aim-cursor {
  position: absolute;
  top: -9px;
  width: 24px;
  height: 24px;
  background: #ccff00;
  border-radius: 50%;
  box-shadow: 0 0 15px #ccff00, inset 0 0 5px rgba(255,255,255,0.8);
  border: 2px solid #fff;
  transform: translateX(-50%);
}

.power-container {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 16px;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  overflow: hidden;
  z-index: 25;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.power-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f3ff, #ccff00, #ff0055);
  width: 0%;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
}

/* Overlays */
.penalty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 40;
}

.penalty-overlay h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-align: center;
}

.penalty-overlay .subtitle {
  font-size: 1.25rem;
  color: #a8e05f;
  margin-bottom: 2rem;
  font-weight: 600;
}

.penalty-btn {
  border: none;
  border-radius: 0.5rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #ccff00;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
  text-transform: uppercase;
}

.penalty-btn:hover {
  transform: scale(1.05);
  background: #d4ff33;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
}

.result-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 900;
  z-index: 35;
  text-shadow: 0 5px 20px rgba(0,0,0,0.8);
  opacity: 0;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}


/* ===== ReactionTest.css ===== */
.reaction-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reaction-modal-content {
  background: #0a0a0f;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  min-height: 500px;
}

.reaction-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reaction-close-btn:hover {
  opacity: 1;
  color: #00ffff;
  transform: rotate(90deg);
}

.reaction-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.reaction-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #a8e05f;
  letter-spacing: 2px;
  text-align: center;
}

.reaction-game-container {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Menu State */
.reaction-menu {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reaction-menu h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.reaction-menu p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 400px;
  line-height: 1.5;
}

.reaction-start-btn {
  background: linear-gradient(90deg, #00ffff, #a8e05f);
  border: none;
  color: #000;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.reaction-start-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(168, 224, 95, 0.7);
}

/* Playing State */
.reaction-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.target-display {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.target-time {
  color: #a8e05f;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(168, 224, 95, 0.5);
}

.timer-display {
  font-size: 5rem;
  font-family: monospace;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 3rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}

.timer-display.glitch {
  animation: timerGlitch 0.2s linear infinite;
  color: #ff0055;
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
}

@keyframes timerGlitch {
  0% { transform: translate(0) skew(0deg); opacity: 1; }
  20% { transform: translate(-5px, 2px) skew(10deg); opacity: 0.8; }
  40% { transform: translate(5px, -2px) skew(-10deg); opacity: 0.9; }
  60% { transform: translate(-2px, 5px) skew(5deg); opacity: 0.5; }
  80% { transform: translate(2px, -5px) skew(-5deg); opacity: 1; }
  100% { transform: translate(0) skew(0deg); opacity: 0.8; }
}

.action-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.1s ease;
  color: #fff;
}

.action-btn.start {
  background: radial-gradient(circle, #00ffff 0%, #008888 100%);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.action-btn.start:active {
  transform: scale(0.95);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.action-btn.stop {
  background: radial-gradient(circle, #ff0055 0%, #880022 100%);
  box-shadow: 0 0 40px rgba(255, 0, 85, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.action-btn.stop:active {
  transform: scale(0.95);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Gameover State */
.reaction-gameover {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.result-rank {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.rank-perfect { color: #a8e05f; text-shadow: 0 0 20px rgba(168, 224, 95, 0.6); }
.rank-great { color: #00ffff; text-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
.rank-good { color: #f5b50a; text-shadow: 0 0 20px rgba(245, 181, 10, 0.6); }
.rank-miss { color: #ff0055; text-shadow: 0 0 20px rgba(255, 0, 85, 0.6); }

.result-stats {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.stat-label {
  color: #aaa;
}

.stat-value {
  color: #fff;
  font-family: monospace;
  font-weight: bold;
}

.reward-box {
  background: rgba(168, 224, 95, 0.1);
  border: 1px solid rgba(168, 224, 95, 0.3);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reward-box p { color: #aaa; font-size: 0.9rem; margin-bottom: 0.5rem; }
.reward-box span { color: #a8e05f; font-size: 1.5rem; font-weight: 900; }


/* ===== SaturdayWheel.css ===== */
.saturday-wheel-container {
  background: #08120b;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}

.wheel-header {
  text-align: center;
  margin-bottom: 2rem;
}

.wheel-header h3 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wheel-header p {
  color: #a8e05f;
  font-size: 1rem;
  font-weight: 600;
}

.wheel-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-outer-ring {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #111;
  border: 12px solid #5a3c10;
  box-shadow: 0 0 20px rgba(0,0,0,0.8), inset 0 0 15px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-outer-ring::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: -12px; bottom: -12px;
  border-radius: 50%;
  border: 4px solid #b8860b;
  pointer-events: none;
}

.wheel-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff, 0 0 15px #ffd700;
  z-index: 5;
}

.wheel-inner {
  position: absolute;
  width: 276px;
  height: 276px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 4s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.wheel-segments {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
}

/* Dividing lines */
.wheel-segments::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -22.5deg,
    transparent 0deg,
    transparent 44.5deg,
    rgba(0,0,0,0.4) 44.5deg,
    rgba(0,0,0,0.4) 45deg
  );
  pointer-events: none;
}

.wheel-text {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.wheel-text span {
  position: absolute;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  white-space: nowrap;
  transform: rotate(-90deg);
  text-transform: uppercase;
}

.spin-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #222 0%, #000 100%);
  border: 4px solid #b8860b;
  border-radius: 50%;
  color: #ffd700;
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  transition: all 0.2s ease;
  outline: none;
}

.spin-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.spin-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.spin-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #ffd700;
  z-index: 30;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.5));
}

.prize-msg, .prize-msg-placeholder {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prize-msg {
  background: #a8e05f;
  color: #000;
  box-shadow: 0 0 15px rgba(168, 224, 95, 0.4);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prize-msg-placeholder {
  background: rgba(255,255,255,0.05);
  color: #888;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.idle-spin {
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin-btn.locked {
  background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
  border-color: #555;
  color: #888;
  box-shadow: none;
  cursor: not-allowed;
}

.wheel-countdown-panel {
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.countdown-label {
  color: #888;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-family: monospace;
}

.time-block small {
  font-size: 0.7rem;
  color: #a8e05f;
  margin-top: -0.2rem;
}

.colon {
  color: #555;
  margin-top: -1rem;
}

.dev-test-btn {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(168, 224, 95, 0.5);
  color: #a8e05f;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.dev-test-btn:hover {
  background: rgba(168, 224, 95, 0.2);
}


/* ===== index.css ===== */
:root {
  --bg-color: #061109;
  --panel-bg: #111a14;
  --panel-border: #1e2e23;
  --primary: #a8e05f;
  --text-main: #ffffff;
  --text-muted: #94a398;
  --gold: #f5b50a;
}

.gaming-section {
  margin-top: -68px;
}

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

body.gaming-active {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: clip;
  min-height: 100vh;
  user-select: none;
  -webkit-user-select: none;
}

input, textarea {
  user-select: auto;
  -webkit-user-select: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: var(--sb-width, 8px);
}
::-webkit-scrollbar-track {
  background: var(--sb-track, var(--bg-color));
  border-radius: var(--sb-radius, 0);
  border-left: var(--sb-border, none);
}
::-webkit-scrollbar-thumb {
  background: var(--sb-thumb, var(--panel-border));
  border-radius: var(--sb-thumb-radius, 4px);
  border: var(--sb-thumb-border, none);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-hover, var(--primary));
}

html {
  scrollbar-color: var(--sb-thumb, var(--panel-border)) var(--sb-track, var(--bg-color));
  scrollbar-width: var(--sb-ff-width, thin);
}


