/* ==========================================================================
   Gold365King – Exact 1:1 Visual Clone Stylesheet
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: #0b001a;
}

body {
  margin: 0;
  padding: 0;
  color: #333333;
  background: radial-gradient(circle at 50% 30%, #300060 0%, #0c0017 75%, #05000a 100%);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   PAGE WRAPPER
   -------------------------------------------------------------------------- */
.main-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 50px;
}

/* Top Header Logo */
.brand-header {
  text-align: center;
  margin-bottom: 25px;
}

.brand-header img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* --------------------------------------------------------------------------
   LOGIN CARD (EXACT 1:1 TO SCREENSHOT)
   -------------------------------------------------------------------------- */
.card-container {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 20px 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(128, 0, 255, 0.2);
  text-align: center;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Input Fields with Right Icons */
.input-group {
  position: relative;
  margin-bottom: 14px;
}

.input-field {
  width: 100%;
  padding: 12px 42px 12px 14px;
  font-size: 15px;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field::placeholder {
  color: #8c98a4;
}

.input-field:focus {
  border-color: #6a00d5;
  box-shadow: 0 0 0 2px rgba(106, 0, 213, 0.15);
}

.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.input-icon svg {
  width: 18px;
  height: 18px;
  fill: #000000;
}

/* Action Buttons */
.btn-black {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.1s;
}

.btn-black:hover {
  background: #222222;
  transform: translateY(-1px);
}

.btn-black svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* reCAPTCHA Disclaimer */
.recaptcha-text {
  font-size: 11px;
  line-height: 1.45;
  color: #555555;
  margin: 12px 0 14px;
  text-align: left;
}

.recaptcha-text a {
  color: #0066cc;
  text-decoration: underline;
}

/* Panel Contact Box */
.panel-contact-box {
  border: 1px dashed #666666;
  background: #f8f9fa;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-align: center;
}

.panel-label {
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
}

.panel-email {
  font-size: 12px;
  font-weight: 800;
  color: #0066cc;
  margin-top: 2px;
  word-break: break-all;
}

/* Dashed Separator */
.dashed-divider {
  border: 0;
  border-top: 1px dashed #cbd5e1;
  margin: 14px 0 16px;
}

/* Big Vibrant Action Buttons */
.btn-action {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-left svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.btn-right svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* Button Colors (Matching Screenshot) */
.btn-purple {
  background: #7B1FA2;
}

.btn-purple:hover {
  background: #6A1B9A;
}

.btn-teal {
  background: #005F56;
}

.btn-teal:hover {
  background: #004D40;
}

.btn-indigo {
  background: #392467;
}

.btn-indigo:hover {
  background: #2D1B54;
}

/* --------------------------------------------------------------------------
   PURPLE HEADING BANNER
   -------------------------------------------------------------------------- */
.seo-heading-bar {
  width: 100%;
  max-width: 900px;
  background: #5400A7;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 30px auto 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(84, 0, 167, 0.4);
}

.seo-heading-bar h1 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   COLLAPSIBLE LEARN MORE & COMMUNITY FORUM ACCORDION
   -------------------------------------------------------------------------- */
.accordion-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 15px auto 40px;
}

.accordion-toggle {
  width: 100%;
  background: #ffffff;
  border: 2px solid #6a00d5;
  color: #6a00d5;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.accordion-toggle:hover {
  background: #6a00d5;
  color: #ffffff;
  transform: translateY(-2px);
}

.accordion-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.accordion-content.collapsed {
  display: none;
}

/* TOC */
.toc-box {
  background: #f5f0ff;
  border-left: 4px solid #6a00d5;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
}

.toc-box h3 {
  font-size: 16px;
  color: #6a00d5;
  margin-bottom: 10px;
}

.toc-box ul {
  list-style: none;
  padding: 0;
}

.toc-box li {
  margin: 6px 0;
}

.toc-box a {
  color: #333333;
  font-weight: 500;
}

.toc-box a:hover {
  color: #6a00d5;
}

/* Sections inside accordion */
.info-section {
  margin-bottom: 30px;
}

.info-section h2 {
  font-size: 20px;
  color: #111111;
  border-bottom: 2px solid #6a00d5;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.info-section p {
  color: #444444;
  line-height: 1.7;
  font-size: 14.5px;
  margin-bottom: 12px;
}

/* Trust Badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.badge-item {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 6px;
  padding: 14px 10px;
  text-align: center;
}

.badge-item h4 {
  color: #6a00d5;
  font-size: 14px;
  margin-bottom: 4px;
}

.badge-item p {
  font-size: 12px;
  margin: 0;
  color: #666;
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comp-table th, .comp-table td {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
}

.comp-table th {
  background: #6a00d5;
  color: #ffffff;
  text-align: left;
}

.comp-table tr:nth-child(even) {
  background: #f8fafc;
}

.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; font-weight: 700; }

/* Forum Section & Direct Contact CTA */
.forum-cta-box {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 20px 0 25px;
}

.forum-cta-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.forum-cta-box p {
  color: #ffffff;
  font-size: 13.5px;
  margin-bottom: 14px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #075E54 !important;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.btn-whatsapp-large:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  text-decoration: none;
}

.forum-threads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.forum-post {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
}

.post-user {
  font-weight: 700;
  color: #1e293b;
}

.post-tag {
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

.post-title {
  font-size: 14px;
  color: #6a00d5;
  margin-bottom: 6px;
}

.post-body {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 10px;
}

.post-action-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

.post-action-btn:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   FOOTER (EXACT CLONE)
   -------------------------------------------------------------------------- */
.site-footer-custom {
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #e2e8f0;
  padding: 40px 20px 20px;
  color: #4b5563;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.footer-col p, .footer-col a {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.7;
}

.footer-col a:hover {
  color: #6a00d5;
}

.social-icons-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: #374151;
}

.social-icon-btn:hover {
  background: #6a00d5;
}

.social-icon-btn:hover svg {
  fill: #ffffff;
}

.copyright-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP CTA
   -------------------------------------------------------------------------- */
.float-wa {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #FAC316;
  color: #000000 !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 999999;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.float-wa:hover {
  background: #2383C6;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .float-wa {
    bottom: 10px;
    right: 10px;
    left: 10px;
    justify-content: center;
    text-align: center;
    font-size: 12.5px;
    padding: 11px 14px;
  }
}
