:root {
  /* pulled from the logo */
  --brand:       #00d6e4;
  --brand-dark:  #00a1b5;
  --bg:          #07131f;
  --text:        #e9faff;
  --card-bg:     rgba(255,255,255,0.04);
  --card-hover:  rgba(255,255,255,0.07);
}

/* Reset & globals */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 20% 0, #042942, var(--bg));
  color: var(--text);
  display: flex; flex-direction: column; min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* Header */
.site-header { backdrop-filter: blur(8px); padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; }
.site-header .wrap { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { height: 70px; width: auto; }   /* enlarged from 42px -> 70px */

/* Buttons */
.btn { position: relative; overflow: hidden; padding: 0.55rem 1.3rem; border-radius: 999px; border: none; cursor: pointer;
       background: var(--brand); color: #00171f; font-weight: 600;
       transition: transform .2s ease, box-shadow .2s ease; }
.btn.secondary { background: transparent; border: 2px solid var(--brand); color: var(--text); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,214,228,.3); }

.ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple .6s linear; background: rgba(255,255,255,.7); pointer-events: none; }

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Hero */
.hero { text-align: center; padding: 5rem 2rem 3rem; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); background: linear-gradient(90deg,var(--brand),#00f7ff); -webkit-background-clip: text; color: transparent; }
.hero .lead { margin-top: .8rem; font-size: 1.15rem; opacity: .85; }

/* Product grid */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 4rem; padding: 0 2rem; }
.service-card { position: relative; background: var(--card-bg); backdrop-filter: blur(4px); padding: 2.8rem 2rem; border-radius: 1.4rem; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,214,228,.18); }
.service-card h2 { font-size: 1.8rem; margin-bottom: .4rem; }
.service-card p  { margin-bottom: 1.2rem; }
.service-card .btn { font-size: .95rem; }

/* Floating bubbles */
.bubble { position: absolute; border-radius: 50%; opacity: .13; animation: float 8s infinite ease-in-out; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-16px) scale(1.04);} }
#game .bubble { background:#ff5e79; } #web .bubble { background:var(--brand); }
.bubble1{width:120px;height:120px;bottom:-50px;left:-50px;animation-duration:7s;}
.bubble2{width:170px;height:170px;top:-90px;right:-70px;animation-duration:9s;}
.bubble3{width:100px;height:100px;bottom:-40px;right:25%;animation-duration:11s;}

/* Footer */
.site-footer { margin-top: auto; padding: 2rem; text-align: center; font-size: .85rem; opacity: .75; }

/* Motion-safe */
@media (prefers-reduced-motion: reduce) { *{animation:none!important;transition:none!important;} }


/* ── Plans grid ─────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.plan-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: 2.2rem 1.8rem 2.8rem;
  border-radius: 1.4rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,214,228,.2);
}
.plan-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.features {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 1.4rem;
}
.plan-card .btn {
  font-size: 0.9rem;
}

/* highlight popular */
.plan-card.popular {
  border: 2px solid var(--brand);
}
.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand);
  color: #00171f;
  padding: 0.35rem 0.8rem;
  border-bottom-left-radius: 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Plans grid */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.plan-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: 2rem 2rem 2.5rem;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,214,228,.18);
}

.plan-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: .5rem 0 0.8rem;
}
.plan-card .price .unit {
  font-size: .9rem;
  font-weight: 600;
  opacity: .7;
}
.plan-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem 0; font-size: .9rem; line-height: 1.35rem; }
.plan-card li { margin: .25rem 0; }

.plan-card .btn.full { width: 100%; }

/* Optional highlight for top tier */
.plan-card.highlight {
  border: 2px solid var(--brand);
}

/* ── Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.game-card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  border-radius: 1.2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, box-shadow .3s ease;
}
.game-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,214,228,.18); }
.game-info h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.game-info .starting { font-size: .9rem; opacity: .8; margin-bottom: 1.2rem; }

.game-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
  margin: 0 2rem 2rem;
}

.game-card .game-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.65;
  padding: 1rem 2rem 2rem;
}

/* Discord bot bubble colour */
#bot .bubble { background: #9c6bff; }

/* Extras section */
.extras { padding: 4rem 2rem 3rem; text-align: center; }
.extras-title { font-size: 2rem; margin-bottom: 2rem; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  border-radius: 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,214,228,.18);
}

.link-card h3 { font-size: 1.4rem; margin-bottom: .4rem; color: var(--brand); }
.link-card p  { font-size: .85rem; opacity: .85; }

#bot .bubble { background:#9c6bff; }

.service-card .btn {
  margin-top: 1rem;
  display: inline-block;
}

.extras {
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.extras-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.extras-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-link {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--brand);
  color: #00171f;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,214,228,.3);
}

.extra-btn {
  display:inline-block;
  margin: .5rem;
}

.extras-grid {
  justify-content: center;
}

/* ensure link-card still styled (already earlier) */

/* --- Extras revamped --- */
.extras {
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.extras-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.link-card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  border-radius: 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,214,228,.18);
}
.link-card h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--brand);
}
.link-card p {
  font-size: .9rem;
  opacity: .85;
}
