:root {
  color-scheme: dark;
  --bg: #0a1020;
  --bg-soft: #111a2b;
  --bg-card: #162338;
  --text: #e9f1ff;
  --muted: #9fb2d6;
  --accent: #4cc9f0;
  --accent-deep: #2b90ff;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(3, 8, 20, 0.55);
  --radius: 16px;
  --hero-image: url("assets/hero.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Rajdhani", "Oswald", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.site {
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.6), rgba(5, 10, 20, 0.88)),
    var(--hero-image) center / cover fixed no-repeat;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(6, 13, 25, 0.76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.glass {
  background: rgba(10, 19, 36, 0.8);
  border-radius: 14px;
  padding: 8px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

.logo-img {
  height: 36px;
  display: block;
}

.brand-text {
  display: none;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--white);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #07111d;
  box-shadow: 0 10px 30px rgba(43, 144, 255, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(43, 144, 255, 0.4);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn.small {
  padding: 10px 20px;
  font-size: 13px;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 26px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: border 0.2s ease, color 0.2s ease;
}

.ghost-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  min-height: 90vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.16), rgba(5, 10, 20, 0.84)),
    radial-gradient(circle at 15% 30%, rgba(76, 201, 240, 0.18), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(43, 144, 255, 0.24), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(113, 165, 255, 0.18), transparent 50%),
    var(--hero-image);
  background-size: cover, cover, cover, cover, cover;
  background-position: center, center, center, center, center;
  background-repeat: no-repeat;
}

.hero-ray {
  position: absolute;
  top: 0;
  left: -15%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, rgba(76, 201, 240, 0.16), transparent 60%);
  transform: skewX(-12deg);
}

.hero-ray.right {
  left: auto;
  right: -20%;
  background: linear-gradient(240deg, rgba(43, 144, 255, 0.24), transparent 60%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 12, 24, 0.08), rgba(5, 9, 18, 0.9));
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.hero-tag .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(76, 201, 240, 0.8);
}

.hero h1 {
  margin: 16px 0 16px;
  font-size: clamp(44px, 7vw, 96px);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-download {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-btn {
  background: linear-gradient(135deg, #ffc44c, #f39100);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(246, 168, 0, 0.25);
}

.download-note {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.download-badge {
  background: rgba(246, 168, 0, 0.2);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-right {
  display: grid;
  place-items: center;
}

.launcher-frame {
  position: relative;
  padding: 30px;
}

.launcher-card {
  width: min(420px, 80vw);
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb23c, #f07a00);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(246, 168, 0, 0.35);
  min-height: 220px;
}

.launcher-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #1c1c1f, #0a0a0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.launcher-orb {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffc45e, #ff8b00);
  box-shadow: 0 0 20px rgba(246, 168, 0, 0.7);
}

.orb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 90, 0.9), rgba(255, 130, 0, 0.2));
  filter: blur(0.4px);
  opacity: 0.6;
}

.orb-1 {
  left: 6%;
  bottom: 14%;
}

.orb-2 {
  right: 10%;
  top: 18%;
}

.hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.stat {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--muted);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  margin-top: 6px;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: var(--muted);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

.section {
  padding: 90px 0;
  scroll-margin-top: 90px;
  position: relative;
}

.page {
  padding-top: 90px;
}

.section-dark {
  background: rgba(5, 11, 22, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.section-light {
  background: rgba(235, 244, 255, 0.9);
  color: #151515;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  margin-bottom: 40px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.06em;
}

.section-title span {
  color: var(--muted);
  font-size: 22px;
  letter-spacing: 0.2em;
}

.section-title.light span {
  color: #8f8f8f;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.news-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.media {
  height: 140px;
  border-radius: 12px;
}

.media-orange {
  background: linear-gradient(135deg, #ff6a00, #351f0b);
}

.media-red {
  background: linear-gradient(135deg, #f0003d, #2d0f16);
}

.media-blue {
  background: linear-gradient(135deg, #2b8cff, #0b1225);
}

.media-light {
  background: linear-gradient(135deg, #f2f2f2, #b8b8b8);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
}

.forum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.forum-card h3 {
  margin-top: 0;
}

.forum-card p {
  color: var(--muted);
}

.forbes-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.podium-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 26px 20px;
  text-align: center;
  position: relative;
}

.podium-card.first {
  transform: translateY(-10px);
  border: 1px solid rgba(246, 168, 0, 0.4);
}

.rank {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--accent);
}

.avatar {
  width: 120px;
  height: 170px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: end center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.4));
}

.avatar::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.avatar::after {
  content: "";
  position: absolute;
  bottom: 16px;
  width: 84px;
  height: 76px;
  border-radius: 42px 42px 18px 18px;
  background: rgba(255, 255, 255, 0.18);
}

.avatar-gold {
  background: linear-gradient(160deg, rgba(246, 168, 0, 0.35), rgba(14, 16, 24, 0.85));
  border: 2px solid rgba(246, 168, 0, 0.5);
}

.avatar-silver {
  background: linear-gradient(160deg, rgba(170, 188, 210, 0.32), rgba(14, 16, 24, 0.85));
  border: 2px solid rgba(160, 180, 200, 0.5);
}

.avatar-bronze {
  background: linear-gradient(160deg, rgba(196, 127, 85, 0.34), rgba(14, 16, 24, 0.85));
  border: 2px solid rgba(187, 120, 75, 0.5);
}

.podium-card h4 {
  margin: 10px 0 6px;
}

.podium-card p {
  margin: 0;
  color: var(--muted);
}

.forbes-list {
  display: grid;
  gap: 10px;
}

.forbes-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 120px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.forbes-row .name {
  color: var(--white);
}

.forbes-row .sum {
  color: var(--white);
  text-align: right;
}

.shop-hero {
  background: #fff;
  color: #151515;
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 50px;
}

.shop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.shop-top p {
  margin: 8px 0 0;
  color: #5f5f5f;
}

.shop-hero h2 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  font-size: 36px;
}

.shop-hero h3 {
  margin: 10px 0;
  font-size: 28px;
  color: var(--accent-deep);
}

.shop-hero p {
  color: #666;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 50px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
  margin: 12px 0 6px;
}

.feature-card p {
  margin: 0;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-deep);
  border: 2px solid rgba(246, 168, 0, 0.4);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.shop-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.shop-image {
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d7d7d7, #f6f6f6);
}

.grayscale {
  filter: grayscale(1);
}

.money-1 {
  background: linear-gradient(135deg, #b4b4b4, #f2f2f2);
}

.money-2 {
  background: linear-gradient(135deg, #a0a0a0, #ececec);
}

.money-3 {
  background: linear-gradient(135deg, #8f8f8f, #e1e1e1);
}

.money-4 {
  background: linear-gradient(135deg, #7f7f7f, #d4d4d4);
}

.shop-info h4 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.shop-info p {
  margin: 4px 0 0;
  color: #6b6b6b;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.transport-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 14px;
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.transport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #121212;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.transport-media {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d9d9d9, #f2f2f2);
}

.media-car-1 {
  background: linear-gradient(135deg, #8c8c8c, #efefef);
}

.media-car-2 {
  background: linear-gradient(135deg, #9c9c9c, #f7f7f7);
}

.media-car-3 {
  background: linear-gradient(135deg, #7e7e7e, #e6e6e6);
}

.media-car-4 {
  background: linear-gradient(135deg, #6e6e6e, #dfdfdf);
}

.transport-info h4 {
  margin: 0;
  color: #6a6a6a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.transport-info h3 {
  margin: 6px 0;
}

.transport-info p {
  margin: 0 0 10px;
  color: #7a7a7a;
}

.roulette-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.roulette-info h3 {
  margin-top: 0;
}

.roulette-info p {
  color: var(--muted);
}

.roulette-wheel {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto;
  background: conic-gradient(
    var(--accent) 0deg,
    #1d1d1f 60deg,
    #2a2a2c 120deg,
    var(--accent-deep) 180deg,
    #1d1d1f 240deg,
    #2a2a2c 300deg,
    var(--accent) 360deg
  );
  border: 10px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.roulette-wheel::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: #0f0f10;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.login-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.login-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.login-card.light {
  background: #f2f2f2;
  color: #1a1a1a;
}

.login-card.light .field input {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.login-card {
  width: min(420px, 90vw);
  background: var(--bg-card);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.login-card h2 {
  margin-top: 0;
}

.login-card p {
  color: var(--muted);
}

.field {
  display: grid;
  text-align: left;
  gap: 6px;
  margin: 16px 0;
  font-size: 14px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2b2c30;
  color: var(--white);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.bot-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 6px;
  font-size: 14px;
  color: var(--muted);
}

.bot-check input {
  width: 16px;
  height: 16px;
}

.form-note {
  min-height: 18px;
  font-size: 13px;
  color: #f6a800;
  margin-bottom: 8px;
}

.ghost-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.ghost-link.danger {
  color: #ff4c4c;
  margin-top: 0;
}

.site-footer {
  background: rgba(6, 12, 24, 0.88);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.chat-pill {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: rgba(10, 20, 37, 0.92);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  font-size: 14px;
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(10, 10, 10, 0.95);
  }
}

@supports not (aspect-ratio: 1) {
  .launcher-card {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.socials-section {
  padding-top: 40px;
}

.socials-card {
  background: #1a1a1c;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.social-pill {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.nav-link:focus-visible,
.cta-btn:focus-visible,
.ghost-btn:focus-visible,
.download-btn:focus-visible,
.social-pill:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.social-pill.tg {
  background: #1f8fff;
}

.social-pill.vk {
  background: #4c76a1;
}

.social-pill.ds {
  background: #5865f2;
}

.social-pill.yt {
  background: #ff2b2b;
}

.social-pill.tk {
  background: #111;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.roulette-page {
  text-align: center;
}

.roulette-page h1 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roulette-balance {
  color: var(--muted);
  margin-bottom: 20px;
}

.roulette-window {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto 20px;
  max-width: 860px;
}

.roulette-pointer {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--accent);
}

.roulette-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 12px;
  --spin-offset: 0px;
  transform: translateX(var(--spin-offset));
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roulette-item {
  background: #1c1c1f;
  border-radius: 16px;
  padding: 22px 14px;
  color: #fff;
  font-weight: 600;
}

.roulette-btn {
  margin-bottom: 10px;
}

.roulette-result {
  min-height: 20px;
  color: var(--accent);
  margin-bottom: 30px;
}

.roulette-prizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.prize-card {
  background: #1c1c1f;
  border-radius: 16px;
  padding: 18px;
}

.roulette-history {
  background: #1c1c1f;
  border-radius: 20px;
  padding: 14px;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.history-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.history-row:last-child {
  border-bottom: none;
}

.cabinet {
  background: #f6f6f6;
  border-radius: 26px;
  padding: 32px;
  color: #1a1a1a;
  box-shadow: var(--shadow);
}

.cabinet-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d7d7d7;
}

.cabinet-title {
  margin: 26px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-card.wide {
  grid-column: span 2;
}

.stat-card.green {
  background: #65c26a;
  color: #fff;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.cabinet-about {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
}

.cabinet-about div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.finance-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.finance-card.yellow {
  background: #ffc107;
}

.topup-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.topup-form input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.history-list li {
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cabinet-settings {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
}

.cabinet-settings div {
  display: flex;
  justify-content: space-between;
  color: #444;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 72px;
    right: 5vw;
    left: 5vw;
    background: rgba(20, 20, 22, 0.96);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .brand-text {
    display: block;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-sub {
    margin-right: 0;
  }
  .hero-grid {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-download {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .forbes-row {
    grid-template-columns: 32px 1fr 1fr 90px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 10px;
  }
  .cta-btn.small {
    display: none;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-right {
    order: -1;
  }
  .section {
    padding: 70px 0;
  }
  .launcher-card {
    width: 100%;
  }
  .shop-hero {
    padding: 32px 22px;
  }
  .socials-card {
    padding: 20px;
    gap: 12px;
  }
  .social-pill {
    width: 64px;
    height: 64px;
  }
  .forbes-row {
    grid-template-columns: 28px 1fr;
    gap: 8px;
  }
  .forbes-row .city,
  .forbes-row .sum {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .cta-btn {
    width: 100%;
  }
  .download-btn {
    width: 100%;
    text-align: center;
  }
  .shop-hero h2 {
    font-size: 28px;
  }
  .shop-hero h3 {
    font-size: 22px;
  }
}


:root {
  --bg: #0a1020;
  --bg-soft: #111a2b;
  --bg-card: #162338;
  --text: #e9f1ff;
  --muted: #9fb2d6;
  --accent: #4cc9f0;
  --accent-deep: #2b90ff;
  --shadow: 0 20px 60px rgba(3, 8, 20, 0.55);
}

.download-page {
  display: grid;
  place-items: center;
  min-height: 80vh;
}

.download-card {
  width: min(900px, 92vw);
  background: var(--bg-card);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.video-frame {
  margin: 24px auto;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(76, 201, 240, 0.3);
  background: #0b0f1a;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.download-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-state {
  color: var(--muted);
  margin: 24px 0;
}

.login-grid { align-items: stretch; }
.login-card { min-height: 260px; }


.auth-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.auth-card {
  background: linear-gradient(180deg, rgba(22,35,56,0.9), rgba(10,16,32,0.9));
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.auth-card.muted {
  opacity: 0.9;
}

.auth-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-header p {
  margin: 0 0 18px;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  font-weight: 600;
  color: var(--text);
}

.auth-form input {
  background: rgba(8, 14, 28, 0.9);
  border: 1px solid rgba(76, 201, 240, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
  border-color: rgba(76, 201, 240, 0.65);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
}

.cta-btn.full,
.ghost-btn.full {
  width: 100%;
}

.form-message {
  min-height: 18px;
  margin: 6px 0 0;
  color: #ffb4b4;
  font-weight: 600;
}

.auth-layout {
  max-width: 980px;
  margin: 0 auto;
  gap: 28px;
}

.auth-card {
  border: 1px solid rgba(76, 201, 240, 0.22);
  background: radial-gradient(120% 120% at 0% 0%, rgba(76, 201, 240, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(20, 36, 60, 0.95), rgba(8, 14, 28, 0.95));
}

.auth-form label {
  display: block;
  margin-top: 6px;
}

.auth-form input {
  width: 100%;
}

.auth-form button {
  margin-top: 8px;
}

.admin-logins {
  margin-top: 24px;
}

.admin-logins-table {
  background: rgba(13, 18, 32, 0.85);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.admin-logins-head,
.admin-logins-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 2.2fr 1fr;
  gap: 16px;
  font-size: 14px;
}

.admin-logins-head {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  margin-bottom: 10px;
}

.admin-logins-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8f0ff;
}

.admin-logins-row.empty {
  border-top: none;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .admin-logins-head,
  .admin-logins-row {
    grid-template-columns: 1fr;
  }
}

.admin-coins-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-top: 16px;
}

.admin-coins-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.admin-coins-form input {
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.8);
  color: #e9f2ff;
}

.admin-coins-form .cta-btn {
  min-height: 42px;
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.admin-panel-card {
  background: rgba(10, 16, 30, 0.85);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.admin-panel-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.admin-panel-card input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 22, 0.8);
  color: #e9f2ff;
}

.admin-panel-card .cta-btn {
  min-height: 40px;
}

.admin-actions .admin-logins-head,
.admin-actions .admin-logins-row {
  grid-template-columns: 1fr 1.2fr 1fr 0.7fr 1.5fr 1fr;
}

.admin-bans .admin-logins-head,
.admin-bans .admin-logins-row {
  grid-template-columns: 1fr 2fr 1fr 1fr;
}

