/* Gamified Ultra — Pinco TR · senemdiyici.com */
:root {
  --gu-bg: #23085A;
  --gu-bg-elev: #2f0d72;
  --gu-mint: #00F0B5;
  --gu-orange: #FF5B00;
  --gu-white: #FFFFFF;
  --gu-muted: rgba(255, 255, 255, 0.76);
  --gu-line: rgba(0, 240, 181, 0.28);
  --gu-panel: rgba(47, 13, 114, 0.72);
  --gu-glow-mint: rgba(0, 240, 181, 0.35);
  --gu-glow-orange: rgba(255, 91, 0, 0.32);
  --gu-radius: 18px;
  --gu-header-h: 74px;
  --gu-font-display: "Rubik", sans-serif;
  --gu-font-body: "Nunito", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

.gu-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--gu-font-body);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--gu-white);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 240, 181, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 5%, rgba(255, 91, 0, 0.16), transparent 50%),
    linear-gradient(165deg, #1a0648 0%, var(--gu-bg) 40%, #2a0a6b 100%);
  overflow-x: hidden;
  position: relative;
}

.gu-body.is-menu-open {
  overflow: hidden;
}

.gu-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 28% 72%, rgba(0, 240, 181, 0.5), transparent),
    radial-gradient(1px 1px at 64% 34%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 82% 58%, rgba(255, 91, 0, 0.45), transparent),
    radial-gradient(1px 1px at 46% 12%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 90% 88%, rgba(0, 240, 181, 0.4), transparent);
  opacity: 0.7;
}

.gu-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: gu-float 12s ease-in-out infinite;
}

.gu-orb--mint {
  width: 38vw;
  height: 38vw;
  top: -8vw;
  right: -10vw;
  background: var(--gu-glow-mint);
}

.gu-orb--orange {
  width: 32vw;
  height: 32vw;
  bottom: 8vh;
  left: -12vw;
  background: var(--gu-glow-orange);
  animation-direction: reverse;
  animation-duration: 14s;
}

@keyframes gu-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(2%, 3%) scale(1.08); opacity: 0.7; }
}

.gu-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.gu-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--gu-header-h);
  backdrop-filter: blur(18px);
  background: rgba(35, 8, 90, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.gu-header.is-sticky {
  border-bottom-color: var(--gu-line);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35), 0 0 28px rgba(0, 240, 181, 0.12);
  background: rgba(35, 8, 90, 0.94);
}

.gu-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--gu-header-h);
}

.gu-logo img {
  display: block;
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 240, 181, 0.45));
}

.gu-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.gu-nav__link {
  color: var(--gu-muted);
  text-decoration: none;
  font-family: var(--gu-font-display);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}

.gu-nav__link:hover {
  color: var(--gu-mint);
  text-shadow: 0 0 14px var(--gu-glow-mint);
}

.gu-header__cta {
  margin-left: 0.4rem;
}

.gu-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gu-line);
  border-radius: 12px;
  background: rgba(0, 240, 181, 0.08);
  cursor: pointer;
}

.gu-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--gu-mint);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.gu-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gu-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.gu-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.gu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-family: var(--gu-font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.gu-btn:hover {
  transform: translateY(-2px);
}

.gu-btn--mint {
  background: var(--gu-mint);
  color: var(--gu-bg);
  box-shadow: 0 0 0 0 rgba(0, 240, 181, 0.4), 0 8px 24px rgba(0, 240, 181, 0.25);
}

.gu-btn--mint:hover {
  box-shadow: 0 0 24px rgba(0, 240, 181, 0.55), 0 10px 28px rgba(0, 240, 181, 0.3);
}

.gu-btn--orange {
  background: var(--gu-orange);
  color: var(--gu-white);
  box-shadow: 0 8px 24px rgba(255, 91, 0, 0.35);
}

.gu-btn--orange:hover {
  box-shadow: 0 0 22px rgba(255, 91, 0, 0.5), 0 10px 28px rgba(255, 91, 0, 0.35);
}

.gu-btn--ghost {
  background: transparent;
  color: var(--gu-white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

/* Hero */
.gu-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
}

.gu-hero__inner {
  max-width: 820px;
}

.gu-hero__brand {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--gu-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gu-bg);
  background: linear-gradient(90deg, var(--gu-mint), #7affd9);
  box-shadow: 0 0 20px rgba(0, 240, 181, 0.4);
  animation: gu-pulse-soft 3.5s ease-in-out infinite;
}

@keyframes gu-pulse-soft {
  0%, 100% { box-shadow: 0 0 16px rgba(0, 240, 181, 0.35); }
  50% { box-shadow: 0 0 28px rgba(0, 240, 181, 0.65); }
}

.gu-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--gu-font-display);
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(0, 240, 181, 0.2);
}

.gu-hero__lead {
  margin: 0 0 1.75rem;
  color: var(--gu-muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.gu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
.gu-section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.gu-section__head {
  margin-bottom: 1.5rem;
}

.gu-eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--gu-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gu-orange);
}

.gu-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--gu-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.gu-section__head > p,
.gu-prose p {
  margin: 0 0 1.1rem;
  color: var(--gu-muted);
}

.gu-prose p:last-child {
  margin-bottom: 0;
}

.gu-cta-row {
  margin-top: 1.75rem;
}

/* Bonus chips */
.gu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.gu-chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gu-line);
  background: rgba(0, 240, 181, 0.08);
  color: var(--gu-white);
  font-family: var(--gu-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.gu-chip:hover {
  transform: translateY(-1px);
  border-color: var(--gu-mint);
}

.gu-chip.is-active {
  background: var(--gu-mint);
  color: var(--gu-bg);
  border-color: var(--gu-mint);
  box-shadow: 0 0 18px rgba(0, 240, 181, 0.45);
}

.gu-chip-panel {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--gu-radius);
  background: var(--gu-panel);
  border: 1px solid var(--gu-line);
  box-shadow: inset 0 0 30px rgba(0, 240, 181, 0.06);
}

.gu-chip-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--gu-font-display);
  color: var(--gu-mint);
}

.gu-chip-panel p {
  margin: 0;
  color: var(--gu-white);
}

/* Table */
.gu-table-wrap {
  overflow-x: auto;
  border-radius: var(--gu-radius);
  border: 1px solid var(--gu-line);
  background: rgba(26, 6, 72, 0.65);
  box-shadow: 0 0 40px rgba(0, 240, 181, 0.08);
}

.gu-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.gu-table th,
.gu-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gu-table th {
  font-family: var(--gu-font-display);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 240, 181, 0.12);
  color: var(--gu-mint);
}

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

.gu-table td:first-child {
  font-weight: 700;
  color: var(--gu-white);
  width: 38%;
}

.gu-table td:last-child {
  color: var(--gu-muted);
}

.gu-table tbody tr:hover td {
  background: rgba(255, 91, 0, 0.08);
}

/* Figures & split */
.gu-figure {
  margin: 0;
  border-radius: calc(var(--gu-radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 181, 0.22);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 91, 0, 0.08);
}

.gu-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.gu-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--gu-muted);
  background: rgba(35, 8, 90, 0.85);
  border-top: 1px solid var(--gu-line);
}

.gu-media .gu-figure {
  margin-bottom: 1.5rem;
}

.gu-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.gu-split--reverse {
  grid-template-columns: 1fr 1.05fr;
}

.gu-bonus {
  background: linear-gradient(180deg, transparent, rgba(0, 240, 181, 0.05), transparent);
}

.gu-wager,
.gu-strengths {
  position: relative;
}

.gu-wager::before,
.gu-strengths::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 0, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

.gu-withdraw {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255, 91, 0, 0.12), transparent 60%);
}

.gu-mobile {
  background:
    radial-gradient(ellipse 50% 70% at 10% 40%, rgba(0, 240, 181, 0.1), transparent 55%);
}

/* FAQ */
.gu-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gu-faq__item {
  border-radius: var(--gu-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--gu-panel);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.gu-faq__item.is-open {
  border-color: var(--gu-mint);
  box-shadow: 0 0 24px rgba(0, 240, 181, 0.15);
}

.gu-faq__item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.gu-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border: none;
  background: transparent;
  color: var(--gu-white);
  font-family: var(--gu-font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.gu-faq__q::after {
  content: "+";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 240, 181, 0.15);
  color: var(--gu-mint);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s, background 0.25s;
}

.gu-faq__item.is-open .gu-faq__q::after {
  content: "–";
  background: var(--gu-mint);
  color: var(--gu-bg);
  transform: rotate(180deg);
}

.gu-faq__a {
  padding: 0 1.2rem 1.15rem;
}

.gu-faq__a p {
  margin: 0;
  color: var(--gu-muted);
}

/* Footer */
.gu-footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--gu-line);
  background: rgba(18, 4, 48, 0.75);
}

.gu-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.gu-footer__note {
  margin: 0;
  flex: 1 1 220px;
  color: var(--gu-muted);
  font-size: 0.92rem;
}

.gu-footer__nav {
  display: flex;
  gap: 1.1rem;
}

.gu-footer__nav a {
  color: var(--gu-mint);
  text-decoration: none;
  font-family: var(--gu-font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.gu-footer__nav a:hover {
  color: var(--gu-white);
}

/* Floating CTA */
.gu-float-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--gu-orange);
  color: var(--gu-white);
  font-family: var(--gu-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 91, 0, 0.45), 0 0 20px rgba(255, 91, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.gu-float-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gu-float-cta:hover {
  box-shadow: 0 12px 34px rgba(255, 91, 0, 0.55), 0 0 28px rgba(255, 91, 0, 0.35);
}

/* Reveal */
.gu-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
  .gu-split,
  .gu-split--reverse {
    grid-template-columns: 1fr;
  }

  .gu-header__cta {
    display: none;
  }

  .gu-burger {
    display: flex;
    margin-left: auto;
  }

  .gu-nav {
    position: fixed;
    inset: var(--gu-header-h) 0 auto 0;
    margin: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(26, 6, 72, 0.97);
    border-bottom: 1px solid var(--gu-line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .gu-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .gu-nav__link {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 560px) {
  .gu-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gu-btn {
    width: 100%;
  }

  .gu-float-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gu-orb,
  .gu-hero__brand { animation: none; }
  .gu-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
