/* --- REUSABLE UI CLASSES --- */
.card {
  background: var(--card-bg);
  color: #fff;
  border-left: 4px solid var(--gold);
  padding: 32px 32px 24px 32px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
}

.section-container {
  width: 80%;
  margin: 40px auto;
  padding: 1.5rem;
  background: var(--card-bg);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 8px;
}

.section-heading {
  color: var(--gold);
  font-size: 2.2rem;
  font-family: var(--serif);
  margin-bottom: 18px;
  text-align: center;
}
/* StrikeZone Theme & Custom Design Tokens */
:root {
  --dark: #04180f;
  --dark-mid: #072f1d;
  --green: #EDB219;
  --green-mid: #0d3d27;
  --green-lite: rgba(237, 178, 25, 0.1);
  --green-bdr: #0d3d27;
  --gold: #EDB219;
  --gold-dark: #c49110;
  --gold-lite: rgba(237, 178, 25, 0.15);
  --cream: #072F1D;
  --warm-white: #072F1D;
  --stone: #0D3D27;
  --stone-mid: #145938;
  --ink: #FFFFFF;
  --ink-mid: #E5EDE9;
  --ink-light: #B5C7BE;
  --ink-faint: #7a9e94;
  --danger: #dc2626;
  --success: #16a34a;
  --card-bg: #0D3D27;
  
  /* Typography */
  --sans: 'DM Sans', sans-serif;
  --serif: 'Fraunces', serif;
  
  /* Spacing & Borders */
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.35);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* --- NAVBAR STYLES --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--r);
  transition: var(--transition);
}

.nav-links a i {
  font-size: 0.95em;
  width: 1.2em;
  text-align: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--r) !important;
  box-shadow: 0 4px 12px rgba(255, 209, 0, 0.2);
}

.nav-cta:hover {
  background: #ffe033 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 209, 0, 0.3);
}

.nav-hamburger {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
}

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

.mobile-menu a {
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-menu .nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}

/* --- BUTTONS --- */
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 28px;
    border-radius: var(--r);
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 209, 0, 0.25);
}

/* Update age-card to use dark surface styling */
.age-card {
    background: var(--card-bg) !important;
    color: var(--ink) !important;
    border: 1px solid var(--stone-mid) !important;
}

.age-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s forwards ease-out;
    animation-delay: 0.2s;
}

.btn-gold,
.btn-ghost-light,
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r);
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(255, 209, 0, 0.25);
}

.btn-gold:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 209, 0, 0.35);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0, 59, 47, 0.25);
}

.btn-ghost-dark:hover {
  background: rgba(0, 59, 47, 0.05);
  transform: translateY(-2px);
  color: var(--dark);
}

/* --- PREMIUM HERO SECTION --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #00221a 0%, #003b2f 50%, #005240 100%);
  color: #fff;
}

/* Elegant geometric background grid/lines overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(255, 209, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 132, 61, 0.25) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255, 209, 0, 0.015) 0px, rgba(255, 209, 0, 0.015) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(0, 132, 61, 0.02) 0px, rgba(0, 132, 61, 0.02) 1px, transparent 1px, transparent 50px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 209, 0, 0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}

.stat-item h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scenic fallback graphic for hero visual representation */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pitch-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  background: radial-gradient(circle at center, #00843d 20%, #004d3a 80%);
  border-radius: 24px;
  border: 4px solid var(--green-bdr);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Pitch line markings overlay */
.pitch-graphic::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pitch-graphic::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  top: 50%;
}

.pitch-graphic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
}

.pitch-graphic-content i {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.pitch-graphic-content h4 {
  color: #fff;
  font-size: 24px;
  font-family: var(--sans);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* --- SECTION STYLES --- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--warm-white);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

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

.section-kicker {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-dark .section-kicker {
  color: var(--gold);
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--ink-light);
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* --- PREMIUM CARDS & GRIDS --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

        .card {
            background: var(--card-bg);
            border-radius: var(--r-lg);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        /* Premium compliance card styling */
        .compliance-card {
            background: var(--dark-mid);
            border: 2px solid var(--gold);
            color: var(--ink);
        }
        .compliance-card h3 {
            color: var(--gold);
        }
        .compliance-card .form-group label {
            color: var(--ink-mid);
        }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-bdr);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r);
  background: var(--green-lite);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  font-family: var(--sans);
}

.card p {
  color: var(--ink-light);
  font-size: 16px;
  line-height: 1.6;
}

/* --- AGE GROUPS / PATHWAY SECTION --- */
.age-pill {
  display: inline-block;
  background: var(--gold-lite);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.age-card {
  background: var(--warm-white);
  border: 1px solid var(--stone-mid);
}

.age-card:hover {
  border-color: var(--gold);
}

.age-card::before {
  background: var(--gold);
}

/* --- UNIQUE RULES SECTION --- */
.rule-card {
  background: var(--dark-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.rule-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.rule-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 209, 0, 0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.rule-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 500;
}

.rule-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 24px;
}

.rule-list {
  list-style: none;
}

.rule-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.rule-list li::before {
  content: '\f058'; /* fa-check-circle */
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
}

/* --- PREMIUM INTERACTIVE FORM --- */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-side {
  padding: 56px;
}

.contact-info-side {
  background: var(--dark);
  color: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(0, 132, 61, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info-side h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-side p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item i {
  font-size: 20px;
  color: var(--gold);
  width: 24px;
  text-align: center;
  margin-top: 4px;
}

.info-item h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000000; /* black label text */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--stone-mid);
    border-radius: var(--r);
    background: #ffffff; /* white background for inputs */
    color: var(--dark); /* dark text for contrast */
    box-sizing: border-box;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(237, 178, 25, 0.2);
}

/* Ensure compliance card form groups display inline for checkboxes */
.compliance-card .form-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.compliance-card .form-group label {
    color: #000000; /* black label text */
    margin: 0;
    font-weight: 500;
    margin-left: 0 !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* --- FOOTER --- */
.footer {
  background: #001a14;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--sans);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 15px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info-side {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- BLAZOR TEMPLATE STYLES PRESERVATION --- */
h1:focus {
  outline: none;
}

.valid.modified:not([type=checkbox]) {
  outline: 2px solid var(--success);
}

.invalid {
  outline: 2px solid var(--danger);
}

.validation-message {
  color: var(--danger);
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC51NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljc4OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA5Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, var(--danger);
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

.blazor-error-boundary::after {
  content: "An error has occurred."
}

.darker-border-checkbox.form-check-input {
  border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--ink-light);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.--card-protea-surface,
.card-protea-surface {
  background: #0D3D27 !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--r-lg) !important;
  padding: 32px !important;
  margin-top: 24px !important;
  box-shadow: var(--shadow-lg) !important;
}

.text-gold {
  color: var(--gold) !important;
}
.btn-gold:disabled, .btn-gold[disabled] {
  background: #55441a !important;
  color: rgba(255,255,255,0.4) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}