/* ALLYONOFREEAPPS CYBERPUNK 2026 DASHBOARD STYLES */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #0c0c0e;
  --bg-dark: #121214;
  --bg-panel: #16161a;
  --bg-panel-hover: #1e1e24;
  
  --primary: #e62e43;
  --primary-rgb: 230, 46, 67;
  --primary-glow: rgba(230, 46, 67, 0.35);
  --primary-glow-heavy: rgba(230, 46, 67, 0.6);
  
  --gold: #ffb800;
  --gold-rgb: 255, 184, 0;
  --gold-glow: rgba(255, 184, 0, 0.35);
  
  --silver: #9eafc2;
  --silver-glow: rgba(158, 175, 194, 0.25);
  
  --bronze: #cd7f32;
  --bronze-glow: rgba(205, 127, 50, 0.25);

  --text-main: #f5f6f9;
  --text-muted: #8a8d98;
  
  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
  --border-radius-sm: 8px;
}

/* RESET & CORE GLOBAL THEME */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, var(--bg-color) 100%);
  background-attachment: fixed;
}

/* CUSTOM NEON CRIMSON SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), #9e1424);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--primary-glow);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff4d62, var(--primary));
}

/* SKIP LINK & BASE TAGS */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 10000;
  font-family: var(--font-title);
  font-weight: 700;
  text-decoration: none;
  border-bottom-right-radius: var(--border-radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

button, input {
  font-family: inherit;
}

/* CONTAINERS & UTILS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.gold-accent {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

/* HEADER TICKER / MARQUEE */
.ticker {
  background: #08080a;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.ticker-inner {
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  display: inline-block;
  padding-left: 100%;
  text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.site-header[data-elevate] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* BRAND SIGNAGE */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--bg-dark), #222228);
  border: 1.5px solid rgba(var(--primary-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand:hover .brand-mark {
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
  transform: rotate(5deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-title::after {
  content: 'GO';
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid var(--gold);
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-shadow: none;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* NAVIGATION */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav a:hover, .nav a.is-active {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav a:hover::after, .nav a.is-active::after {
  width: 80%;
}

/* NAV TABS */
.nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}

.nav-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 5px 16px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 17px;
  transition: var(--transition);
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.nav-tab.is-active, .nav-tab:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #b5152a);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow-heavy) !important;
}

.nav-cta::after {
  display: none !important;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.join-pill {
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.join-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  display: inline-block;
}

.join-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-1px);
}

/* MENU BUTTON FOR MOBILE */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-icon {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  display: block;
  position: relative;
  transition: var(--transition);
}

.menu-icon::before, .menu-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--text-main);
  display: block;
  position: absolute;
  transition: var(--transition);
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

.menu-btn[aria-expanded="true"] .menu-icon {
  background: transparent;
}
.menu-btn[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-btn[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.menu-label {
  display: none;
}

/* SUBNAV HORIZONTAL BAR */
.subnav {
  background: #0e0e11;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

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

.subnav-inner {
  display: flex;
  gap: 16px;
  min-width: max-content;
}

.subnav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.subnav-link:hover, .subnav-link.is-active {
  color: #fff;
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
}

/* HERO SECTION */
.hero {
  padding: 32px 0;
}

.hero-banner {
  background: linear-gradient(135deg, #16161a 0%, #0e0e10 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-banner::after {
  content: 'ENCRYPTED_SEED_VER: 0x77A';
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(var(--primary-rgb), 0.4);
}

.hero-logo {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero-logo-mark {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #222228, var(--bg-dark));
  border: 2px solid var(--primary);
  box-shadow: 0 0 25px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  animation: logoGlow 4s infinite ease-in-out;
}

.hero-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 25px var(--primary-glow); border-color: var(--primary); }
  50% { box-shadow: 0 0 35px var(--primary-glow-heavy); border-color: #ff4d62; }
}

.hero-text {
  z-index: 2;
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-domain {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
}

/* GAMBLING ANIMS: PROGRESSIVE JACKPOT WIDGET */
.jackpot-banner {
  background: radial-gradient(circle at center, #2b0b11 0%, #160c0e 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.2), inset 0 0 20px rgba(var(--primary-rgb), 0.2);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

.jackpot-sub-title {
  font-family: var(--font-title);
  font-size: clamp(0.85rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(var(--gold-rgb), 0.5);
  margin-top: 16px;
  margin-bottom: 4px;
}

.jackpot-title {
  font-family: var(--font-title);
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  margin-top: 4px;
}

.jackpot-counter {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(var(--gold-rgb), 0.7), 0 0 5px #fff;
  animation: textScan 0.15s steps(2) infinite alternate;
}

/* GOLDEN COIN SPAWNER CONTAINER */
.coin-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-coin {
  position: absolute;
  bottom: -20px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffe066 0%, #f5b041 70%, #d35400 100%);
  border: 1.5px solid #f39c12;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.8), inset 0 0 4px rgba(255,255,255,0.8);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: coin-float 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes coin-float {
  0% {
    transform: translateY(0) rotateY(0deg) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-140px) rotateY(1080deg) scale(1.1);
    opacity: 0;
  }
}

@keyframes textScan {
  0% { opacity: 0.96; }
  100% { opacity: 1; }
}

/* TRIPLE KPI WIDGETS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.stat {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.5), transparent);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  background: var(--bg-panel-hover);
}

.stat:hover::before {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.stat-kpi {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* LIVE VISITOR PULSE BANNER */
.live-bar {
  background: linear-gradient(90deg, #100f13 0%, #171115 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--border-radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  box-shadow: inset 0 0 15px rgba(var(--primary-rgb), 0.05);
}

.live-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-glow-heavy), 0 0 4px var(--primary);
  animation: pulse 1.6s infinite alternate;
  flex-shrink: 0;
}

.dot::before, .dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 1px solid rgba(230, 46, 67, 0.8);
  border-radius: 50%;
  animation: sonar-ripple-effect 2.2s infinite ease-out;
  pointer-events: none;
  box-sizing: border-box;
}

.dot::after {
  animation-delay: 1.1s;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 6px var(--primary-glow); }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 16px var(--primary-glow-heavy); }
}

@keyframes sonar-ripple-effect {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.live-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.08em;
  color: var(--primary);
}

.live-count {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 10px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-sub {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: var(--text-muted);
  font-weight: 500;
}

/* EDITOR'S CHOICE: EXCLUSIVE TOP 3 CARDS */
.top3-wrap {
  background: linear-gradient(180deg, #131317 0%, #0d0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: clamp(16px, 4vw, 32px);
  margin-bottom: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.top3-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.top3-ico {
  display: flex;
  gap: 4px;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.top3-ico-trophy {
  display: inline-block;
  animation: trophy-bounce 2s infinite ease-in-out;
}

.top3-ico-fire {
  display: inline-block;
  filter: drop-shadow(0 0 6px var(--primary));
  animation: fire-pulse 1.5s infinite alternate;
}

@keyframes trophy-bounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(8deg); }
}

@keyframes fire-pulse {
  0% { transform: scale(0.95); filter: drop-shadow(0 0 2px var(--primary)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 10px var(--primary)); }
}

.top3-title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top3-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.top3-card {
  background: var(--bg-panel);
  border-radius: var(--border-radius);
  padding: 36px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Ribbons for ranks */
.top3-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 2px 10px;
  border-radius: 6px;
  color: #fff;
  z-index: 5;
}

/* GAMBLING OVERLAY: ROTATING BORDER CHASER LIGHTS ON CARD 1 */
.top3-card:nth-child(1) {
  transform: scale(1.04);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.3), 0 15px 35px rgba(0, 0, 0, 0.5);
  border: none;
}

.top3-card:nth-child(1)::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 65%, var(--gold) 85%, var(--primary) 100%);
  animation: border-chaser 4s linear infinite;
  z-index: 1;
  pointer-events: none;
}

/* Card inner background mask block */
.top3-card:nth-child(1)::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  right: 2.5px;
  bottom: 2.5px;
  background: #141318;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

/* Force elements above absolute background overlays */
.top3-card:nth-child(1) > * {
  position: relative;
  z-index: 3;
}

@keyframes border-chaser {
  100% { transform: rotate(360deg); }
}

.top3-card:nth-child(1) .top3-ribbon {
  position: absolute;
  z-index: 4;
  background: linear-gradient(135deg, var(--gold), #c99300);
  box-shadow: 0 0 10px var(--gold-glow);
}

.top3-card:nth-child(2) {
  border: 1.5px solid var(--silver);
  box-shadow: 0 0 15px var(--silver-glow);
}

.top3-card:nth-child(2) .top3-ribbon {
  background: linear-gradient(135deg, var(--silver), #6a7c91);
  box-shadow: 0 0 8px var(--silver-glow);
}

.top3-card:nth-child(3) {
  border: 1.5px solid var(--bronze);
  box-shadow: 0 0 15px var(--bronze-glow);
}

.top3-card:nth-child(3) .top3-ribbon {
  background: linear-gradient(135deg, var(--bronze), #99551c);
  box-shadow: 0 0 8px var(--bronze-glow);
}

.top3-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.top3-card:nth-child(1):hover {
  transform: translateY(-6px) scale(1.06);
}

.top3-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  flex-grow: 1;
}

.top3-app-ico {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* Spin coin on hover card */
.top3-card:hover .top3-app-ico {
  transform: rotateY(360deg);
}

.top3-card:nth-child(1) .top3-app-ico {
  border-color: rgba(var(--gold-rgb), 0.4);
  box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.15);
}

.top3-app-name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.top3-app-bonus {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Premium Download Button */
.download-btn {
  display: inline-block;
  width: 100%;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--primary), #b5152a);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px var(--primary-glow);
  transition: var(--transition);
  cursor: pointer;
  clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 8% 100%, 0 70%);
}

.top3-card:nth-child(1) .download-btn {
  background: linear-gradient(135deg, var(--gold), #bd8800);
  color: #121214;
  font-weight: 800;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 15px var(--gold-glow);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--primary-glow-heavy);
  filter: brightness(1.1);
}

.top3-card:nth-child(1) .download-btn:hover {
  box-shadow: 0 8px 22px rgba(255, 184, 0, 0.6);
}



/* SEARCH SYSTEM */
.hero-search, .search {
  display: block;
  width: 100%;
}

.search {
  position: relative;
  margin-bottom: 24px;
}

.search-ico {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.search-ico svg {
  width: 20px;
  height: 20px;
}

.search input[type="search"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 16px 20px 16px 54px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: var(--transition);
  outline: none;
}

.search input[type="search"]:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* DIRECTORY & GRID SECTION */
.directory-section {
  padding-bottom: 64px;
}

.directory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.directory-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.directory-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  display: inline-block;
}

/* GRID CONTAINER LOADING STATE */
.app-list-wrapper {
  min-height: 300px;
  position: relative;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Loading Preloader card style */
.preloader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  border-radius: var(--border-radius);
  background: var(--bg-panel);
  border: 1px dashed rgba(var(--primary-rgb), 0.3);
  text-align: center;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 20px;
  box-shadow: 0 0 15px var(--primary-glow);
}

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

.preloader-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}

/* DYNAMIC APP CARDS */
.app-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.app-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--primary-rgb), 0.05);
  background: var(--bg-panel-hover);
}

/* Card layout inner components */
.app-card-top {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.app-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.app-card:hover .app-card-icon {
  transform: rotateY(180deg);
}

.app-card-icon.teal { border-color: rgba(0, 180, 216, 0.4); color: #00b4d8; }
.app-card-icon.gold { border-color: rgba(255, 184, 0, 0.4); color: var(--gold); }
.app-card-icon.green { border-color: rgba(40, 167, 69, 0.4); color: #28a745; }
.app-card-icon.purple { border-color: rgba(111, 66, 193, 0.4); color: #6f42c1; }
.app-card-icon.dark { border-color: rgba(108, 117, 125, 0.4); color: #6c757d; }

.app-card-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-card-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.app-card-bonus {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.app-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.app-badge-new {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px var(--primary-glow);
}

.app-card-btn {
  flex-grow: 1;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: #fff;
  transition: var(--transition);
}

.app-card:hover .app-card-btn {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

/* ABOUT US SECTION INFO-CARD GRID */
.about-section {
  padding: 60px 0;
}

.about-hero {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.about-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.about-hero p {
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-sheet {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-block {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  padding: clamp(16px, 4vw, 32px);
}

.about-block-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.about-icon {
  width: 32px;
  height: 32px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.about-icon.star {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-text strong {
  color: #fff;
}

/* ABOUT KPIS GRID */
.about-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-kpi {
  background: linear-gradient(135deg, #101013 0%, #15151b 100%);
  border: 1.5px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-kpi-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-kpi-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* WHY US CARD GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.why-ico {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-top: 28px;
}

/* DISCLAIMER EXPANDING ACCORDION */
.legal-section {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.legal-section h2 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition);
}

.legal-section h2:hover {
  background: rgba(255, 255, 255, 0.03);
}

.legal-section h2::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 400;
  margin-left: 10px;
}

.legal-section.is-expanded h2::after {
  content: '-';
  transform: rotate(180deg);
}

.legal-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-section.is-expanded .legal-content {
  max-height: 500px;
  padding-bottom: 24px;
}

.legal-h-ico {
  margin-right: 12px;
}

/* LEGAL WARNING BOX */
.legal-alert {
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.legal-alert-ico {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.legal-alert-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-main);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 32px;
  font-weight: 500;
}

/* GAME PAGE / GAME INSTALL SECTION */
.game {
  padding: 48px 0;
}

.game-card {
  background: linear-gradient(180deg, #18181c 0%, #101013 100%);
  border: 1.5px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--primary-rgb), 0.05);
  margin-bottom: 48px;
}

.game-app {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: center;
}

.game-app-icon {
  width: clamp(72px, 12vw, 96px);
  height: clamp(72px, 12vw, 96px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.game-app-meta {
  display: flex;
  flex-direction: column;
}

.game-app-name {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.game-app-bonus {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.game-app-verified {
  font-size: 0.85rem;
  font-weight: 700;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-verified-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Installation buttons on game details page */
.game-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-btn {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.game-btn-primary {
  background: linear-gradient(135deg, var(--primary), #b5152a);
  color: #fff;
  box-shadow: 0 10px 25px var(--primary-glow);
  border-color: rgba(255, 255, 255, 0.15);
  clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
}

.game-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--primary-glow-heavy);
  filter: brightness(1.1);
}

.game-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
}

.game-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.game-btn-ico svg {
  width: 20px;
  height: 20px;
}

.game-section-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  display: inline-block;
}

/* Dynamic Trending Rankings List */
.game-trending {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.trending-row {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.trending-row:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  background: var(--bg-panel-hover);
  transform: translateX(4px);
}

.trending-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trending-rank {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  width: 28px;
  color: var(--text-muted);
}

.trending-rank.gold-accent {
  color: var(--gold);
}

.trending-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--primary);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.trending-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.trending-name-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trending-bonus-mobile {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
}

.trending-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trending-bonus {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.trending-btn {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1.5px solid var(--primary);
  color: #fff;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.trending-row:hover .trending-btn {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* GAME FOOTER NOTICE CARD */
.game-footer-card {
  background: #0e0e11;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: clamp(20px, 4vw, 32px);
  margin-bottom: 48px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.game-footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.game-footer-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}

.game-footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.game-footer-links a:hover {
  color: #fff;
}

.game-footer-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.game-footer-chip {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  transition: var(--transition);
}

.game-footer-chip:hover {
  color: #fff;
  border-color: rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.08);
}

.game-notice {
  background: rgba(255, 255, 255, 0.01);
  border-left: 2px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.game-notice-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.game-notice-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.game-notice-text strong {
  color: #fff;
}

.game-blocklist {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* GAMBLING SLOTS TOAST NOTIFICATION FLOATER (WINNER FEEDS) */
.winner-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #1c1517 0%, #121214 100%);
  border: 1px solid var(--primary);
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(var(--primary-rgb), 0.2);
  border-radius: var(--border-radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000005;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  max-width: 320px;
}

.winner-toast.is-active {
  transform: translateY(0);
  opacity: 1;
}

.winner-toast-ico {
  font-size: 1.5rem;
  animation: spin-wheel 2s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

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

.winner-toast-info {
  display: flex;
  flex-direction: column;
}

.winner-toast-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winner-toast-desc {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.3;
}

.winner-toast-desc strong {
  color: #fff;
}

/* METALLIC FOOTER LAYOUT */
.site-footer {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-links a:hover {
  color: #fff;
}

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

.footer-copy {
  font-size: 0.85rem;
  font-weight: 500;
}

/* FLOATING STICKY TELEGRAM ACTION BUBBLE */
.telegram-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00a2ff 0%, #0066aa 70%, #004488 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 24px rgba(0, 136, 204, 0.4),
    inset 0 4px 12px rgba(255, 255, 255, 0.3),
    inset 0 -4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float-bubble 3.5s ease-in-out infinite alternate;
}

/* Pulsing Sonar Wave Rings */
.telegram-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px solid #00a2ff;
  box-shadow: 0 0 12px #00a2ff;
  pointer-events: none;
  animation: telegram-sonar 2s infinite ease-out;
  opacity: 0;
  z-index: -1;
}

@keyframes telegram-sonar {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.telegram-bubble svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.telegram-bubble:hover {
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 12px 30px rgba(0, 162, 255, 0.6),
    inset 0 4px 12px rgba(255, 255, 255, 0.4),
    inset 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.telegram-bubble:hover svg {
  transform: translate(4px, -4px) rotate(15deg) scale(1.1);
}

@keyframes float-bubble {
  0% {
    bottom: 24px;
  }
  100% {
    bottom: 34px;
  }
}

/* MOBILE RESPONSIVE ADAPTATIONS */
@media (max-width: 992px) {
  .top3-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top3-card:nth-child(1) {
    transform: none;
  }
  .top3-card:nth-child(1):hover {
    transform: translateY(-6px);
  }
  
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .stat {
    padding: 12px 6px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-kpis {
    grid-template-columns: 1fr;
  }
  
  .game-actions {
    grid-template-columns: 1fr;
  }
  

}

@media (max-width: 768px) {
  .site-header {
    z-index: 99999;
  }

  .menu-btn {
    display: block;
    z-index: 100000;
  }
  
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.35);
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.8),
      inset 0 1px 0 rgba(255,255,255,0.05);
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 12px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    z-index: 99998;
  }
  
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-tabs {
    width: 100%;
    max-width: 280px;
    margin: 8px auto 0 auto;
    justify-content: center;
  }
  
  .nav a {
    width: max-content;
    text-align: center;
    padding: 6px 16px;
    font-size: 1.05rem;
  }
  
  .nav-cta {
    width: 100%;
    max-width: 280px;
    margin: 8px auto 0 auto;
    text-align: center;
  }

  /* MOB HEADER REFINEMENTS */
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  
  .join-pill {
    padding: 5px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    gap: 4px;
  }
  
  .join-pill::before {
    width: 4px;
    height: 4px;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  /* MOB RESPONSIVE REFINEMENTS FOR HERO */
  .hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .hero-logo-mark {
    width: 70px;
    height: 70px;
  }
  
  .hero-logo-mark svg {
    width: 60px;
    height: 60px;
  }
  
  .hero-text h1 {
    font-size: 1.9rem;
  }
  
  /* MOB PROGRESSIVE JACKPOT COUNTER REFINEMENTS */
  .jackpot-banner {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  
  .jackpot-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .jackpot-counter {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
  }
  
  /* MOB STATS ROW COMPACT ROW */
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .stat {
    padding: 12px 6px;
    border-radius: 8px;
  }
  
  .stat-kpi {
    font-size: clamp(0.95rem, 3.5vw, 1.25rem);
    margin-bottom: 2px;
  }
  
  .stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  /* MOB LIVE PULSE BANNER COMPACT REFINEMENTS */
  .live-bar {
    padding: 12px 16px;
    margin-bottom: 24px;
    gap: 10px;
  }
  
  .live-title {
    font-size: 0.85rem;
  }
  
  .live-count {
    font-size: 1.15rem;
    padding: 2px 8px;
  }
  
  .live-sub {
    font-size: 0.75rem;
  }

  /* MOB EDITOR'S CHOICE TOP 3 REFINEMENTS - CAROUSEL MODE */
  .top3-wrap {
    padding: 20px 16px;
    margin-bottom: 24px;
    overflow: hidden;
  }
  
  .top3-head {
    margin-bottom: 16px;
    gap: 12px;
  }
  
  .top3-title {
    font-size: 1.3rem;
  }
  
  .top3-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 4px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  
  .top3-grid::-webkit-scrollbar {
    display: none;
  }
  
  .top3-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 24px 16px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
  }
  
  .top3-card:nth-child(1) {
    transform: none !important;
  }
  .top3-card:nth-child(1):hover {
    transform: translateY(-2px) !important;
  }
  
  .top3-app {
    margin-bottom: 16px;
    flex-direction: row; /* Horizontal alignment inside carousel cards */
    align-items: center;
    text-align: left;
    width: 100%;
    gap: 14px;
    flex-grow: 1;
  }
  
  .top3-app-ico {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  
  .top3-app-name {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  
  .top3-app-bonus {
    font-size: 0.85rem;
  }
  
  .download-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
    clip-path: none;
    display: inline-block;
  }
  
  .top3-ribbon {
    top: 8px;
    right: 8px;
    left: auto;
    font-size: 0.8rem;
    padding: 1px 6px;
  }

  /* MOB SEARCH REFINEMENTS */
  .search input[type="search"] {
    padding: 12px 16px 12px 46px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  
  .search-ico {
    left: 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* MOB TRENDING RANKINGS REFINEMENTS */
  .trending-row {
    padding: 10px 14px;
  }
  .trending-left {
    gap: 10px;
    flex-grow: 1;
    min-width: 0;
  }
  .trending-name {
    font-size: 1.05rem;
  }
  .trending-icon {
    width: 36px;
    height: 36px;
  }
  .trending-rank {
    width: 22px;
    font-size: 1.15rem;
  }
  .trending-bonus {
    display: none;
  }
  .trending-bonus-mobile {
    display: block;
  }
  .trending-btn {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  .trending-right {
    gap: 10px;
  }

  /* MOB GAME FOOTER AND SITE FOOTER NAVIGATION REFINEMENTS */
  .game-footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .game-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
  .game-footer-links a {
    white-space: nowrap;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
  .footer-links a {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .game-app {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .game-app-verified {
    justify-content: center;
  }
  
  /* PREVENT OVERLAP WITH TELEGRAM BUBBLE ON MOBILE */
  .winner-toast {
    left: 16px;
    right: 16px;
    bottom: 92px; /* Positioned safely above floating bubble */
    max-width: none;
    padding: 10px 14px;
    gap: 10px;
  }
  
  .winner-toast-ico {
    font-size: 1.25rem;
  }
  
  .winner-toast-title {
    font-size: 0.85rem;
  }
  
  .winner-toast-desc {
    font-size: 0.75rem;
    line-height: 1.3;
  }


}

/* Extra small mobile layout polish */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  
  .hero-banner {
    padding: 20px 12px;
  }
  
  .jackpot-banner {
    padding: 16px 12px;
  }
  
  .stat {
    padding: 10px 4px;
  }
  
  .stat-kpi {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.52rem;
  }
  
  .about-block {
    padding: 16px 12px;
  }
  

}

/* AMBIENT GLOWING CASINO/GAMBLING BACKGROUND ANIMATION */
.ambient-particle {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  animation: float-up-ambient linear forwards;
  user-select: none;
  font-family: Arial, sans-serif;
  line-height: 1;
}

@keyframes float-up-ambient {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.7);
    opacity: 0;
  }
  15% {
    opacity: 0.45;
  }
  85% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(-105vh) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* HIGH-TECH LASER SHINE SWEEP FOR PREMIUM BUTTONS */
.download-btn, .app-card-btn, .game-btn, .trending-btn, .join-pill {
  position: relative;
  overflow: hidden;
}

.download-btn::before, .app-card-btn::before, .game-btn::before, .trending-btn::before, .join-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 1;
}

.download-btn:hover::before, .app-card-btn:hover::before, .game-btn:hover::before, .trending-btn:hover::before, .join-pill:hover::before {
  left: 150%;
  transition: left 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* PROGRESSIVE JACKPOT DYNAMIC INCREMENT FLASH */
.jackpot-counter.flash-glow {
  animation: jackpot-pulse-glow 0.4s ease-out;
}

@keyframes jackpot-pulse-glow {
  0% {
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 184, 0, 1), 0 0 40px rgba(255, 184, 0, 0.7);
    transform: scale(1.025);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    transform: scale(1);
  }
}

/* PREMIUM AMBIENT CYBER NEBULA & GRID BACKGROUND SYSTEM */
body {
  position: relative;
  background-color: #0b0a0d !important;
  isolation: isolate;
}

/* Background Cyber Grid Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.007) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  pointer-events: none;
  z-index: -2;
  animation: grid-scroll-anim 28s linear infinite;
}

@keyframes grid-scroll-anim {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}

/* Animated Floating Liquid Nebula Blobs */
.nebula-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -3; /* behind the grid */
  overflow: hidden;
  background: #0b0a0d;
}

.nebula-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: blob-float-anim 24s infinite alternate ease-in-out;
  pointer-events: none;
}

.blob-red {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #e62e43 0%, rgba(230, 46, 67, 0) 70%);
  top: -10%;
  left: -10%;
  animation-duration: 22s;
}

.blob-gold {
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, #ffb800 0%, rgba(255, 184, 0, 0) 70%);
  bottom: -20%;
  right: -10%;
  animation-duration: 28s;
  animation-delay: -4s;
}

.blob-cyan {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #00f0ff 0%, rgba(0, 240, 255, 0) 70%);
  top: 35%;
  left: 45%;
  animation-duration: 25s;
  animation-delay: -8s;
}

@keyframes blob-float-anim {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(8vw, 6vh) scale(1.15) rotate(120deg);
  }
  66% {
    transform: translate(-4vw, 12vh) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

/* EXTRACTED STYLE DECLARATIONS FROM INDEX.HTML */
html,body{scroll-behavior:smooth;-webkit-overflow-scrolling:touch}body{scroll-behavior:smooth;-webkit-overflow-scrolling:touch}.app-card,.top3-card{will-change:transform;contain:layout style;box-shadow:none!important;border:1px solid rgba(255,255,255,0.06)!important;transition:transform .2s ease-out!important}.app-card:hover,.top3-card:hover{transform:translateY(-2px)!important;box-shadow:none!important;border-color:rgba(230,46,67,0.35)!important}.app-card-icon,.top3-app-ico{box-shadow:none!important;border:1px solid rgba(255,255,255,0.08)!important}.matrix-link{color:var(--text-muted)!important;text-decoration:none;transition:color .2s ease}.matrix-link:hover{color:#fff!important}.app-card-rating{color:var(--gold);font-size:.75rem;margin-top:5px;display:flex;align-items:center;gap:4px;font-family:var(--font-body)}.app-card-rating .rating-star{color:var(--gold)}.app-card-rating .review-count{color:var(--text-muted);margin-left:2px}.status-badge{display:inline-flex;align-items:center;gap:3px;font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;padding:2px 5px;border-radius:3px;font-family:var(--font-title);margin-left:auto;flex-shrink:0}.status-badge.pulse-green{color:#00ff66;background:rgba(0,255,102,.03);border:1px solid rgba(0,255,102,.15);animation:pulse-green 2s infinite ease-in-out}.status-badge.pulse-gold{color:var(--gold);background:rgba(255,184,0,.03);border:1px solid rgba(255,184,0,.15);animation:pulse-gold 2s infinite ease-in-out}@keyframes pulse-green{0%,100%{border-color:rgba(0,255,102,.15)}50%{border-color:rgba(0,255,102,.4)}}@keyframes pulse-gold{0%,100%{border-color:rgba(255,184,0,.15)}50%{border-color:rgba(255,184,0,.4)}}.app-card-mirror-btn{flex:1;text-align:center;font-family:var(--font-title);font-weight:700;font-size:.72rem;padding:5px 6px;background:rgba(255,255,255,.01);border:1px dashed rgba(255,255,255,.08);border-radius:var(--border-radius-sm);color:var(--text-muted);text-decoration:none;transition:var(--transition)}.app-card-mirror-btn:hover{background:rgba(0,240,255,.03);border-color:var(--primary);color:#fff}.top3-app-info{display:flex;flex-direction:column;align-items:center;text-align:center;flex-grow:1;width:100%}@media (max-width:768px){.top3-app-info{align-items:flex-start;text-align:left}.top3-app-info .app-card-rating{font-size:.68rem;gap:2px}.top3-app-info .app-card-rating .review-count{display:none}.nebula-blob{display:none!important}body::after{animation:none!important}.hero-logo-mark{animation:none!important;box-shadow:none!important;border-color:var(--primary)!important}.winner-toast{box-shadow:none!important;border:1px solid var(--primary)!important}}.seo-article-card h2,.seo-article-card h2 span{color:#00f0ff!important}.seo-article-card h3,.seo-article-card h3 span{color:#00f0ff!important}.seo-article-card p,.seo-article-card p strong{color:#babcbf!important;line-height:1.5!important}.seo-article-card ul li,.seo-article-card ul li strong{color:#babcbf!important;line-height:1.5!important}


/* GPU-ACCELERATED STATIC PARTICLE CONTAINER STYLES */
.ambient-particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient-particle-static {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: Arial, sans-serif;
  line-height: 1;
  will-change: transform, opacity;
  transform: translate3d(0, 110vh, 0);
  animation: float-up-static linear infinite;
}

@keyframes float-up-static {
  0% {
    transform: translate3d(0, 110vh, 0) rotate(0deg) scale(0.7);
    opacity: 0;
  }
  10% {
    opacity: 0.45;
  }
  90% {
    opacity: 0.45;
  }
  100% {
    transform: translate3d(0, -20vh, 0) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* GPU-ACCELERATED STATIC COIN CONTAINER STYLES */
.coin-container-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.floating-coin-static {
  position: absolute;
  bottom: -20px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffe066 0%, #f5b041 70%, #d35400 100%);
  border: 1.5px solid #f39c12;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.8), inset 0 0 4px rgba(255,255,255,0.8);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(0.6);
  animation: coin-float-static cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes coin-float-static {
  0% {
    transform: translate3d(0, 0, 0) rotateY(0deg) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -150px, 0) rotateY(1080deg) scale(1.1);
    opacity: 0;
  }
}

