/* ==================== Reset & Base ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.section-header p {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ==================== Gradient Text ==================== */
.gradient-text {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.35);
}

.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1.5px solid #334155;
  padding: 14px 32px;
  font-size: 16px;
}

.btn-outline:hover {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.08);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* ==================== Navigation ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #f1f5f9;
}

.logo-canvas {
  width: 32px;
  height: 32px;
  display: block;
}

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

.nav-links a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: #f1f5f9;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a:not(.btn) {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.badge {
  display: inline-flex;
  padding: 8px 18px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #f472b6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #f8fafc;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #94a3b8;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* ==================== Guide Section ==================== */
.guide {
  background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.03));
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-text h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f1f5f9;
}

.guide-text p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.guide-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(51, 65, 85, 0.3);
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #e2e8f0;
}

.visual-icon {
  color: #ec4899;
}

/* ==================== Shiny Section ==================== */
.shiny {
  background: rgba(168, 85, 247, 0.02);
  border-top: 1px solid rgba(51, 65, 85, 0.2);
  border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

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

.shiny-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.25);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.shiny-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.shiny-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 72, 153, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--icon-color, #ec4899);
}

.shiny-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f1f5f9;
}

.shiny-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ==================== Moveset Section ==================== */
.moveset {
  background: rgba(236, 72, 153, 0.01);
}

.moveset-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.moveset-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.25);
  border-radius: 20px;
  border-left: 4px solid var(--accent, #ec4899);
  transition: all 0.3s ease;
}

.moveset-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.moveset-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.moveset-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.moveset-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
}

.moveset-card > p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.moveset-recommended {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.moveset-recommended h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent, #ec4899);
  margin-bottom: 12px;
}

.moveset-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moveset-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #94a3b8;
}

.moveset-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent, #ec4899);
  font-weight: 700;
}

.moveset-note {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  font-style: italic;
}

.moveset-note a {
  color: #ec4899;
  text-decoration: underline;
}

.moveset-highlight {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.04), rgba(236, 72, 153, 0.04));
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 20px;
}

.moveset-highlight h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fbbf24;
}

.moveset-highlight p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
}

/* ==================== Bonuses Section ==================== */
.bonuses {
  background: rgba(251, 191, 36, 0.01);
  border-top: 1px solid rgba(51, 65, 85, 0.2);
  border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

.bonuses-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  border-color: rgba(236, 72, 153, 0.25);
  transform: translateX(4px);
}

.bonus-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.bonus-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

.bonus-item::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--bonus-icon) center/24px no-repeat;
  background-color: rgba(236, 72, 153, 0.08);
  border-radius: 12px;
}

.bonus-tip {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.04), rgba(168, 85, 247, 0.04));
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 20px;
}

.bonus-tip h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #06b6d4;
}

.bonus-tip p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
}

.bonus-tip a {
  color: #ec4899;
  text-decoration: underline;
}

/* ==================== FAQ ==================== */
.faq {
  background: rgba(236, 72, 153, 0.01);
  border-top: 1px solid rgba(51, 65, 85, 0.2);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(236, 72, 153, 0.3);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta {
  padding: 80px 0;
}

.cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(51, 65, 85, 0.3);
  border-radius: 28px;
}

.cta-card h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.cta-card p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ==================== Footer ==================== */
.footer {
  border-top: 1px solid rgba(51, 65, 85, 0.2);
  padding: 64px 0 32px;
  background: rgba(15, 23, 42, 0.3);
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f1f5f9;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(51, 65, 85, 0.15);
  text-align: center;
}

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

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .section {
    padding: 64px 0;
  }
  .shiny-grid {
    grid-template-columns: 1fr;
  }
  .moveset-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
