/* ============================================================
   Sabel's Library — Kickstarter Landing Page Styles
   Matches the app's dark fantasy aesthetic exactly
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: #040812;
  color: #e8dcc8;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

/* ── Typography ──────────────────────────────────────────── */
.cinzel { font-family: 'Cinzel', serif; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.25;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sabelFloat {
  0%   { transform: translateY(0px)   rotate(-1deg) scale(1); }
  25%  { transform: translateY(-10px) rotate(1deg)  scale(1.02); }
  55%  { transform: translateY(-6px)  rotate(-1deg) scale(1.01); }
  80%  { transform: translateY(-13px) rotate(1.5deg) scale(1.02); }
  100% { transform: translateY(0px)   rotate(-1deg) scale(1); }
}

@keyframes sabelFloatGlow {
  0%, 100% { filter: drop-shadow(0 6px 18px rgba(201,145,58,0.45)) drop-shadow(0 0 40px rgba(201,145,58,0.1)); }
  50%       { filter: drop-shadow(0 12px 28px rgba(201,145,58,0.75)) drop-shadow(0 0 60px rgba(201,145,58,0.2)); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201,145,58,0); }
  50%       { box-shadow: 0 0 24px rgba(201,145,58,0.3); }
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(201,145,58,0.5); }
  50%       { border-color: rgba(201,145,58,1); }
}

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: #8a9ab0;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #e8c060;
  margin-bottom: 16px;
  text-shadow:
    0 0 8px  rgba(201,145,58,0.7),
    0 0 20px rgba(201,145,58,0.4),
    0 0 40px rgba(201,145,58,0.15);
}

.section-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 19px;
  color: #d8cfbc;
  max-width: 600px;
  line-height: 1.75;
}

.divider {
  text-align: center;
  color: #c9913a;
  font-size: 20px;
  letter-spacing: 16px;
  opacity: 0.5;
  padding: 8px 0;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #0f1c2e;
  border: 1px solid #243850;
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(201,145,58,0.45);
  box-shadow: 0 0 20px rgba(201,145,58,0.1);
}

.card-gold {
  border-color: rgba(201,145,58,0.5);
  box-shadow: 0 0 24px rgba(201,145,58,0.12), inset 0 0 40px rgba(201,145,58,0.03);
  animation: goldPulse 3s ease-in-out infinite;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-gold {
  background: rgba(201,145,58,0.12);
  border: 1px solid rgba(201,145,58,0.6);
  color: #e8c060;
}

.btn-gold:hover {
  background: rgba(201,145,58,0.22);
  border-color: #c9913a;
  box-shadow: 0 0 20px rgba(201,145,58,0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(6,12,26,0.7);
  border: 1px solid #1e2d3d;
  color: #e8dcc8;
}

.btn-ghost:hover {
  border-color: #4a7fa8;
  color: #fff;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 1 — HERO              ║
   ╚═══════════════════════════════╝ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/MainPageBackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,8,18,0.62);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.1s ease both;
}

.hero-logo {
  width: clamp(280px, 88vw, 1000px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(59,130,246,0.4));
  margin-top: 0;
}

.title-forums-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: -12px;
  margin-bottom: 6px;
}

.hero-title {
  width: clamp(220px, 52vw, 560px);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(201,145,58,0.5));
  /* Sabel_title.png has 386px of transparent bottom out of 1024px total.
     margin-bottom compensates: -(386/1024) * (1024/1536) * width ≈ -0.2513 * width */
  margin-bottom: clamp(-141px, -13.05vw, -55px);
  pointer-events: none; /* image overlaps buttons due to negative margin — pass clicks through */
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(12px, 1.6vw, 15px);
  color: #c9913a;
  letter-spacing: 1px;
  text-align: center;
  max-width: 560px;
  padding: 0 20px;
  margin-bottom: 12px;
  text-shadow:
    0 0 8px  rgba(201,145,58,0.9),
    0 0 20px rgba(201,145,58,0.6),
    0 0 40px rgba(201,145,58,0.3);
  line-height: 1.8;
}

.hero-badge {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9913a;
  border: 1px solid rgba(201,145,58,0.5);
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 14px;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.hero-cta {
  margin-bottom: 24px;
}

.hero-btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.forums-btn {
  display: inline-block;
  transition: transform 0.2s, filter 0.2s;
}

.forums-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 4px 18px rgba(201,145,58,0.55));
}

.forums-btn-img {
  width: clamp(153px, 23.8vw, 272px);
  height: auto;
}

.discord-btn-img {
  width: clamp(121px, 18.9vw, 215px);
  height: auto;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, #040812 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll span {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9913a;
}

.hero-scroll svg {
  color: #c9913a;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1;   }
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 2 — MEET SABEL        ║
   ╚═══════════════════════════════╝ */
#meet-sabel {
  background: linear-gradient(180deg, #040812 0%, #060d1c 50%, #040812 100%);
}

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

@media (min-width: 720px) {
  .sabel-grid {
    grid-template-columns: 42% 1fr;
    gap: 60px;
  }
}

.sabel-portrait-wrap {
  display: flex;
  justify-content: center;
}

.sabel-portrait {
  width: clamp(220px, 80vw, 420px);
  height: auto;
  animation: sabelFloat 5.5s ease-in-out infinite, sabelFloatGlow 5.5s ease-in-out infinite;
  border-radius: 12px;
}

.sabel-text-card {
  background: rgba(6,12,26,0.88);
  border: 1px solid rgba(201,145,58,0.25);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  padding: clamp(24px, 4vw, 44px);
}

.sabel-quote {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: #c9bfa8;
  border-left: 2px solid rgba(201,145,58,0.4);
  padding-left: 16px;
  margin-top: 20px;
  line-height: 1.8;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 3 — HOW IT WORKS      ║
   ╚═══════════════════════════════╝ */
#how-it-works {
  background: #040812;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(201,145,58,0.32);
  line-height: 1;
  margin-bottom: 12px;
}

.step-heading {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: #e8c060;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  color: #9daab8;
  line-height: 1.7;
}

/* connector dots between steps on desktop */
@media (min-width: 640px) {
  .step-card:not(:last-child)::after {
    content: '✦';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(201,145,58,0.3);
    font-size: 16px;
  }
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 4 — FEATURES          ║
   ╚═══════════════════════════════╝ */
#features {
  background: linear-gradient(180deg, #040812 0%, #060d1c 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 540px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 28px 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-heading {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: #e8c060;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.feature-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  color: #9daab8;
  line-height: 1.65;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 5 — PRICING           ║
   ╚═══════════════════════════════╝ */
#pricing {
  background: #040812;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-tier {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: #e8dcc8;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 16px;
  color: #8a9ab0;
  font-weight: 400;
}

.pricing-sub {
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  color: #8a9ab0;
  margin-bottom: 24px;
}

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

.pricing-features li {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  color: #d8cfbc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✦';
  color: #c9913a;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}

.pricing-card.card-gold .pricing-price {
  color: #e8c060;
  text-shadow: 0 0 12px rgba(201,145,58,0.4);
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  STRETCH GOALS                 ║
   ╚═══════════════════════════════╝ */
#stretch-goals {
  background: #040812;
}

.stretch-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: #0f1c2e;
  border: 1px dashed rgba(201,145,58,0.4);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.stretch-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.stretch-text { flex: 1; }

.stretch-heading {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #e8c060;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.stretch-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  color: #9daab8;
  line-height: 1.7;
}

.stretch-status {
  position: absolute;
  top: -1px;
  right: 20px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9913a;
  background: #040812;
  padding: 0 10px;
  transform: translateY(-50%);
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  SECTION 6 — EMAIL CAPTURE     ║
   ╚═══════════════════════════════╝ */
#notify {
  background: linear-gradient(180deg, #040812 0%, #06101f 100%);
  text-align: center;
}

.notify-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 36px;
  background: rgba(6,12,26,0.88);
  border: 1px solid rgba(201,145,58,0.25);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 480px) {
  .notify-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.notify-input {
  flex: 1;
  background: rgba(4,8,18,0.8);
  border: 1px solid #1e2d3d;
  border-radius: 7px;
  color: #e8dcc8;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.notify-input::placeholder { color: #4a5a70; }

.notify-input:focus {
  border-color: rgba(201,145,58,0.5);
}

.notify-btn {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 12px;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  FOOTER                        ║
   ╚═══════════════════════════════╝ */
#footer {
  background: #020509;
  border-top: 1px solid rgba(201,145,58,0.12);
  padding: 40px 0 32px;
  text-align: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 1; }

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: #5a6a80;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-copy {
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  color: #5a6a80;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  OUR STORY                     ║
   ╚═══════════════════════════════╝ */
#our-story {
  background: linear-gradient(180deg, #040812 0%, #060d1c 100%);
}

.story-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(6,12,26,0.88);
  border: 1px solid rgba(201,145,58,0.22);
  border-left: 3px solid rgba(201,145,58,0.6);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  padding: clamp(28px, 5vw, 52px);
}

.story-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  color: #d8cfbc;
  line-height: 1.85;
  margin-bottom: 24px;
}

.story-signature {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #c9913a;
  letter-spacing: 1.5px;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  WHO IT'S FOR                  ║
   ╚═══════════════════════════════╝ */
#who-its-for {
  background: #040812;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

.audience-card {
  padding: 32px 24px;
  text-align: center;
}

.audience-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.audience-heading {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: #e8c060;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.audience-body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  color: #9daab8;
  line-height: 1.7;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  FAQ                           ║
   ╚═══════════════════════════════╝ */
#faq {
  background: linear-gradient(180deg, #040812 0%, #060d1c 100%);
}

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

.faq-list details {
  background: #0f1c2e;
  border: 1px solid #243850;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-list details[open] {
  border-color: rgba(201,145,58,0.4);
}

.faq-list summary {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: #e8dcc8;
  letter-spacing: 0.3px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

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

.faq-list summary::after {
  content: '✦';
  color: #c9913a;
  font-size: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary:hover {
  color: #e8c060;
}

.faq-answer {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  color: #9daab8;
  line-height: 1.75;
  padding: 0 24px 20px;
  border-top: 1px solid #1a2a3a;
  margin-top: 0;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  PLATFORM STRIP                 ║
   ╚═══════════════════════════════╝ */
#platforms {
  background: #07111e;
  border-top: 1px solid rgba(201,145,58,0.1);
  border-bottom: 1px solid rgba(201,145,58,0.1);
  padding: 32px 0;
}

.platforms-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: #8a9ab0;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

.platforms-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f1c2e;
  border: 1px solid #243850;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Cinzel', serif;
  color: #d8cfbc;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.platform-badge:hover {
  border-color: rgba(201,145,58,0.45);
  box-shadow: 0 0 14px rgba(201,145,58,0.08);
}

.platform-badge svg {
  flex-shrink: 0;
}

.platform-badge.coming-soon {
  opacity: 0.55;
  border-style: dashed;
}

.platform-badge.coming-soon .badge-sub {
  font-family: 'Crimson Text', serif;
  font-size: 11px;
  color: #c9913a;
  font-style: italic;
  letter-spacing: 0;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

/* ── ╔═══════════════════════════════╗ ─────────────────────
   ║  ALPHA SIGN-UP                 ║
   ╚═══════════════════════════════╝ */
#alpha {
  background: linear-gradient(180deg, #040812 0%, #060d1c 100%);
}

.alpha-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 36px;
  background: rgba(6,12,26,0.88);
  border: 1px solid rgba(201,145,58,0.25);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.alpha-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.alpha-input {
  width: 100%;
  background: rgba(4,8,18,0.8);
  border: 1px solid #1e2d3d;
  border-radius: 7px;
  color: #e8dcc8;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 17px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.alpha-input::placeholder { color: #4a5a70; }

.alpha-input:focus {
  border-color: rgba(201,145,58,0.5);
}

.alpha-input.error {
  border-color: rgba(239,68,68,0.6);
}

.alpha-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5a70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(4,8,18,0.8);
  padding-right: 36px;
}

.alpha-select option { background: #0a1120; }

.btn-alpha {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(201,145,58,0.12);
  border: 1px solid rgba(201,145,58,0.6);
  color: #e8c060;
}

.btn-alpha:hover {
  background: rgba(201,145,58,0.22);
  border-color: #c9913a;
  box-shadow: 0 0 20px rgba(201,145,58,0.25);
  transform: translateY(-1px);
}

.btn-alpha:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
