﻿:root {
  --sand: #f5e6c8;
  --sand-deep: #e7c99f;
  --sea: #2aa7a7;
  --sea-deep: #0b5b6a;
  --foam: #e9fbf8;
  --coral: #ff8f6a;
  --sun: #ffd06b;
  --neon: #44d4d2;
  --ink: #0b3a47;
  --ink-soft: rgba(11, 58, 71, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff6e2 0%, #f6e2c2 35%, #cbe8e7 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 10px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(13, 91, 106, 0.15) 0,
      rgba(13, 91, 106, 0.15) 1px,
      rgba(13, 91, 106, 0) 1px,
      rgba(13, 91, 106, 0) 6px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.sun-glow {
  position: fixed;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--sun) 0%, rgba(249, 214, 107, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.sea-glow {
  position: fixed;
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(49, 166, 166, 0.5) 0%, rgba(49, 166, 166, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  position: relative;
  z-index: 2;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(13, 47, 51, 0.2);
}

.logo-text {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 8vw 72px;
}

.hero-text h1 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  letter-spacing: 4px;
  margin: 10px 0 10px;
  background: linear-gradient(120deg, #0f6f7b, #32c3c2, #ffd39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 30px rgba(11, 91, 106, 0.25);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sea-deep);
}

.tagline {
  font-size: 18px;
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

.btn-primary,
.btn-secondary {
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn-primary {
  background: linear-gradient(120deg, #ff915f, #ffb785);
  color: #3d1c0d;
  box-shadow: 0 16px 28px rgba(255, 145, 95, 0.35);
}

.btn-secondary {
  background: linear-gradient(120deg, #0f6b76, #2dc0b8);
  color: var(--foam);
  box-shadow: 0 16px 28px rgba(11, 94, 104, 0.3);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.ip-label {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.65);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}

.discord-icon {
  width: 40px;
  height: 40px;
}

.ip {
  font-family: "Courier New", monospace;
}

.copy-feedback {
  min-height: 22px;
  margin-top: 12px;
  color: var(--sea-deep);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(231, 247, 246, 0.7));
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 40px rgba(13, 47, 51, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.card-header h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  margin: 0 0 8px;
  letter-spacing: 2px;
}

.card-header p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.card-stats {
  display: grid;
  gap: 12px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink);
}

.stat {
  display: block;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 8vw 64px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(231, 247, 246, 0.7));
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 28px rgba(13, 47, 51, 0.16);
  border: 1px solid rgba(68, 212, 210, 0.3);
}

.feature-card h3 {
  margin-top: 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 1px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 8vw 72px;
  padding: 30px 34px;
  background: linear-gradient(120deg, rgba(245, 230, 200, 0.9), rgba(232, 251, 248, 0.9));
  border-radius: 30px;
  box-shadow: 0 22px 36px rgba(13, 47, 51, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 8vw 40px;
  font-weight: 600;
  color: var(--ink-soft);
}

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

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    width: 140px;
    height: 140px;
  }

  .hero-text h1 {
    letter-spacing: 2px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
