﻿:root {
  --bg: #0a0a0d;
  --bg-2: #13131a;
  --surface: #181821;
  --gold: #f3c766;
  --gold-soft: #ffe4a6;
  --text: #f2f2f5;
  --muted: #b8b8c4;
  --line: #2b2b38;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-color: rgba(243, 199, 102, 0.3);
}

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

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 80% -10%, #2b2344 0, transparent 30%),
    radial-gradient(circle at 0% 20%, #27212d 0, transparent 26%),
    linear-gradient(180deg, #09090c 0%, #111117 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 8, 12, 0.92);
  border-bottom: 1px solid #21212c;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-soft);
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.brand:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px var(--glow-color));
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.top-nav {
  display: flex;
  gap: 20px;
}

.top-nav a {
  color: #dddded;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: .2s ease;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.top-nav a.active {
  position: relative;
}

.top-nav a.active::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #2c2c3a;
  border-radius: 10px;
  background: #15151f;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--gold);
}

.hero {
  min-height: 76vh;
  position: relative;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/7915357/pexels-photo-7915357.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
  filter: brightness(0.45) saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.35) 0%, rgba(10, 10, 13, 0.88) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.hero h1,
.section-head h2,
.mode-body h3,
.feature-text h3,
.steam-box h2,
.donate-head h1,
.payment-panel h2,
.summary-box h3 {
  font-family: "Unbounded", sans-serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.8rem);
  letter-spacing: 0.03em;
}

.hero p {
  margin: 18px auto 0;
  max-width: 760px;
  line-height: 1.7;
  color: #ddd9e8;
  font-size: 1.05rem;
}

.section {
  padding: 56px 0 10px;
  animation: fadeUp 0.8s ease-out;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
}

.section-head p {
  color: var(--muted);
  margin: 10px 0 0;
}

.mode-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mode-block,
.feature-row {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.mode-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mode-block:hover,
.feature-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(243, 199, 102, 0.15);
  border-color: var(--gold);
}

.mode-block::after,
.feature-row::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.mode-block:hover::after,
.feature-row:hover::after {
  left: 100%;
}

.mode-block::before {
  content: "NEW";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.mode-block:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.mode-block img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.mode-block:hover img {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(1.2);
}

.mode-body {
  padding: 16px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, var(--surface), transparent);
}

.mode-body h3 {
  margin: 0;
  font-size: 1.16rem;
}

.mode-body p {
  margin: 9px 0 0;
  color: var(--muted);
}

.feature-row {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-text {
  order: 1;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.feature-media iframe {
  width: 100%;
  height: 290px;
  border: 0;
  border-radius: 12px;
}

.feature-media::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(243, 199, 102, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bg);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.feature-media:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.feature-media:hover iframe {
  filter: brightness(0.7);
}

.feature-text h3 {
  margin: 0;
  font-size: 1.24rem;
}

.feature-text p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.steam-cta {
  padding: 52px 0;
}

.steam-box {
  text-align: center;
  padding: 40px 22px;
  border: 1px solid #3d3220;
  border-radius: 18px;
  background: linear-gradient(140deg, #17171f 0%, #1f1b13 100%);
}

.steam-box p {
  color: #c8c3b3;
}

.steam-button,
.ghost-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.steam-button {
  background: linear-gradient(120deg, #f3c766, #ffd47f);
  color: #2e240f;
}

.ghost-button {
  background: #1d1d28;
  color: #dbdbea;
  border: 1px solid #38384a;
}

.steam-button::before,
.ghost-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.steam-button:hover::before,
.ghost-button:hover::before {
  width: 300px;
  height: 300px;
}

.steam-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(243, 199, 102, 0.4);
}

.donate-main {
  padding: 42px 0;
}

.premium-head {
  padding: 22px;
  border: 1px solid #2d2d3a;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(27, 27, 35, 0.95), rgba(18, 18, 24, 0.95));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.donate-head {
  margin-bottom: 20px;
}

.tabs.premium-tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  background: rgba(18, 18, 25, 0.92);
  border: 1px solid #323245;
  border-radius: 999px;
  padding: 6px;
}

.tab {
  background: transparent;
  border: 1px solid transparent;
  color: #d8d8e8;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.tab:hover {
  border-color: #4c405f;
}

.tab.active {
  background: linear-gradient(120deg, rgba(243, 199, 102, 0.2), rgba(243, 199, 102, 0.08));
  border-color: #8f7440;
  color: var(--gold-soft);
}

.donate-pane {
  display: none;
}

.donate-pane.active {
  display: block;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.premium-panel {
  background: linear-gradient(160deg, rgba(24, 24, 33, 0.96), rgba(17, 17, 24, 0.96));
  border: 1px solid #353547;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.pill {
  border: 1px solid #3e3e52;
  border-radius: 999px;
  background: #1d1d29;
  color: #e8e8f8;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 700;
  transition: .2s ease;
}

.pill:hover {
  border-color: #655374;
}

.pill.active {
  border-color: #a88547;
  color: var(--gold-soft);
  background: linear-gradient(120deg, rgba(42, 36, 24, 0.95), rgba(55, 43, 24, 0.95));
  box-shadow: 0 0 0 1px rgba(168, 133, 71, 0.25) inset;
}

.pay-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.pay-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input[type="number"],
input[type="email"],
input[type="text"] {
  border: 1px solid #3f3f52;
  border-radius: 10px;
  background: #101018;
  color: #f5f5ff;
  padding: 11px 12px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.summary-box {
  border: 1px solid #3a3a4d;
  background: #12121b;
  border-radius: 12px;
  padding: 14px;
}

.summary-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #2a2a38;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-row.total strong {
  color: var(--gold);
}

.payment-note {
  border: 1px solid #3a3a4d;
  background: #12121b;
  border-radius: 12px;
  padding: 14px;
}

.payment-note h4 {
  margin: 0 0 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
}

.payment-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.unsubscribe-alert {
  border: 1px solid #4b3e2a;
  background: linear-gradient(140deg, rgba(45, 34, 20, 0.72), rgba(24, 18, 11, 0.72));
  border-radius: 12px;
  padding: 12px 14px;
  color: #e7d6b5;
  line-height: 1.6;
  margin-top: 2px;
}

.checkbox-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  color: #ddddee;
}

.checkbox-line input {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  appearance: none;
  border: 2px solid #6e5a36;
  border-radius: 6px;
  background: #0f0f17;
  cursor: pointer;
  position: relative;
}

.checkbox-line input:checked {
  background: linear-gradient(145deg, #f3c766, #ffb05c);
  border-color: #f3c766;
}

.checkbox-line input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #1d1307;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-line a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.checkbox-line a:hover {
  text-decoration: underline;
}

.pay-main {
  width: 100%;
  margin-top: 2px;
  padding: 14px 18px;
  font-size: 1rem;
  background: linear-gradient(120deg, #f3c766 0%, #ff9f43 48%, #ff6f61 100%);
  color: #201304;
  box-shadow: 0 12px 24px rgba(243, 199, 102, 0.28);
}

.pay-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 143, 99, 0.35);
}

.single-plan {
  margin-top: 12px;
  border: 1px solid #3f3f52;
  border-radius: 12px;
  background: #171722;
  padding: 12px 14px;
  color: var(--gold-soft);
  font-weight: 700;
}

.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #6f5e3c;
  color: #f3d898;
  background: rgba(35, 30, 21, 0.75);
}

.secondary-button:hover {
  border-color: #b58f4a;
  color: #ffe7b3;
}

.donate-side {
  position: sticky;
  top: 92px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  background: #13131c;
  border: 1px solid #323243;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ececf8;
  font-weight: 700;
  text-align: left;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-icon {
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .2s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 14px 14px;
  border-top: 1px solid #262635;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-body p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid #21212d;
  background: #09090d;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  text-align: center;
  padding: 22px 0 34px;
}

.footer-content p {
  margin: 5px 0;
  color: #afafbd;
  transition: var(--transition-smooth);
}

.footer-content p:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.unsub-page {
  padding: 42px 0;
}

.unsub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  gap: 16px;
  align-items: start;
}

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

.faq-item {
  border: 1px solid #323243;
  border-radius: 12px;
  background: #13131c;
  padding: 14px;
}

.faq-item h4 {
  margin: 0 0 6px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.92rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffd700, var(--gold));
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  .top-nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 66px;
    width: min(280px, 90vw);
    background: #12121b;
    border: 1px solid #303042;
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
  }

  .top-nav.open {
    display: flex;
  }

  .mode-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-text {
    order: initial;
  }

  .feature-media iframe {
    height: 240px;
  }

  .tabs.premium-tabs {
    display: flex;
    width: 100%;
    border-radius: 12px;
  }

  .tab {
    flex: 1 1 50%;
    text-align: center;
    border-radius: 8px;
  }

  .donate-layout {
    grid-template-columns: 1fr;
  }

  .donate-side {
    position: static;
  }

  .unsub-grid {
    grid-template-columns: 1fr;
  }
}
