
/* LARGE spacing for header menu on desktop */
.primary-nav {
    gap: 41px !important;
}

/* LARGE spacing for footer menu on desktop */
.footer-links {
    gap: 28px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    /* Reduce header spacing for mobile */
    .primary-nav {
        gap: 14px !important;
    }

    /* Reduce footer spacing for mobile */
    .footer-links {
        gap: 20px !important;
    }
}
/* Premium Secure Checkout Button */
.p1-stripe-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #36cfc9, #1677ff);
    border-radius: 999px;
    color: #05070b;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(22, 119, 255, 0.45);
    transition: 0.25s ease-out;
    border: none;
}

.p1-stripe-checkout-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 40px rgba(22, 119, 255, 0.85);
}
/* Add spacing under the checkout button */
.p1-product-cta {
    margin-bottom: 22px !important; /* adjust the value to your liking */
}
/* Remove bullet dots, keep checkmark icons */
.p1-product-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Align checkmark icons & text cleanly */
.p1-product-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* Keep checkmark icons crisp */
.p1-product-list li span {
    display: inline-block;
    font-size: 16px;
    color: #36cfc9;
    margin-top: 1px;
}
/* === P1 HOME LAYOUT === */

.p1-home {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HERO */

.p1-hero {
  border-radius: 24px;
  background: radial-gradient(circle at top left, #1f2937 0, #05070b 55%);
  border: 1px solid #1e2636;
  padding: 26px 22px 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.75);
}

.p1-hero-inner {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .p1-hero-inner {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

.p1-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.9);
  font-size: 11px;
  color: #a0a7b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.p1-hero-badge span {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(54, 207, 201, 0.12);
  color: #36cfc9;
  font-weight: 600;
}

.p1-hero-copy h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.p1-hero-copy p {
  font-size: 14px;
  color: #a0a7b8;
  max-width: 620px;
}

.p1-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.p1-hero-btn-main,
.p1-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease-out;
}

.p1-hero-btn-main {
  background: linear-gradient(135deg, #36cfc9, #1677ff);
  color: #05070b;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.55);
}

.p1-hero-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(22, 119, 255, 0.8);
}

.p1-hero-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

.p1-hero-btn-ghost:hover {
  border-color: #36cfc9;
  color: #36cfc9;
}

.p1-hero-meta {
  margin-top: 10px;
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.p1-hero-side {
  display: grid;
  gap: 12px;
}

.p1-hero-stat-card {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #1e2636;
  background: radial-gradient(circle at top left, #0b1220 0, #020617 60%);
}

.p1-hero-stat-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.p1-hero-stat-value {
  font-size: 20px;
  font-weight: 600;
}

.p1-hero-stat-note {
  font-size: 12px;
  color: #a0a7b8;
}

/* GENERIC SECTION STYLING */

.p1-section {
  border-radius: 22px;
  border: 1px solid #1e2636;
  background: radial-gradient(circle at top left, #111827 0, #05070b 55%);
  padding: 22px 20px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.8);
}

.p1-section-header {
  margin-bottom: 14px;
}

.p1-section-header h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.p1-section-header p {
  margin: 0;
  font-size: 13px;
  color: #a0a7b8;
}

/* VIDEO */

.p1-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #020617;
}

.p1-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ABOUT */

.p1-about-inner {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .p1-about-inner {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  }
}

.p1-about-text p {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 0.9em;
}

.p1-about-card {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid #1e2636;
  background: radial-gradient(circle at top left, #020617 0, #020617 60%);
}

.p1-about-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 15px;
}

.p1-about-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #cbd5f5;
}

/* TRUST SECTION */

.p1-trust-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p1-trust-widget {
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 10px;
  background: rgba(15, 23, 42, 0.9);
}

.p1-trust-note {
  font-size: 11px;
  color: #9ca3af;
}

/* WHY / FEATURES GRID */

.p1-why-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .p1-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 600px) and (max-width: 799px) {
  .p1-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p1-why-card {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #1e2636;
  background: radial-gradient(circle at top left, #020617 0, #020617 60%);
}

.p1-why-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.p1-why-card p {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
}

/* PRODUCT & CHECKOUT (if not already added) */

.p1-product-section {
  margin: 10px 0 0;
}

.p1-product-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid #1e2636;
  background: radial-gradient(circle at top left, #111827 0, #05070b 55%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.p1-product-header {
  margin-bottom: 12px;
}

.p1-product-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
}

.p1-product-subtitle {
  margin: 0;
  font-size: 14px;
  color: #a0a7b8;
}

.p1-product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 14px;
}

.p1-product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.p1-product-amount {
  font-size: 26px;
  font-weight: 700;
}

.p1-product-currency {
  font-size: 13px;
  color: #a0a7b8;
}

.p1-product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(54, 207, 201, 0.4);
  color: #36cfc9;
  background: rgba(54, 207, 201, 0.08);
}

.p1-product-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 14px;
}

.p1-product-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #e5e7eb;
}

.p1-product-list li span {
  display: inline-block;
  font-size: 16px;
  color: #36cfc9;
  margin-top: 1px;
}

.p1-product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px; /* extra space under button */
}

/* Stripe checkout button */

.p1-stripe-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #36cfc9, #1677ff);
  border-radius: 999px;
  color: #05070b;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.45);
  transition: 0.25s ease-out;
  border: none;
}

.p1-stripe-checkout-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px rgba(22, 119, 255, 0.85);
}

/* Secure strip under checkout */

.p1-secure-strip {
  margin-top: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, #020617 0, #020617 60%);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: #9ca3af;
}

.p1-secure-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.p1-secure-text strong {
  color: #e5e7eb;
}

.p1-secure-badges {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.p1-secure-badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.9);
}

.p1-product-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}

/* Risk strip at bottom */

.p1-risk-strip {
  border-radius: 18px;
  border: 1px solid #7f1d1d;
  background: rgba(127, 29, 29, 0.2);
  padding: 12px 14px;
  font-size: 11px;
  color: #fecaca;
}

/* Mobile tweaks */

@media (max-width: 640px) {
  .p1-hero {
    padding: 20px 16px 18px;
  }

  .p1-hero-copy h1 {
    font-size: 24px;
  }

  .p1-section {
    padding: 18px 14px 16px;
  }

  .p1-product-card {
    padding: 18px 14px 16px;
  }

  .p1-product-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .p1-stripe-checkout-btn {
    width: 100%;
  }
}
/* Fix hero button alignment */
.p1-hero-btn-main,
.p1-hero-btn-ghost {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important; /* ensures perfect vertical centering */
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
/* Move hero button text slightly upward */
.p1-hero-btn-main,
.p1-hero-btn-ghost {
    padding-top: 8px !important;
    padding-bottom: 12px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Move hero button text further upward */
.p1-hero-btn-main,
.p1-hero-btn-ghost {
    padding-top: 6px !important;
    padding-bottom: 20px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Move text inside Secure Checkout button slightly upward */
.p1-stripe-checkout-btn {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* === P1 POPUP (MODAL) === */

.p1-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: none; /* hidden by default, shown with JS */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

.p1-popup-modal {
    max-width: 420px;
    width: 100%;
    background: radial-gradient(circle at top left, #111827 0, #020617 60%);
    border-radius: 18px;
    border: 1px solid #1e2636;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    padding: 18px 18px 16px;
    color: #e5e7eb;
    position: relative;
    text-align: left;
}

.p1-popup-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.p1-popup-text {
    font-size: 13px;
    color: #cbd5f5;
    margin: 0 0 14px;
    line-height: 1.6;
}

.p1-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #36cfc9, #1677ff);
    color: #05070b;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(22, 119, 255, 0.6);
    transition: 0.2s ease-out;
}

.p1-popup-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(22, 119, 255, 0.85);
}

.p1-popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

.p1-popup-close:hover {
    color: #e5e7eb;
}

@media (max-width: 480px) {
    .p1-popup-modal {
        padding: 16px 14px 14px;
    }
}
/* Move text inside popup button upward */
.p1-popup-button {
    padding-top: 6px !important;
    padding-bottom: 15px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Move the Secure Checkout text downward on the Mentoring/Education page */
.page-id-8519 .p1-stripe-checkout-btn {
    padding-top: 14px !important;
    padding-bottom: 19px !important;
}
/* Improve wrapping + readability of the risk warning strip */
.p1-risk-strip {
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: #fecaca !important;
    text-align: left !important;
    word-break: normal !important;
    white-space: normal !important;
    hyphens: auto !important;
    padding: 14px 16px !important;
    max-width: 900px;
    margin: 0 auto; /* centers the text nicely */
}
/* === SMALLER CERTIFICATES SECTION === */

.p1-cert-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* smaller width */
    justify-items: center;
}

.p1-cert-item {
    background: #020617;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #1e2636;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    max-width: 220px; /* controls the certificate card size */
}

.p1-cert-item img {
    width: 100%;
    max-width: 200px; /* controls image size */
    border-radius: 8px;
    object-fit: cover;
}
/* === CERTIFICATES 50% BIGGER === */

.p1-cert-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* increased from 180 */
    justify-items: center;
}

.p1-cert-item {
    background: #020617;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #1e2636;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    max-width: 330px; /* previously ~220px */
}

.p1-cert-item img {
    width: 100%;
    max-width: 300px; /* increased from 200px */
    border-radius: 10px;
    object-fit: cover;
}
/* === CERTIFICATES 50% BIGGER AGAIN === */

.p1-cert-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* increased width */
    justify-items: center;
}

.p1-cert-item {
    background: #020617;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #1e2636;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    max-width: 480px; /* previously ~330px */
}

.p1-cert-item img {
    width: 100%;
    max-width: 440px; /* increased from 300px */
    border-radius: 12px;
    object-fit: cover;
}
/* === TRUSTPILOT SCREENSHOT CARDS === */

.p1-review-screenshots {
    margin-top: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.p1-review-card {
    background: #020617;
    border: 1px solid #1e2636;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p1-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.p1-review-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .p1-review-card {
        padding: 10px;
    }
}
/* === Trust section tabs === */

.p1-trust-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p1-trust-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    width: fit-content;
}

.p1-trust-tab-btn {
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.18s ease-out;
}

.p1-trust-tab-btn.is-active {
    background: linear-gradient(135deg, #36cfc9, #1677ff);
    color: #05070b;
    box-shadow: 0 8px 22px rgba(22, 119, 255, 0.55);
}

/* Panels */

.p1-trust-panels {
    margin-top: 8px;
}

.p1-trust-panel {
    display: none;
}

.p1-trust-panel.is-active {
    display: block;
}

/* Trustpilot widget wrapper */

.p1-trust-widget {
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    padding: 10px;
    background: rgba(15, 23, 42, 0.9);
}

/* Screenshot cards */

.p1-review-screenshots {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.p1-review-card {
    background: #020617;
    border: 1px solid #1e2636;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p1-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.p1-review-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
/* Move tab button text upward */
.p1-trust-tab-btn {
    padding-top: 1px !important;
    padding-bottom: 10px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Clean, centered review screenshot grid */
.p1-review-screenshots {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
    gap: 18px;
    justify-content: center;   /* center whole grid */
    max-width: 1000px;         /* keeps it from getting too wide */
    margin-left: auto;
    margin-right: auto;
}

.p1-review-card {
    background: #020617;
    border: 1px solid #1e2636;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    display: flex;
}

.p1-review-card img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.p1-review-disclaimer {
    margin-top: 18px;
    padding: 12px 16px;
    background: radial-gradient(circle at top left, rgba(127, 29, 29, 0.35), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(127, 29, 29, 0.6);
    border-radius: 12px;
    font-size: 12px;
    color: #fecaca;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}
/* === P1 TRADING — CONTACT FORM DARK MODE FIX === */

/* input + textarea text */
input,
textarea,
select {
    color: #ffffff !important;   /* white text */
    background-color: #0f172a !important; /* dark background */
    border-color: #334155 !important;     /* subtle border */
}

/* placeholder text */
input::placeholder,
textarea::placeholder {
    color: #cbd5e1 !important;   /* light gray */
    opacity: 1 !important;
}

/* input focus outline */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: #38bdf8 !important;  /* teal/blue highlight */
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.3) !important;
}

/* labels (optional – uncomment if they’re dark) */
/*
label {
    color: #ffffff !important;
}
*/
/* If your site already has --brand-primary etc, change these names
   or remove the :root block and it will just use your existing vars. */
:root {
  --discord-accent: var(--brand-primary, #3cff96);
  --discord-accent-soft: var(--brand-primary-soft, #5dffbc);
  --discord-bg-card: rgba(15, 15, 15, 0.98);
  --discord-text-main: #ffffff;
  --discord-text-muted: #bdbdbd;
}

.discord-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.discord-top-text {
  color: var(--discord-text-main);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.discord-card {
  background: radial-gradient(circle at top left, #1e1e1e, #050505);
  background-color: var(--discord-bg-card);
  border-radius: 18px;
  padding: 28px 34px;
  width: 420px;
  max-width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.discord-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: radial-gradient(circle at 30% 30%, #3a3a3a, #000);
}

.discord-info h3 {
  color: var(--discord-text-main);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.discord-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--discord-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #3cff96;
  border-radius: 50%;
  display: inline-block;
}

.discord-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  padding: 11px 0;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    var(--discord-accent),
    var(--discord-accent-soft)
  );
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.discord-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}
/* Ultra-compact Discord button */
.discord-button {
  max-width: 190px;        /* much smaller width */
  padding: 6px 0 17px 0;  /* top smaller than bottom → pushes text UP */
  font-size: 16px;
  margin: 10px auto 0 auto;

  display: flex;
  align-items: flex-start;  /* pushes content upward */
  justify-content: center;

  border-radius: 10px;
  line-height: 1;
}
/* Glowing online status light */
.online-dot {
  box-shadow:
    0 0 6px rgba(60, 255, 150, 0.75),
    0 0 14px rgba(60, 255, 150, 0.45),
    0 0 28px rgba(60, 255, 150, 0.25);
}
/* Subtle hover glow on the Discord button */
.discord-button {
  transition: 
    box-shadow 0.2s ease,
    transform 0.15s ease,
    filter 0.15s ease;
}

.discord-button:hover {
  box-shadow:
    0 0 8px rgba(60, 255, 150, 0.45),
    0 0 18px rgba(60, 255, 150, 0.25),
    0 0 32px rgba(60, 255, 150, 0.15);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.p1-risk-strip {
  margin: 60px auto 0;
  padding: 18px 24px;
  max-width: 1100px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.p1-risk-strip strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.p1-risk-strip {
  margin: 48px auto 0;
  max-width: 1100px;
  padding: 10px 14px;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );

  border-left: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;

  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.p1-risk-strip p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p1-risk-strip strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
