/* âââââââââââââââââââââââââââââââââââââââââââ
   Forcisos Hub â Public / Frontend Styles v2.0.0
   âââââââââââââââââââââââââââââââââââââââââââ */

:root {
    --fc-navy: #0A1628;
    --fc-cyan: #00B4D8;
    --fc-orange: #FF6B35;
    --fc-steel: #1A3A5C;
    --fc-ice: #F0F4F8;
    --fc-green: #5cb85c;
    --fc-red: #d9534f;
}

/* âââ User Dashboard âââ */
.fc-dashboard {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    font-family: 'Open Sans', sans-serif;
}
.fc-dash-sidebar {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.fc-dash-user { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.fc-dash-avatar {
    width: 60px; height: 60px;
    background: var(--fc-cyan);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700;
    margin: 0 auto 10px;
    font-family: 'Inter', sans-serif;
}
.fc-dash-avatar-wrap {
    width: 70px; height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 3px solid var(--fc-cyan);
}
.fc-dash-avatar-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.fc-dash-name { font-weight: 700; color: var(--fc-navy); font-size: 16px; }
.fc-dash-email { font-size: 13px; color: #888; margin-top: 3px; }
.fc-dash-role {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    background: var(--fc-ice);
    color: var(--fc-steel);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.fc-dash-nav { display: flex; flex-direction: column; gap: 4px; }
.fc-dash-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--fc-steel);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: all .2s;
}
.fc-dash-nav a:hover { background: var(--fc-ice); color: var(--fc-cyan); }
.fc-dash-nav a.active { background: var(--fc-cyan); color: #fff; }
.fc-nav-icon { font-size: 16px; width: 20px; text-align: center; }
.fc-nav-logout { margin-top: 10px; border-top: 1px solid #eee; padding-top: 14px !important; color: #999 !important; }

.fc-dash-content { min-height: 400px; }
.fc-dash-content h2 { color: var(--fc-navy); font-family: 'Inter', sans-serif; font-size: 24px; margin: 0 0 20px; }
.fc-dash-content h3 { color: var(--fc-navy); font-family: 'Inter', sans-serif; font-size: 18px; margin: 20px 0 12px; }

/* Stats */
.fc-dash-stats { display: flex; gap: 16px; margin-bottom: 30px; }
.fc-dash-stat {
    flex: 1;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.fc-dash-stat-num { font-size: 32px; font-weight: 700; color: var(--fc-navy); }
.fc-dash-stat-label { font-size: 13px; color: #888; margin-top: 4px; }

/* Training cards (overview) */
.fc-dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.fc-dash-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 20px;
}
.fc-dash-card-title { font-weight: 700; color: var(--fc-navy); font-size: 15px; margin-bottom: 6px; }
.fc-dash-card-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.fc-dash-card-date { font-size: 13px; color: var(--fc-steel); font-weight: 600; margin-bottom: 8px; }
.fc-dash-card-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Certificate card */
.fc-cert-card { text-align: center; }
.fc-cert-icon { font-size: 40px; margin-bottom: 10px; }
.fc-btn-small { padding: 6px 16px; font-size: 12px; }

/* Avatar upload section */
.fc-avatar-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--fc-ice);
    border-radius: 12px;
}
.fc-avatar-preview {
    width: 90px; height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--fc-cyan);
    flex-shrink: 0;
}
.fc-avatar-preview img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.fc-avatar-actions { display: flex; flex-direction: column; gap: 6px; }
.fc-avatar-actions small { color: #888; font-size: 12px; }

/* Dashboard table */
.fc-dash-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    overflow: hidden;
}
.fc-dash-table thead th {
    background: var(--fc-ice);
    padding: 12px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--fc-steel);
}
.fc-dash-table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.fc-dash-table tbody tr:hover { background: #fafbfc; }

/* User badges */
.fc-user-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.fc-badge-confirmed, .fc-badge-completed, .fc-badge-paid, .fc-badge-active { background: var(--fc-green); }
.fc-badge-pending, .fc-badge-unpaid { background: var(--fc-orange); }
.fc-badge-cancelled, .fc-badge-refunded, .fc-badge-failed { background: var(--fc-red); }
.fc-badge-processing { background: var(--fc-cyan); }

/* Empty state */
.fc-dash-empty {
    text-align: center;
    padding: 50px;
    background: var(--fc-ice);
    border-radius: 12px;
    color: #888;
}
.fc-dash-empty p { margin-bottom: 15px; font-size: 16px; }

/* Buttons */
.fc-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--fc-cyan);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--fc-cyan);
    cursor: pointer;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}
.fc-btn:hover { background: #0099b8; border-color: #0099b8; color: #fff; }
.fc-btn-outline { background: transparent; color: var(--fc-cyan); }
.fc-btn-outline:hover { background: var(--fc-cyan); color: #fff; }
.fc-btn-lg { padding: 14px 36px; font-size: 16px; }
.fc-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Forms */
.fc-user-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 5px; color: var(--fc-steel); }
.fc-user-form input, .fc-user-form textarea, .fc-user-form select {
    width: 100%; padding: 10px 14px;
    border: 1px solid #d0d5dd; border-radius: 8px;
    font-size: 14px; font-family: 'Open Sans', sans-serif;
    transition: border-color .2s;
}
.fc-user-form input:focus, .fc-user-form textarea:focus {
    border-color: var(--fc-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
.fc-form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.fc-form-group { flex: 1; }
.fc-form-group.fc-full { flex: 100%; }
.fc-form-msg { margin-left: 10px; font-size: 13px; font-weight: 600; }

/* âââ Cart âââ */
.fc-cart { max-width: 800px; margin: 30px auto; font-family: 'Open Sans', sans-serif; }
.fc-cart h2 { font-family: 'Inter', sans-serif; color: var(--fc-navy); }
.fc-cart-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    margin-bottom: 10px;
}
.fc-cart-item-info { flex: 1; }
.fc-cart-item-title { font-weight: 700; color: var(--fc-navy); }
.fc-cart-item-price { font-size: 18px; font-weight: 700; color: var(--fc-navy); min-width: 100px; text-align: right; }
.fc-cart-item-remove { cursor: pointer; color: #ccc; font-size: 20px; padding: 5px; }
.fc-cart-item-remove:hover { color: var(--fc-red); }
.fc-cart-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px;
    background: var(--fc-ice);
    border-radius: 10px;
    margin: 20px 0;
    font-size: 18px; font-weight: 700; color: var(--fc-navy);
}
.fc-cart-actions { display: flex; gap: 12px; justify-content: flex-end; }
.fc-cart-loading { text-align: center; padding: 40px; color: #999; }

/* âââ Checkout âââ */
.fc-checkout { max-width: 1000px; margin: 30px auto; font-family: 'Open Sans', sans-serif; }
.fc-checkout h2 { font-family: 'Inter', sans-serif; color: var(--fc-navy); }
.fc-checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.fc-checkout-form { }
.fc-checkout-form h3 { color: var(--fc-navy); font-family: 'Inter', sans-serif; font-size: 16px; margin: 25px 0 12px; }
.fc-checkout-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 5px; color: var(--fc-steel); }
.fc-checkout-form input, .fc-checkout-form textarea, .fc-checkout-form select {
    width: 100%; padding: 10px 14px;
    border: 1px solid #d0d5dd; border-radius: 8px;
    font-size: 14px; font-family: 'Open Sans', sans-serif;
}
.fc-checkout-form input:focus, .fc-checkout-form textarea:focus {
    border-color: var(--fc-cyan); outline: none;
    box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
.fc-checkout-summary {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.fc-checkout-summary h3 { color: var(--fc-navy); font-family: 'Inter', sans-serif; margin: 0 0 15px; }
.fc-checkout-totals { margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.fc-checkout-total-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.fc-checkout-total-row.fc-grand-total { font-size: 18px; font-weight: 700; color: var(--fc-navy); border-top: 2px solid var(--fc-navy); padding-top: 12px; margin-top: 8px; }

.fc-coupon-section { margin: 20px 0; }
.fc-coupon-row { display: flex; gap: 10px; }
.fc-coupon-row input { flex: 1; }
.fc-error-msg { color: var(--fc-red); font-size: 14px; margin-top: 12px; font-weight: 600; }

/* âââ Confirmation âââ */
.fc-confirmation { max-width: 600px; margin: 50px auto; text-align: center; font-family: 'Open Sans', sans-serif; }
.fc-confirm-icon { font-size: 60px; color: var(--fc-green); margin-bottom: 10px; }
.fc-confirmation h2 { font-family: 'Inter', sans-serif; color: var(--fc-navy); margin-bottom: 10px; }
.fc-confirm-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; }

/* âââ Catalog âââ */
.fc-catalog { max-width: 1200px; margin: 0 auto; padding: 20px 0; font-family: 'Open Sans', sans-serif; }
.fc-catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.fc-catalog-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow .2s;
}
.fc-catalog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.fc-catalog-level {
    display: inline-block;
    padding: 3px 10px;
    background: var(--fc-ice);
    color: var(--fc-steel);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}
.fc-catalog-title { color: var(--fc-navy); font-family: 'Inter', sans-serif; font-size: 18px; margin: 0 0 8px; }
.fc-catalog-desc { color: #666; font-size: 13px; line-height: 1.5; margin-bottom: 12px; }
.fc-catalog-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.fc-catalog-meta span { font-size: 12px; color: #888; background: var(--fc-ice); padding: 3px 8px; border-radius: 4px; }
.fc-catalog-price { margin-bottom: 15px; }
.fc-catalog-price del { color: #999; font-size: 14px; margin-right: 6px; }
.fc-catalog-price strong { font-size: 22px; color: var(--fc-navy); }
.fc-catalog-currency { font-size: 13px; color: #888; }

/* Add to cart button */
.fc-add-to-cart-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--fc-cyan);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: 'Inter', sans-serif;
}
.fc-add-to-cart-btn:hover { background: #0099b8; }
.fc-add-to-cart-btn.added { background: var(--fc-green); }

/* âââ Responsive âââ */
@media (max-width: 768px) {
    .fc-dashboard { grid-template-columns: 1fr; }
    .fc-dash-sidebar { position: static; }
    .fc-dash-nav { flex-direction: row; flex-wrap: wrap; }
    .fc-checkout-grid { grid-template-columns: 1fr; }
    .fc-form-row { flex-direction: column; }
    .fc-dash-stats { flex-direction: column; }
    .fc-cart-actions { flex-direction: column; }
    .fc-avatar-section { flex-direction: column; text-align: center; }
}



/* âââ Homepage Content Styles âââ */

.fc-hero-new {
  background: linear-gradient(135deg, #1B2A4A 0%, #0D1B2A 100%);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}
.fc-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fc-hero-badge {
  display: inline-block;
  background: rgba(0,188,212,0.15);
  color: #00BCD4;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.fc-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}
.fc-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #B0BEC5;
  margin: 0 0 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.fc-hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.fc-hero-note {
  font-size: 13px;
  color: #78909C;
  margin-top: 8px;
}

/* Buttons */
.fc-btn-primary {
  display: inline-block;
  background: #E63946;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.fc-btn-primary:hover {
  background: #d32f3a;
  transform: translateY(-1px);
  color: #fff !important;
}
.fc-btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}
.fc-btn-outline {
  display: inline-block;
  background: transparent;
  color: #00BCD4 !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #00BCD4;
  transition: all 0.2s;
}
.fc-btn-outline:hover {
  background: rgba(0,188,212,0.1);
  color: #00BCD4 !important;
}

/* Sections */
.fc-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.fc-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 12px;
}
.fc-section-desc {
  font-size: 17px;
  color: #546E7A;
  margin: 0 0 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Level Cards */
.fc-levels {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}
.fc-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.fc-level-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.fc-level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.fc-level-featured {
  border-color: #e2e8f0;
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.fc-level-tag {
  display: inline-block;
  background: #E0F7FA;
  color: #00838F;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.fc-level-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 8px 0;
}
.fc-level-card .fc-price {
  font-size: 18px;
  color: #546E7A;
  margin: 8px 0 16px;
}
.fc-price span {
  font-size: 36px;
  font-weight: 700;
  color: #1B2A4A;
}
.fc-level-card p {
  color: #546E7A;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Why Forcisos */
.fc-why {
  background: linear-gradient(180deg, #eef2f7 0%, #e8edf5 100%);
}
.fc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.fc-why-card {
  background: #F8FAFB;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.fc-why-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.fc-why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 8px;
}
.fc-why-card p {
  font-size: 14px;
  color: #546E7A;
  line-height: 1.5;
}

/* Exam Process */
.fc-process {
  background: linear-gradient(135deg, #1B2A4A 0%, #0D1B2A 100%);
  color: #fff;
  padding: 60px 20px;
  max-width: 100%;
}
.fc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.fc-step {
  text-align: center;
  padding: 20px;
}
.fc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #00BCD4;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fc-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 6px;
}
.fc-step p {
  font-size: 13px;
  color: #78909C;
}


/* Dark section text overrides */
.fc-process .fc-section-title,
.fc-nft .fc-section-title { color: #fff; }
.fc-process .fc-section-desc,
.fc-nft .fc-section-desc { color: #B0BEC5; }
.fc-process .fc-step h4 { color: #fff; }
.fc-process .fc-step p { color: #B0BEC5; }

/* NFT / Blockchain Credentials */
.fc-nft {
  background: linear-gradient(135deg, #1B2A4A 0%, #0D1B2A 100%);
  color: #fff;
  padding: 60px 20px;
  max-width: 100%;
}
.fc-nft-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.fc-nft-text {
  flex: 1;
  min-width: 300px;
}
.fc-nft-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}
.fc-nft-text p {
  color: #B0BEC5;
  line-height: 1.6;
  margin-bottom: 16px;
}
.fc-nft-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fc-nft-features li {
  color: #B0BEC5;
  padding: 4px 0;
  font-size: 14px;
}
.fc-nft-features li::before {
  content: "\2713 ";
  color: #00BCD4;
  font-weight: 700;
}
.fc-nft-visual {
  flex: 0 0 260px;
  text-align: center;
}
.fc-nft-card-mock {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  border-radius: 16px;
  padding: 30px 20px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,188,212,0.3);
}
.fc-nft-badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.fc-nft-title {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0;
}
.fc-nft-holder {
  font-size: 14px;
  opacity: 0.9;
}
.fc-nft-id {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 12px;
  font-family: monospace;
}

/* Job Market */
.fc-jobs {
  background: linear-gradient(180deg, #eef2f7 0%, #e8edf5 100%);
}
.fc-jobs-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.fc-jobs-card {
  background: #F8FAFB;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.fc-jobs-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 6px;
}
.fc-jobs-card p {
  font-size: 13px;
  color: #546E7A;
  line-height: 1.5;
}
.fc-jobs-cta-note {
  font-size: 13px;
  color: #78909C;
  margin-top: 8px;
}

/* Annual Membership */
.fc-membership {
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f3f8 100%);
  padding: 60px 20px;
}
.fc-membership-card {
  background: linear-gradient(135deg, #1B2A4A, #263952);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.fc-membership-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.fc-membership-price {
  font-size: 14px;
  color: #B0BEC5;
  margin-bottom: 20px;
}
.fc-membership-price span {
  font-size: 36px;
  font-weight: 700;
  color: #00BCD4;
}
.fc-membership-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.fc-membership-perks li {
  color: #B0BEC5;
  padding: 6px 0;
  font-size: 14px;
}
.fc-membership-perks li::before {
  content: "\2713 ";
  color: #00BCD4;
  font-weight: 700;
}
.fc-membership-note {
  font-size: 12px;
  color: #78909C;
  margin-top: 12px;
}

/* Final CTA */
.fc-final-cta {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  max-width: 100%;
}
.fc-final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}
.fc-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.fc-final-cta .fc-btn-primary {
  background: #fff;
  color: #1B2A4A !important;
}
.fc-final-cta .fc-btn-primary:hover {
  background: #F0F0F0;
}
.fc-final-cta .fc-btn-outline {
  border-color: #fff;
  color: #fff !important;
}
.fc-final-cta .fc-btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .fc-hero-title { font-size: 32px; }
  .fc-hero-new { padding: 50px 16px 40px; }
  .fc-section-title { font-size: 28px; }
  .fc-nft-inner { flex-direction: column; }
  .fc-nft-visual { flex: auto; }
  .fc-membership-card { padding: 28px 20px; }
}


/* ===== Portal Picker v2.0.3 ===== */
.fc-portal-picker-wrap {
    position: relative;
    display: inline-block;
}
.fc-portal-picker {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 2px 10px rgba(0,0,0,0.08);
    z-index: 99999;
    overflow: hidden;
    animation: fcPpFadeIn 0.2s ease;
}
.fc-pp-open .fc-portal-picker {
    display: block;
}
@keyframes fcPpFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.fc-pp-title {
    padding: 16px 20px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}
.fc-pp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none !important;
    color: #1e293b !important;
    transition: background 0.15s ease;
    flex-wrap: wrap;
}
.fc-pp-item:hover {
    background: #f0fdfa;
}
.fc-pp-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 8px;
    flex-shrink: 0;
}
.fc-pp-item:hover .fc-pp-icon {
    background: #ccfbf1;
}
.fc-pp-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}
.fc-pp-desc {
    font-size: 12px;
    color: #94a3b8;
    width: 100%;
    padding-left: 44px;
    margin-top: -4px;
}
.fc-pp-item:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .fc-portal-picker {
        width: 260px;
        right: -20px;
    }
}

/* Member Login Button */
.fc-member-login {
  display: inline-block !important;
  padding: 10px 20px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
}
.fc-member-login:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}
