* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #080808;
  color: white;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.navbar {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 15, 0.92);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand {
  color: white;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
}

.brand span,
.tag,
h1 span,
h2 span {
  color: #D4AF37;
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  color: #c9c9c9;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  transition: 0.25s;
}

nav a:hover,
nav a.active {
  color: white;
  background: rgba(212,175,55,0.12);
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.page {
  padding: 80px 8%;
}

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 50px;
}

.tag {
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  margin-bottom: 24px;
}

.intro {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

.notice,
.warning-box,
.card,
.hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 26px;
  box-shadow: 0 0 35px rgba(212,175,55,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.notice {
  padding: 18px;
  margin: 28px 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25);
  transition: 0.25s;
}

.btn.primary,
.btn:hover {
  background: linear-gradient(135deg, #B8860B, #D4AF37, #FFD700);
  color: black;
  box-shadow: 0 0 25px rgba(212,175,55,0.35);
}

.hero-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212,175,55,0.14), transparent);
  filter: blur(35px);
  z-index: -1;
}

.profile-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

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

.grid-section h2,
.page h2 {
  font-size: 36px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.two {
  grid-template-columns: repeat(2,1fr);
}

.cards.three {
  grid-template-columns: repeat(3,1fr);
}

.card {
  padding: 20px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(212,175,55,0.14);
}

.card h3 {
  margin: 0 0 10px;
}

.card p,
.warning-box p {
  color: #cfcfcf;
  line-height: 1.7;
}

.warning-box {
  padding: 32px;
}

.link-card {
  color: white;
  text-decoration: none;
  display: block;
  min-height: 260px;
}

.tool-card {
  min-height: 280px;
}

.social-icon-box,
.tool-icon-box {
  width: 100%;
  height: 145px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.18);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.28);
}

.social-icon-box .small-icon,
.tool-icon-box .tool-icon {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.media-card {
  height: 230px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.18);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0,0,0,0.7);
  padding: 8px 12px;
  border-radius: 999px;
}

.media-card.empty {
  display: grid;
  place-items: center;
  color: #D4AF37;
  border: 1px dashed rgba(212,175,55,0.4);
}

.section-gap {
  margin-top: 45px;
}

.viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  place-items: center;
  z-index: 999;
  padding: 30px;
}

.viewer.show {
  display: grid;
}

.viewer-media {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 22px;
}

.viewer-close {
  position: fixed;
  top: 28px;
  right: 32px;
  border: none;
  background: #D4AF37;
  color: black;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
}

.store-card a {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: black;
  text-decoration: none;
  background: #D4AF37;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 600;
}

.empty-fill {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #D4AF37;
}

@media (max-width: 850px) {
  .navbar {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .hero,
  .cards.two,
  .cards.three,
  .media-grid {
    grid-template-columns: 1fr;
  }
}
