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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.5), transparent);
  pointer-events: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: #f5c518;
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #a0a0b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f5c518;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  background:
    linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(26,26,46,0.65) 50%, rgba(10,10,15,0.85) 100%),
    url('images/Banner.png') center/cover no-repeat #0a0a0f;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(245, 197, 24, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(245, 197, 24, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(10,10,15,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f5c518;
  margin-bottom: 32px;
  text-transform: uppercase;
  background: rgba(245,197,24,0.05);
}

.hero-content h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: #f5c518;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #a0a0b0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #f5c518;
  color: #0a0a0f;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background: #ffd84d;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(245, 197, 24, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: #3b82f6;
  color: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(59,130,246,0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  color: #f5c518;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: #f5c518;
  transform: translateY(-2px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5c518, transparent);
  opacity: 0.4;
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  font-size: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.08), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f5c518;
  border-radius: 2px;
}

.section-header p {
  color: #a0a0b0;
  font-size: 16px;
}

.section-header.light h2 {
  color: #ffffff;
}

/* Instagram */
/* Banner Carousel */
.banners {
  background: #0d0d16; padding-top: 20px;
}

.carousel {
  position: relative; max-width: 1320px; margin: 0 auto;
}

.carousel-track { position: relative; }

.carousel-slide {
  display: none; animation: carouselFade 0.5s ease;
}

.carousel-slide.active { display: block; }

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

.banner-card {
  border-radius: 24px; padding: 100px 64px;
  text-align: center; position: relative; overflow: hidden;
  background: url('images/Banner.png') center/contain no-repeat #0a0a0f;
  min-height: 660px;
  display: flex; align-items: center; justify-content: center;
}

.banner-card > * { position: relative; z-index: 1; max-width: 700px; margin-left: auto; margin-right: auto; }

.banner-draconians {
  border: 1px solid rgba(255,68,68,0.15);
}

.banner-main {
  border: 1px solid rgba(245,197,24,0.15);
}

.banner-welcome {
  border: 1px solid rgba(68,255,68,0.15);
}

.banner-spoiler {
  border: 1px solid rgba(200,100,255,0.15);
}

.banner-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px;
}

.banner-draconians .banner-badge { background: rgba(255,68,68,0.15); color: #f44; }
.banner-main .banner-badge { background: rgba(245,197,24,0.15); color: #f5c518; }
.banner-welcome .banner-badge { background: rgba(68,255,68,0.15); color: #4f4; }
.banner-spoiler .banner-badge { background: rgba(200,100,255,0.15); color: #c864ff; }

.banner-card h2 {
  font-size: 36px; color: #fff; margin-bottom: 12px;
}

.banner-draconians h2 { color: #ff6666; }
.banner-main h2 { color: #f5c518; }
.banner-welcome h2 { color: #66ff66; }
.banner-spoiler h2 { color: #c864ff; }

.banner-card p {
  color: #a0a0b0; font-size: 16px; max-width: 500px; margin: 0 auto 24px; line-height: 1.6;
}

/* Carousel tabs */
.carousel-tabs {
  display: flex; gap: 8px; justify-content: center; margin-top: 20px;
}

.carousel-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); border-radius: 12px;
  color: #a0a0b0; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.3s;
}

.carousel-tab:hover { border-color: rgba(245,197,24,0.3); color: #e0e0e0; }
.carousel-tab.active { border-color: #f5c518; background: rgba(245,197,24,0.08); color: #f5c518; }

.tab-icon { font-size: 18px; }
.tab-label { white-space: nowrap; }

@media (max-width: 768px) {
  .banner-card { padding: 60px 24px; min-height: 300px; }
  .banner-card h2 { font-size: 26px; }
  .carousel-tabs { flex-direction: column; max-width: 300px; margin: 20px auto 0; }
  .tab-label { white-space: normal; }
}

@media (max-width: 1024px) {
  .banner-card { min-height: 420px; padding: 72px 36px; }
}

/* Latest Releases */
.releases {
  background: linear-gradient(180deg, #0f0f15 0%, #0f0a12 50%, #0f0f15 100%);
}
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.release-card {
  background: #1a1a22;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245,197,24,0.08);
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}
.release-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  opacity: 0.7;
}
.release-card:nth-child(1)::after { background: #f5c518; }
.release-card:nth-child(2)::after { background: #ef4444; }
.release-card:nth-child(3)::after { background: #3b82f6; }
.release-card:nth-child(4)::after { background: #22c55e; }
.release-card:nth-child(5)::after { background: #a855f7; }
.release-card:nth-child(6)::after { background: #f97316; }
.release-card:nth-child(7)::after { background: #ec4899; }
.release-card:nth-child(8)::after { background: #14b8a6; }
.release-card:nth-child(9)::after { background: #f5c518; }
.release-card:nth-child(10)::after { background: #ef4444; }
.release-card:nth-child(11)::after { background: #3b82f6; }
.release-card:nth-child(12)::after { background: #22c55e; }
.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.25);
}
.release-card:hover::after {
  opacity: 1;
}
.release-img {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #12121a;
  box-sizing: border-box;
}
.release-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s;
}
.release-card:hover .release-img img {
  transform: scale(1.05);
}
.release-info {
  padding: 14px 16px 16px;
}
.release-info h3 {
  font-size: 16px;
  color: #f0f0f0;
  margin: 0 0 4px;
}
.release-month {
  font-size: 12px;
  color: #f5c518;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .release-info h3 { font-size: 14px; }
}

@media (max-width: 480px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Gallery */
.gallery {
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0a16 50%, #0a0a0f 100%);
  overflow: hidden;
}

.gallery-grid {
  position: relative;
  height: 380px;
  width: 100%;
  margin-top: 40px;
  perspective: 1200px;
}

.gallery-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-card {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -130px;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  pointer-events: none;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-card .overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  color: #f5c518;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.gallery-arrow:hover {
  background: rgba(245,197,24,0.2);
  border-color: #f5c518;
}
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,197,24,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.gallery-dot.active {
  background: #f5c518;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .gallery-grid { height: 280px; }
  .gallery-card { width: 200px; }
  .gallery-arrow { width: 32px; height: 32px; font-size: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { height: 240px; }
  .gallery-card { width: 140px; }
}

.gallery-cta { text-align: center; margin-top: 32px; }
.gallery-cta p { color: #a0a0b0; margin-bottom: 12px; font-size: 14px; }

/* Lightbox */
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-caption {
  color: #e0e0e0;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

.lightbox-close {
  position: fixed !important;
  top: 24px;
  right: 32px;
  z-index: 5001;
  font-size: 32px !important;
  color: #fff !important;
}

/* Patreon Subscription */
.patreon-subscription {
  background: linear-gradient(180deg, #0d0d16 0%, #0f0a10 50%, #0d0d16 100%);
  text-align: center;
}

.sub-hero { margin-bottom: 48px; }

.sub-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: rgba(245,197,24,0.1); color: #f5c518;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px;
}

.sub-hero h2 {
  font-size: 36px; color: #fff; margin-bottom: 16px; line-height: 1.2;
}

.sub-desc {
  color: #a0a0b0; font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.6;
}

.sub-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 20px;
}

.tier-card {
  background: #1a1a2e; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  display: flex; flex-direction: column; transition: all 0.3s;
  position: relative; max-height: 640px;
}

.tier-card:hover { border-color: rgba(245,197,24,0.2); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.tier-destaque {
  border-color: rgba(245,197,24,0.3);
  background: linear-gradient(180deg, rgba(245,197,24,0.06) 0%, #1a1a2e 100%);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(245,197,24,0.08);
}

.tier-destaque:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 0 60px rgba(245,197,24,0.15); }

.tier-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #dc2626; color: #f5c518; padding: 5px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  white-space: nowrap;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.tier-header { margin-bottom: 12px; }

.tier-name {
  display: block; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3;
}

.tier-name small { font-size: 12px; font-weight: 400; color: #a0a0b0; display: block; margin-top: 2px; }

.tier-destaque .tier-name { color: #f5c518; }

.tier-price {
  font-size: 28px; font-weight: 800; color: #f5c518; line-height: 1.2;
}

.tier-period {
  color: #666; font-size: 13px;
}

.tier-body {
  flex: 1; overflow-y: auto; margin: 0 -8px 16px; padding: 0 8px;
  scrollbar-width: thin; scrollbar-color: rgba(245,197,24,0.2) transparent;
  text-align: left;
}

.tier-body::-webkit-scrollbar { width: 4px; }
.tier-body::-webkit-scrollbar-track { background: transparent; }
.tier-body::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.2); border-radius: 4px; }

.tier-intro { color: #e0e0e0; font-size: 14px; margin-bottom: 12px; }

.tier-desc { color: #a0a0b0; font-size: 13px; margin-bottom: 10px; line-height: 1.5; }

.tier-subhead { color: #e0e0e0; font-size: 14px; margin: 14px 0 6px; }

.tier-features {
  list-style: none; padding: 0; margin: 0 0 10px; text-align: left;
}

.tier-features li {
  padding: 6px 0; color: #a0a0b0; font-size: 13px; line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tier-features li:last-child { border-bottom: none; }

.tier-closing { color: #c0c0c0; font-size: 13px; margin-top: 10px; line-height: 1.5; }

.highlight-text { color: #f5c518; font-weight: 600; }

.tier-links { margin: 12px 0 4px; display: flex; flex-wrap: wrap; gap: 8px; }

.tier-link { color: #f5c518; font-size: 13px; text-decoration: none; }
.tier-link:hover { text-decoration: underline; }

.sub-cancel {
  color: #666; font-size: 13px; margin-top: 24px;
}

@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px; }
  .shop-card { padding: 20px 12px; }
  .shop-card h3 { font-size: 14px; }
  .shop-card p { font-size: 11px; }
  .shop-link { font-size: 12px; }
  .shop-icon img { width: 28px !important; height: 28px !important; }

  .sub-tiers { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tier-destaque { order: -1; }
  .tier-card { padding: 20px 16px; }
  .tier-price { font-size: 24px; }
  .tier-features li { font-size: 12px; }
  .tier-intro, .tier-desc, .tier-closing { font-size: 12px; }
}

@media (max-width: 768px) {
  .sub-tiers { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tier-destaque { transform: none; order: -1; }
  .tier-destaque:hover { transform: translateY(-4px); }
  .sub-hero h2 { font-size: 28px; }
  .tier-card { max-height: 480px; padding: 16px 10px; }
  .tier-card .tier-body { margin: 0 -4px 12px; padding: 0 4px; }
  .tier-price { font-size: 20px; }
  .tier-name { font-size: 12px; }
  .tier-name small { font-size: 10px; }
  .tier-features li { font-size: 10px; padding: 3px 0; }
  .tier-intro, .tier-desc, .tier-closing, .tier-subhead { font-size: 10px; }
  .tier-header { margin-bottom: 6px; }
  .tier-popular { font-size: 8px; padding: 2px 10px; }
}

/* Merchants */
.merchants {
  background: linear-gradient(180deg, #0a0a0f 0%, #0a0f0d 50%, #0a0a0f 100%);
}

.merchants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.merchant-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
}

.merchant-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1a1a2e 0%, #1f1a2e 100%);
}

.merchant-icon {
  margin-bottom: 20px;
}

.merchant-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.merchant-card p {
  color: #a0a0b0;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Discord */
.discord-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0a14 50%, #0a0a0f 100%);
}
.discord-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 50%, #1a1a2e 100%);
  border: 1px solid rgba(88,101,242,0.15);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.discord-icon {
  margin-bottom: 20px;
}
.discord-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.discord-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #5865F2;
  border-radius: 1px;
}
.discord-card > .discord-content > p {
  color: #a0a0b0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 24px;
}
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5865F2;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .discord-card { padding: 40px 24px; }
  .discord-card h3 { font-size: 22px; }
  .discord-stats { gap: 20px; flex-wrap: wrap; }
}

/* Shop */
.shop {
  background: linear-gradient(180deg, #0d0d16 0%, #0a0d1a 50%, #0d0d16 100%);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.shop-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.shop-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1a1a2e 0%, #1a1d2e 100%);
}

.shop-icon {
  color: #f5c518;
  margin-bottom: 8px;
}

.shop-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}

.shop-card p {
  color: #a0a0b0;
  font-size: 14px;
}

.shop-link {
  color: #f5c518;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

/* Footer */


.footer {
  background: #06060a;
  border-top: 1px solid rgba(245, 197, 24, 0.05);
  padding: 60px 0 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #666;
  font-size: 14px;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a,
.footer-social a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #f5c518;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: #444;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 4px; }
  .shop-card { padding: 12px 6px; gap: 2px; }
  .shop-card h3 { font-size: 11px; }
  .shop-card p { display: none; }
  .shop-link { font-size: 10px; margin-top: 2px; }
  .shop-icon img { width: 24px !important; height: 24px !important; }
  .shop-icon { margin-bottom: 0; }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  }

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

  .nav-links a {
    padding: 12px 0;
    font-size: 16px;
  }

  .user-menu {
    width: 100%;
    display: flex;
  }
  .user-menu-trigger {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 14px;
    font-size: 16px;
  }
  .user-dropdown {
    left: 0;
    right: 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(26,26,46,0.65) 50%, rgba(10,10,15,0.85) 100%),
      url('images/Banner.png') center 30%/cover no-repeat #0a0a0f;
  }
}

/* Login nav button */
.nav-login, .nav-profile {
  background: #f5c518 !important;
  color: #0a0a0f !important;
  padding: 6px 16px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

.nav-login:hover {
  color: #0a0a0f !important;
  background: #ffd84d !important;
}

.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.user-menu-trigger {
  background: none;
  border: 1px solid rgba(245,197,24,0.3);
  color: #f5c518;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.user-trigger-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: #f5c518; color: #0a0a0f;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  overflow: hidden; flex-shrink: 0;
}
.user-avatar.has-img { background: none; }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-menu-trigger:hover {
  border-color: #f5c518;
  background: rgba(245,197,24,0.1);
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 180px;
  padding: 6px;
  display: none;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.user-dropdown.open {
  display: block;
}
.user-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #c0c0d0;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.user-dropdown a:hover {
  background: rgba(245,197,24,0.1);
  color: #f5c518;
}

.nav-cta {
  background: #f5c518 !important;
  color: #0a0a0f !important;
  padding: 5px 14px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  box-shadow: 0 0 16px rgba(245,197,24,0.15);
}
.nav-cta:hover {
  background: #ffd84d !important;
  color: #0a0a0f !important;
  box-shadow: 0 0 24px rgba(245,197,24,0.3);
}

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.modal-content {
  background: #1a1a2e; border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px; padding: 32px; max-width: 400px; width: 100%;
  position: relative;
}

.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: #666;
  font-size: 24px; cursor: pointer;
}

.modal-tabs { display: flex; gap: 0; margin-bottom: 24px; background: #0a0a0f; border-radius: 8px; padding: 4px; }

.tab-btn {
  flex: 1; padding: 10px; border: none; background: transparent;
  color: #666; font-size: 14px; font-weight: 600; cursor: pointer;
  border-radius: 6px; transition: all 0.3s;
}

.tab-btn.active { background: #f5c518; color: #0a0a0f; }

.auth-form h3 { color: #fff; font-size: 20px; margin-bottom: 20px; text-align: center; }

.auth-form input {
  width: 100%; padding: 12px 16px; margin-bottom: 12px;
  background: #0a0a0f; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #e0e0e0; font-size: 14px;
}

.auth-form input:focus { outline: none; border-color: #f5c518; }
.auth-error { color: #ff4444; font-size: 13px; margin-top: 12px; text-align: center; }

/* Gallery CTA */
.gallery-cta { text-align: center; margin-top: 32px; }
.gallery-cta p { color: #a0a0b0; margin-bottom: 12px; font-size: 14px; }

/* Magic link */
.btn-magic {
  width: 100%; padding: 12px; background: transparent; color: #f5c518;
  border: 1px solid rgba(245,197,24,0.3); border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.btn-magic:hover { background: rgba(245,197,24,0.08); border-color: #f5c518; }
.magic-input { width:100%; padding:12px 16px; margin-bottom:8px; background:#0a0a0f; border:1px solid rgba(255,255,255,0.1); border-radius:8px; color:#e0e0e0; font-size:14px; box-sizing:border-box; }
.magic-input:focus { outline:none; border-color:#f5c518; }
.magic-status { margin-top:8px !important; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.auth-divider span { color: #666; font-size: 13px; }

/* Verify code inputs */
.verify-code-inputs { display: flex; gap: 8px; justify-content: center; align-items: center; }
.vc-input {
  width: 44px; height: 52px; text-align: center; font-size: 24px; font-weight: 700;
  background: #0a0a0f; border: 2px solid rgba(255,255,255,0.1); border-radius: 10px;
  color: #f5c518; outline: none; transition: border-color 0.3s;
}
.vc-input:focus { border-color: #f5c518; }

/* Toast */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  padding: 14px 28px; border-radius: 10px; font-size: 14px; font-weight: 600;
  z-index: 5000; opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.toast.show { opacity: 1; }
.toast.success { background: #1a3a1a; color: #4f4; border: 1px solid rgba(68,255,68,0.2); }
.toast.error { background: #3a1a1a; color: #f44; border: 1px solid rgba(255,68,68,0.2); }
