:root {
  --bg: #0b0b15;
  --panel: #181820;
  --panel-soft: #13131f;
  --text: #ffffff;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.08);
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --gold: #facc15;
  --green: #22c55e;
  --red: #ef4444;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.12), transparent 36%),
    linear-gradient(180deg, #0b0b15 0%, #0b0b15 50%, #11111e 100%);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(11, 11, 21, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(51, 17, 94, 0.12);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

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

.brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.brand__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 55%, #9ca3af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
.nav button {
  border: 0;
  background: transparent;
  color: #d1d5db;
  padding: 10px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav a:hover,
.nav button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav .cta-link {
  color: white;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a,
.mobile-nav button {
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.mobile-nav .cta-link {
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  text-align: center;
}

.ticker {
  position: relative;
  margin-bottom: 8px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 16, 0.5);
  backdrop-filter: blur(6px);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 96px;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__item {
  flex: 0 0 auto;
  width: 96px;
  height: 40px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.ticker__item:hover {
  opacity: 1;
}

.ticker__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.5);
}

.hero-wrap {
  padding-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: black;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 21 / 6;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}

.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.hero__nav:hover {
  background: rgba(0, 0, 0, 0.62);
}

.hero__nav--prev {
  left: 16px;
}

.hero__nav--next {
  right: 16px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero__dot.is-active {
  width: 24px;
  background: white;
}

.section {
  padding: 32px 0 48px;
}

.section--gold {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #0b0b15 0%, #11111e 100%);
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.cards-grid--vip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--gold,
.cards-grid--inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--social {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.card {
  position: relative;
  display: block;
  min-height: 140px;
  color: white;
}

.card__glow {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  filter: blur(1px);
  background: linear-gradient(90deg, #ca8a04, #fde68a, #ca8a04);
  background-size: 200% 200%;
  animation: border-shimmer 3s linear infinite;
}

.card__glow--vip {
  background: linear-gradient(90deg, #22d3ee, #ffffff, #22d3ee);
  animation-duration: 1.5s;
}

.card__glow--bonus {
  background: linear-gradient(90deg, #16a34a, #bbf7d0, #16a34a);
}

.card__glow--raffle {
  background: linear-gradient(90deg, #dc2626, #fecaca, #dc2626);
}

.card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 140px;
  padding: 12px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.2s ease;
}

.card:hover .card__inner {
  transform: translateY(-2px);
}

.card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 4px 8px;
  border-bottom-left-radius: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: black;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.card__badge--vip {
  background: var(--cyan);
}

.card__badge--gold {
  background: var(--gold);
}

.card__badge--bonus {
  background: var(--green);
}

.card__badge--raffle {
  background: var(--red);
}

.card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

.card__media img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__copy {
  width: 100%;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.card__bonus {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.card__sub {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.card--ad .card__inner {
  min-height: 112px;
  padding: 4px;
  border-radius: 18px;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card--ad .card__glow {
  display: none;
}

.card--ad .card__media img {
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.card--ad .card__copy {
  margin: 0;
  padding: 6px 0;
  border-top: 0;
  background: rgba(0, 0, 0, 0.8);
}

.page-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  background: linear-gradient(90deg, #4ade80, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-title--raffle {
  background: linear-gradient(90deg, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  background-clip: text;
}

.why {
  padding: 32px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why__title {
  margin: 0 0 32px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-align: center;
}

.why__title span {
  color: #a855f7;
}

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

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.3);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 28px;
  font-weight: 900;
  color: white;
}

.why-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.why-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #080810;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 512px);
  height: 4px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
  filter: blur(4px);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.footer-brand__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand__stack span:first-child {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.footer-brand__stack span:last-child {
  font-size: 20px;
  font-weight: 900;
  color: #9ca3af;
  letter-spacing: 0.15em;
}

.footer-lead {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #d1d5db;
}

.social-grid {
  width: min(100%, 900px);
  margin-bottom: 32px;
}

.social-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.social-btn__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.social-btn__label {
  font-size: 13px;
  font-weight: 600;
}

.social-btn--instagram:hover {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.5);
  background: rgba(228, 64, 95, 0.12);
}

.social-btn--youtube:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.12);
}

.social-btn--whatsapp:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.12);
}

.social-btn--x:hover,
.social-btn--github:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.social-btn--tumblr:hover {
  color: #35465c;
  border-color: rgba(53, 70, 92, 0.5);
  background: rgba(53, 70, 92, 0.12);
}

.social-btn--tiktok:hover {
  color: #00f2ea;
  border-color: rgba(0, 242, 234, 0.5);
  background: rgba(0, 242, 234, 0.12);
}

.social-btn--reddit:hover {
  color: #ff4500;
  border-color: rgba(255, 69, 0, 0.5);
  background: rgba(255, 69, 0, 0.12);
}

.social-btn--facebook:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.5);
  background: rgba(24, 119, 242, 0.12);
}

.social-btn--pinterest:hover {
  color: #e60023;
  border-color: rgba(230, 0, 35, 0.5);
  background: rgba(230, 0, 35, 0.12);
}

.social-btn--linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.5);
  background: rgba(10, 102, 194, 0.12);
}

.social-btn--telegram:hover {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.5);
  background: rgba(34, 158, 217, 0.12);
}

.social-btn--teams:hover {
  color: #6264a7;
  border-color: rgba(98, 100, 167, 0.5);
  background: rgba(98, 100, 167, 0.12);
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block__lead {
  margin: 0 0 16px;
  font-size: 14px;
  color: #9ca3af;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-pill:hover,
.contact-icon:hover {
  transform: translateY(-2px) scale(1.03);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.legal {
  width: min(100%, 672px);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal__headline {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #9ca3af;
}

.legal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
  animation: pulse 2s infinite;
}

.legal__text {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

.copyright {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes border-shimmer {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 200% 50%;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 1279px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }
}

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

  .hero {
    aspect-ratio: 21 / 7;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .brand img {
    height: 40px;
  }

  .brand__title {
    font-size: 20px;
  }

  .ticker::before,
  .ticker::after {
    width: 48px;
  }

  .ticker__item {
    width: 88px;
    height: 36px;
    margin: 0 12px;
  }

  .hero {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .hero__slide img {
    object-fit: contain;
  }

  .cards-grid--vip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid--gold,
  .cards-grid--inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .cards-grid--social {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .card {
    min-height: 112px;
  }

  .card__inner {
    min-height: 112px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .card__glow {
    border-radius: 18px;
  }

  .card__media img {
    height: 64px;
  }

  .card__bonus {
    font-size: 10px;
  }

  .card__sub {
    font-size: 8px;
  }

  .card__badge {
    font-size: 9px;
  }

  .social-btn {
    min-height: 52px;
    padding: 8px 6px;
  }

  .social-btn__label {
    display: none;
  }
}
