﻿:root {
  --bg-1: #8fc3f4;
  --bg-2: #d8ecff;
  --panel: rgba(8, 14, 24, 0.78);
  --line: rgba(255, 255, 255, 0.2);
  --gold: #e3b51f;
  --gold-light: #ffd95d;
  --blue: #2da8ff;
  --blue-dark: #1577c7;
  --text: #f4f8ff;
  --muted: #c7d9f2;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
}

.sky {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.9), rgba(255,255,255,0) 23%),
    radial-gradient(circle at 20% 65%, rgba(255,255,255,.4), rgba(255,255,255,0) 24%),
    linear-gradient(180deg, #76b2e9, #d5ecff);
  z-index: -2;
}

.topbar {
  max-width: 1200px;
  margin: 20px auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(7px);
}

.brand-logo {
  width: min(260px, 38vw);
  display: block;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 14px;
  font-weight: 700;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(11,18,31,.85), rgba(18,30,52,.78));
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  min-height: 460px;
}

.kicker {
  color: var(--gold-light);
  margin: 0 0 8px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.03;
}

h1 span { color: var(--blue); }

.lead {
  color: var(--muted);
  max-width: 540px;
}

.hero-logo {
  align-self: center;
  justify-self: center;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .85;
  text-align: center;
  color: var(--gold);
  text-shadow: -4px 0 #1a283f, 4px 0 #1a283f, 0 -4px #1a283f, 0 4px #1a283f, 0 12px 24px rgba(0,0,0,.5);
  transform: rotate(-8deg);
}

.hero-logo span { color: var(--blue); }

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.btn {
  display: inline-block;
  border: 1px solid #55739b;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background: #223654;
}

.btn-gold {
  color: #1a1400;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.btn-blue {
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.btn-dark {
  background: linear-gradient(180deg, #344661, #223249);
}

.ip-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #5a7ca8;
  border-radius: 12px;
  padding: 9px 12px;
  background: rgba(28, 45, 72, .7);
}

.section {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(11,18,31,.82), rgba(16,26,43,.76));
  padding: 22px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.section-sub { color: var(--muted); margin-top: -4px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  border: 1px solid #4f739d;
  border-radius: 16px;
  background: rgba(31, 50, 78, 0.74);
  padding: 14px;
}

.card h3 { margin: 0 0 8px; color: var(--gold-light); }
.card p { margin: 0; color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.shot {
  margin: 0;
  border-radius: 18px;
  border: 1px solid #5c82ab;
  overflow: hidden;
  background: rgba(9, 18, 30, 0.75);
  min-height: 220px;
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.join { text-align: center; }

.join-ip {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 4px 0 #5a4508;
}

.join-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  text-align: center;
  color: #e9f3ff;
  margin: 18px 0 26px;
}

@media (max-width: 900px) {
  .topbar { flex-direction: column; gap: 10px; }
  .hero { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
