/* ============================================================
   TPFG Loyalty - Frontend Styles
   Matches ThePropFirmGuide dark theme
   ============================================================ */

/* ===== AUTH PAGES (Login/Register) ===== */
.tpfg-auth-container { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.tpfg-auth-card {
  background: rgba(17,17,17,0.8);
  border: 1px solid #1f2937;
  border-radius: 24px;
  padding: 40px;
}
.tpfg-auth-header { text-align: center; margin-bottom: 30px; }
.tpfg-auth-header h1 {
  font-size: 32px; font-weight: 900; margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, #33ccff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tpfg-auth-header p { color: #b9c1c9; font-size: 15px; }
.tpfg-auth-error {
  background: rgba(239,68,68,0.1); border: 1px solid #ef4444;
  border-radius: 12px; padding: 14px 18px; margin-bottom: 20px;
  color: #fca5a5; font-size: 14px;
}
.tpfg-auth-error a { color: #33ccff; }
.tpfg-signup-bonus {
  background: rgba(255,193,7,0.1); border: 1px solid #ffc107;
  border-radius: 12px; padding: 14px 18px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  color: #e0e0e0; font-size: 14px;
}
.tpfg-signup-bonus strong { color: #ffc107; }
.tpfg-bonus-icon { font-size: 24px; }
.tpfg-auth-form { display: flex; flex-direction: column; gap: 20px; }
.tpfg-form-row {
  display: flex; justify-content: space-between; align-items: center;
}
.tpfg-checkbox { display: flex; align-items: center; gap: 8px; color: #b9c1c9; font-size: 14px; cursor: pointer; }
.tpfg-checkbox input { accent-color: #33ccff; }
.tpfg-forgot-link { color: #33ccff; font-size: 13px; text-decoration: none; }
.tpfg-forgot-link:hover { color: #fff; }
.tpfg-auth-footer { text-align: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid #1f2937; }
.tpfg-auth-footer p { color: #6b7280; font-size: 14px; }
.tpfg-auth-footer a { color: #33ccff; text-decoration: none; font-weight: 600; }

/* ===== REGISTER SPLIT LAYOUT ===== */
.tpfg-register-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh;
  margin: -20px auto; max-width: 1400px;
}
.tpfg-register-left {
  background: linear-gradient(160deg, rgba(51,204,255,0.08) 0%, rgba(102,126,234,0.12) 50%, rgba(51,204,255,0.05) 100%);
  border-right: 1px solid #1f2937; padding: 60px 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tpfg-register-left::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(51,204,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tpfg-register-left-inner { position: relative; z-index: 1; width: 100%; max-width: 460px; }

/* Showcase Cards */
.tpfg-showcase-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }
.tpfg-showcase-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(17,17,17,0.7); border: 1px solid #1f2937;
  border-radius: 16px; padding: 18px 20px;
  backdrop-filter: blur(10px); transition: all 0.4s ease;
}
.tpfg-showcase-card:hover { transform: translateX(8px); border-color: #33ccff; }
.tpfg-sc-1 { transform: translateX(0); }
.tpfg-sc-2 { transform: translateX(20px); }
.tpfg-sc-3 { transform: translateX(10px); }
.tpfg-sc-1:hover, .tpfg-sc-2:hover, .tpfg-sc-3:hover { transform: translateX(28px); }
.tpfg-sc-logo {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(51,204,255,0.1); border: 1px solid rgba(51,204,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.tpfg-sc-logo svg { width: 24px; height: 24px; }
.tpfg-sc-name { font-weight: 800; font-size: 16px; color: #fff; }
.tpfg-sc-points { font-size: 12px; color: #6b7280; margin-top: 2px; }
.tpfg-sc-badge {
  margin-left: auto; padding: 6px 14px; border-radius: 20px;
  background: rgba(51,204,255,0.15); border: 1px solid rgba(51,204,255,0.3);
  color: #33ccff; font-weight: 700; font-size: 13px; white-space: nowrap;
}

/* Showcase Text */
.tpfg-showcase-text {}
.tpfg-showcase-label {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: #33ccff; margin-bottom: 12px;
  background: rgba(51,204,255,0.1); padding: 5px 14px; border-radius: 20px;
}
.tpfg-showcase-text h2 {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.tpfg-showcase-text p { font-size: 15px; color: #9ca3af; line-height: 1.7; margin-bottom: 25px; }
.tpfg-showcase-dots { display: flex; gap: 8px; }
.tpfg-showcase-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15); transition: all 0.3s ease;
}
.tpfg-showcase-dots .dot.active { background: #33ccff; width: 28px; border-radius: 5px; }

/* Right Form Side */
.tpfg-register-right {
  padding: 60px 50px; display: flex; align-items: center; justify-content: center;
}
.tpfg-register-form-wrap { width: 100%; max-width: 440px; }
.tpfg-register-form-wrap h1 {
  font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 8px;
}
.tpfg-register-subtitle { color: #9ca3af; font-size: 15px; margin-bottom: 30px; }

/* Form Groups */
.tpfg-register-form { display: flex; flex-direction: column; gap: 18px; }
.tpfg-rform-group label {
  display: block; font-weight: 600; font-size: 14px; color: #e0e0e0; margin-bottom: 8px;
}
.tpfg-rform-group input {
  width: 100%; padding: 14px 18px;
  background: rgba(31,41,55,0.6); border: 1px solid #374151; border-radius: 12px;
  color: #fff; font-size: 15px; font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.tpfg-rform-group input:focus {
  outline: none; border-color: #33ccff; box-shadow: 0 0 0 3px rgba(51,204,255,0.1);
}
.tpfg-rform-group input::placeholder { color: #6b7280; }

/* Password toggle */
.tpfg-password-wrap { position: relative; }
.tpfg-password-wrap input { padding-right: 50px; }
.tpfg-toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 4px;
  display: flex; align-items: center;
}

/* Checkboxes */
.tpfg-rform-checks { display: flex; flex-direction: column; gap: 10px; }
.tpfg-rcheck {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #9ca3af; cursor: pointer; line-height: 1.5;
}
.tpfg-rcheck input {
  accent-color: #33ccff; margin-top: 3px; flex-shrink: 0;
  width: 16px; height: 16px;
}
.tpfg-rcheck a { color: #33ccff; text-decoration: none; font-weight: 600; }
.tpfg-rcheck a:hover { color: #fff; }

/* Bonus Banner */
.tpfg-register-bonus {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,193,7,0.08); border: 1px solid rgba(255,193,7,0.3);
  border-radius: 12px; padding: 12px 16px; font-size: 14px; color: #e0e0e0;
}
.tpfg-register-bonus strong { color: #ffc107; }

/* Sign Up Button */
.tpfg-rbtn-signup {
  width: 100%; padding: 16px; font-size: 17px; font-weight: 700;
  border-radius: 12px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #33ccff, #667eea); color: #fff;
  box-shadow: 0 10px 30px rgba(51,204,255,0.25);
  transition: all 0.3s ease;
}
.tpfg-rbtn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(51,204,255,0.4);
}

/* Footer */
.tpfg-register-footer {
  text-align: center; margin-top: 25px; color: #6b7280; font-size: 15px;
}
.tpfg-register-footer a { color: #33ccff; text-decoration: none; font-weight: 700; }
.tpfg-register-footer a:hover { color: #fff; }

/* ===== SHARED FORM ELEMENTS ===== */
.tpfg-form-group { margin-bottom: 20px; }
.tpfg-form-group label {
  display: block; font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 8px;
}
.tpfg-form-group label .required { color: #ef4444; }
.tpfg-form-group input,
.tpfg-form-group textarea,
.tpfg-form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(31,41,55,0.5); border: 1px solid #1f2937; border-radius: 12px;
  color: #fff; font-size: 15px; font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.tpfg-form-group input:focus,
.tpfg-form-group textarea:focus {
  outline: none; border-color: #33ccff; box-shadow: 0 0 0 3px rgba(51,204,255,0.1);
}
.tpfg-form-group input::placeholder,
.tpfg-form-group textarea::placeholder { color: #6b7280; }
.tpfg-form-group textarea { min-height: 100px; resize: vertical; }
.tpfg-form-help { font-size: 12px; color: #6b7280; margin-top: 6px; }

/* ===== BUTTONS ===== */
.tpfg-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; font-size: 17px; font-weight: 700; border-radius: 50px;
  background: linear-gradient(135deg, #33ccff, #667eea); color: #fff;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 30px rgba(51,204,255,0.3); transition: all 0.3s ease;
}
.tpfg-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(51,204,255,0.5); }
.tpfg-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.tpfg-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; font-size: 17px; font-weight: 700; border-radius: 50px;
  background: transparent; color: #fff; border: 2px solid #33ccff;
  cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.tpfg-btn-secondary:hover { background: #33ccff; color: #000; transform: translateY(-3px); }

/* ===== DASHBOARD ===== */
.tpfg-dashboard { max-width: 1200px; margin: 0 auto; }
.tpfg-points-balance {
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,152,0,0.1));
  border: 2px solid #ffc107; border-radius: 24px; padding: 40px; text-align: center; margin-bottom: 40px;
}
.tpfg-points-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #ffc107, #ff9800); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(255,193,7,0.4);
}
.tpfg-points-icon svg { width: 45px; height: 45px; }
.tpfg-points-number {
  font-size: 64px; font-weight: 900;
  background: linear-gradient(135deg, #ffc107, #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tpfg-points-label { font-size: 18px; color: #e0e0e0; font-weight: 600; }
.tpfg-twitter-bonus {
  margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,193,7,0.3);
}
.tpfg-twitter-content {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.tpfg-twitter-link { color: #1DA1F2; font-weight: 600; text-decoration: none; }
.tpfg-bonus-text { color: #e0e0e0; font-size: 14px; }
.tpfg-bonus-badge {
  background: rgba(255,193,7,0.2); border: 1px solid #ffc107;
  padding: 4px 12px; border-radius: 20px; font-weight: 700; font-size: 13px; color: #ffc107;
}
.tpfg-btn-twitter {
  padding: 8px 20px; font-size: 13px; font-weight: 700; border-radius: 50px;
  background: linear-gradient(135deg, #1DA1F2, #0c85d0); color: #fff;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
.tpfg-btn-twitter:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(29,161,242,0.4); }
.tpfg-action-buttons {
  display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap;
}
.tpfg-section-title {
  font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 25px;
}

/* Submissions */
.tpfg-submissions-grid { display: grid; gap: 20px; margin-bottom: 30px; }
.tpfg-submission-card {
  background: rgba(17,17,17,0.8); border: 1px solid #1f2937; border-radius: 20px;
  padding: 30px; transition: all 0.3s ease;
}
.tpfg-submission-card:hover { transform: translateY(-3px); border-color: #33ccff; box-shadow: 0 12px 30px rgba(51,204,255,0.15); }
.tpfg-sub-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.tpfg-sub-firm { font-size: 20px; font-weight: 800; color: #fff; }
.tpfg-status {
  padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.tpfg-status-pending { background: rgba(255,193,7,0.2); color: #ffc107; border: 1px solid #ffc107; }
.tpfg-status-approved { background: rgba(49,208,170,0.2); color: #31d0aa; border: 1px solid #31d0aa; }
.tpfg-status-rejected { background: rgba(239,68,68,0.2); color: #ef4444; border: 1px solid #ef4444; }
.tpfg-sub-details { display: grid; gap: 8px; margin-bottom: 10px; }
.tpfg-sub-row { display: flex; justify-content: space-between; color: #b9c1c9; font-size: 14px; }
.tpfg-sub-row span:last-child { color: #fff; font-weight: 600; }
.tpfg-sub-date { font-size: 13px; color: #6b7280; margin-top: 10px; }
.tpfg-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.tpfg-page-btn {
  padding: 10px 18px; background: rgba(51,204,255,0.1); border: 2px solid #33ccff;
  border-radius: 50px; color: #33ccff; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
}
.tpfg-page-btn.active { background: linear-gradient(135deg,#33ccff,#667eea); color: #fff; }
.tpfg-empty-state { text-align: center; padding: 60px 20px; }
.tpfg-empty-state h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.tpfg-empty-state p { color: #b9c1c9; margin-bottom: 25px; }

/* ===== SUBMIT PAGE ===== */
.tpfg-submit { max-width: 800px; margin: 0 auto; }
.tpfg-form-card {
  background: rgba(17,17,17,0.8); border: 1px solid #1f2937; border-radius: 24px; padding: 40px;
}
.tpfg-warning-box {
  background: rgba(255,193,7,0.1); border: 2px solid #ffc107; border-radius: 16px;
  padding: 20px; margin-bottom: 20px; color: #fff; font-size: 14px; line-height: 1.7;
}
.tpfg-warning-box strong { color: #ffc107; }
.tpfg-info-box {
  background: rgba(51,204,255,0.1); border: 1px solid #33ccff; border-radius: 16px;
  padding: 20px; margin-bottom: 25px; color: #b9c1c9; font-size: 14px; line-height: 1.7;
}
.tpfg-info-box strong { color: #33ccff; }
.tpfg-file-upload { margin-top: 8px; }
.tpfg-file-label {
  display: flex; align-items: center; justify-content: center; gap: 15px;
  padding: 35px 20px; background: rgba(31,41,55,0.5); border: 2px dashed #1f2937;
  border-radius: 12px; cursor: pointer; transition: all 0.3s ease; color: #b9c1c9; font-size: 14px;
}
.tpfg-file-label:hover { border-color: #33ccff; background: rgba(51,204,255,0.05); }
.tpfg-file-preview {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; background: rgba(49,208,170,0.1); border: 1px solid #31d0aa;
  border-radius: 12px; margin-top: 10px; color: #fff; font-weight: 600; font-size: 14px;
}
.tpfg-form-actions { display: flex; gap: 15px; margin-top: 30px; }
.tpfg-form-actions > * { flex: 1; text-align: center; }
.tpfg-success-card {
  background: rgba(17,17,17,0.8); border: 1px solid #1f2937; border-radius: 24px;
  padding: 60px 40px; text-align: center; max-width: 600px; margin: 0 auto;
}
.tpfg-success-card h2 { font-size: 32px; font-weight: 900; color: #31d0aa; margin: 20px 0 15px; }
.tpfg-success-card p { color: #b9c1c9; font-size: 16px; margin-bottom: 30px; }

/* ===== REDEEM PAGE ===== */
.tpfg-redeem { max-width: 1200px; margin: 0 auto; }
.tpfg-points-bar {
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,152,0,0.1));
  border: 2px solid #ffc107; border-radius: 20px; padding: 20px 30px; margin-bottom: 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}
.tpfg-points-info { display: flex; align-items: center; gap: 15px; }
.tpfg-points-icon-sm {
  width: 50px; height: 50px; background: linear-gradient(135deg,#ffc107,#ff9800);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.tpfg-points-icon-sm svg { width: 28px; height: 28px; }
.tpfg-points-num {
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg,#ffc107,#fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tpfg-rewards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px; margin-bottom: 40px;
}
.tpfg-reward-card {
  background: rgba(17,17,17,0.8); border: 1px solid #1f2937; border-radius: 20px;
  padding: 30px; transition: all 0.3s ease;
}
.tpfg-reward-card:hover { transform: translateY(-5px); border-color: #33ccff; box-shadow: 0 15px 40px rgba(51,204,255,0.2); }
.tpfg-reward-card.disabled { opacity: 0.5; pointer-events: none; }
.tpfg-reward-icon {
  width: 60px; height: 60px; margin-bottom: 20px;
  background: linear-gradient(135deg,#33ccff,#667eea); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.tpfg-reward-icon svg { width: 32px; height: 32px; }
.tpfg-reward-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.tpfg-reward-desc { font-size: 14px; color: #b9c1c9; margin-bottom: 20px; }
.tpfg-reward-cost { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.tpfg-cost-amount { font-size: 20px; font-weight: 800; color: #ffc107; }
.tpfg-cost-label { font-size: 14px; color: #6b7280; }
.tpfg-btn-redeem {
  width: 100%; padding: 14px; font-size: 16px; font-weight: 700; border-radius: 12px;
  background: linear-gradient(135deg,#33ccff,#667eea); color: #fff; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.tpfg-btn-redeem:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(51,204,255,0.4); }
.tpfg-btn-redeem:disabled { opacity: 0.5; cursor: not-allowed; }

/* History */

/* ===== SUCCESS MESSAGE ===== */
.tpfg-auth-success {
  background: rgba(49,208,170,0.1); border: 1px solid #31d0aa;
  border-radius: 12px; padding: 14px 18px; margin-bottom: 20px;
  color: #6ee7b7; font-size: 14px;
}

/* ===== MY ACCOUNT PAGE ===== */
.tpfg-account { max-width: 700px; margin: 0 auto; }
.tpfg-account-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap;
}
.tpfg-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #33ccff, #667eea);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.tpfg-account-header h1 {
  font-size: 28px; font-weight: 900; color: #fff; margin: 0 0 5px;
}
.tpfg-meta { color: #6b7280; font-size: 14px; margin: 0; }
.tpfg-account-tabs {
  display: flex; gap: 8px; margin-bottom: 25px; flex-wrap: wrap;
}
.tpfg-tab {
  padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 700;
  background: rgba(51,204,255,0.1); border: 2px solid transparent;
  color: #b9c1c9; cursor: pointer; transition: all 0.3s ease;
}
.tpfg-tab:hover { color: #33ccff; border-color: #33ccff; }
.tpfg-tab.active {
  background: linear-gradient(135deg, #33ccff, #667eea); color: #fff;
  box-shadow: 0 8px 25px rgba(51,204,255,0.3);
}
.tpfg-tab-danger { color: #ef4444 !important; background: rgba(239,68,68,0.1) !important; }
.tpfg-tab-danger:hover { border-color: #ef4444 !important; }
.tpfg-tab-danger.active {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #fff !important; box-shadow: 0 8px 25px rgba(239,68,68,0.3) !important;
}
.tpfg-tab-content { display: none; }
.tpfg-tab-content.active { display: block; }
.tpfg-form-card h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 25px; }
.tpfg-danger-zone { border-color: rgba(239,68,68,0.3) !important; }
.tpfg-btn-danger {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-size: 17px; font-weight: 700; border-radius: 50px;
  background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff;
  border: none; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(239,68,68,0.3);
}
.tpfg-btn-danger:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(239,68,68,0.5); }
.tpfg-account-links {
  display: flex; justify-content: space-between; margin-top: 30px; padding-top: 25px;
  border-top: 1px solid #1f2937;
}
.tpfg-account-links a { color: #33ccff; text-decoration: none; font-weight: 600; font-size: 14px; }
.tpfg-account-links a:hover { color: #fff; }

/* ===== MODAL ===== */
.tpfg-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); z-index: 10000;
  justify-content: center; align-items: center; padding: 20px;
}
.tpfg-modal.active { display: flex; }
.tpfg-modal-content {
  background: #111; border: 2px solid #1f2937; border-radius: 24px;
  padding: 40px; max-width: 500px; width: 100%; text-align: center;
}
.tpfg-modal-content h2 {
  font-size: 28px; font-weight: 900; color: #33ccff; margin-bottom: 15px;
}
.tpfg-modal-content p { color: #b9c1c9; margin-bottom: 25px; }
.tpfg-modal-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .tpfg-register-split { grid-template-columns: 1fr; min-height: auto; }
  .tpfg-register-left { padding: 40px 20px; border-right: none; border-bottom: 1px solid #1f2937; }
  .tpfg-register-left-inner { max-width: 100%; }
  .tpfg-showcase-cards { margin-bottom: 30px; }
  .tpfg-sc-1, .tpfg-sc-2, .tpfg-sc-3 { transform: translateX(0) !important; }
  .tpfg-sc-1:hover, .tpfg-sc-2:hover, .tpfg-sc-3:hover { transform: translateX(8px) !important; }
  .tpfg-showcase-text h2 { font-size: 26px; }
  .tpfg-register-right { padding: 40px 20px; }
  .tpfg-register-form-wrap h1 { font-size: 28px; }
  .tpfg-auth-card, .tpfg-form-card { padding: 25px 20px; }
  .tpfg-points-balance { padding: 30px 20px; }
  .tpfg-points-number { font-size: 48px; }
  .tpfg-action-buttons { flex-direction: column; width: 100%; }
  .tpfg-action-buttons > * { width: 100%; text-align: center; }
  .tpfg-form-actions { flex-direction: column; }
  .tpfg-form-actions > * { width: 100%; }
  .tpfg-rewards-grid { grid-template-columns: 1fr; }
  .tpfg-points-bar { flex-direction: column; align-items: flex-start; }
  .tpfg-modal-content { padding: 30px 20px; }
  .tpfg-modal-buttons { flex-direction: column; }
}

/* ===== GLOBAL: No green text on hover for loyalty pages ===== */
.tpfg-dashboard a:hover,
.tpfg-dashboard button:hover,
.tpfg-redeem-page a:hover,
.tpfg-redeem-page button:hover,
.tpfg-submit-page a:hover,
.tpfg-submit-page button:hover,
.tpfg-account-page a:hover,
.tpfg-account-page button:hover,
.tpfg-btn-primary:hover,
.tpfg-btn-secondary:hover {
    color: #fff !important;
}
.tpfg-points-balance a:hover,
.tpfg-action-buttons a:hover {
    color: #fff !important;
}
