/* ── TSP Social Media Contest Portal - GLASSMORPHIC BLACK & GOLD THEME ── */

:root {
  --bg-dark-radial: radial-gradient(circle at top left, #161a36, #070913);
  --card-glass: rgba(18, 22, 41, 0.75);
  --gold-primary: #e8b84b;
  --gold-light: #f5d98a;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #ffe07d 0%, #e8b84b 50%, #b8860b 100%);
  --gold-glow: 0 0 15px rgba(232, 184, 75, 0.25);
  --gold-glow-strong: 0 0 25px rgba(232, 184, 75, 0.45);
  --border-gold: rgba(232, 184, 75, 0.2);
  --border-gold-strong: rgba(232, 184, 75, 0.4);
  --text-light: #f3f4f6;
  --text-gray: #cbd5e1;
  --text-muted: #9ca3af;
}

.tpsc-portal {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-dark-radial) !important;
  color: var(--text-light) !important;
  padding: 40px 24px !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Header & Typography */
.tpsc-header {
  text-align: center;
  margin-bottom: 32px;
}
.tpsc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
  text-shadow: 0 0 20px rgba(232, 184, 75, 0.1);
}
.tpsc-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

/* Alert Boxes */
.tpsc-alert {
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
  line-height: 1.5;
}
.tpsc-alert-error {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #fca5a5 !important;
}
.tpsc-alert-success {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: #a7f3d0 !important;
}

/* Tabs Navigation */
.tpsc-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 1px;
}
.tpsc-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s;
  white-space: nowrap;
}
.tpsc-tab:hover {
  color: var(--text-light);
  background: rgba(232, 184, 75, 0.03);
}
.tpsc-tab.active {
  color: var(--gold-primary);
  background: rgba(232, 184, 75, 0.06);
  border-bottom: 3px solid var(--gold-primary);
}

/* Cards & Containers */
.tpsc-card {
  background: var(--card-glass) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}
.tpsc-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 0 0 16px 0;
  border-bottom: 1px solid rgba(232, 184, 75, 0.1);
  padding-bottom: 8px;
}

/* Layout active split screen */
.tpsc-portal-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tpsc-layout-active {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
@media (max-width: 900px) {
  .tpsc-layout-active {
    grid-template-columns: 1fr;
  }
}

.tpsc-main-content {
  min-width: 0;
}
.tpsc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Styles */
.tpsc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .tpsc-form-grid {
    grid-template-columns: 1fr;
  }
}
.tpsc-form-group {
  margin-bottom: 16px;
}
.tpsc-form-group-full {
  grid-column: span 2;
}
.tpsc-form-group label, .tpsc-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-primary) !important;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tpsc-portal input,
.tpsc-portal select,
.tpsc-portal textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(8, 10, 20, 0.7) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  color: var(--text-light) !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}
.tpsc-portal input:focus,
.tpsc-portal select:focus,
.tpsc-portal textarea:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: var(--gold-glow) !important;
}

/* Buttons */
.tpsc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}
.tpsc-btn-primary {
  background: var(--gold-gradient) !important;
  color: #070913 !important;
  box-shadow: 0 4px 15px rgba(232, 184, 75, 0.15);
}
.tpsc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--gold-glow-strong);
}
.tpsc-btn-ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(232, 184, 75, 0.15) !important;
  color: var(--text-gray) !important;
}
.tpsc-btn-ghost:hover {
  background: rgba(232, 184, 75, 0.06) !important;
  color: var(--gold-primary) !important;
  border-color: var(--gold-primary) !important;
}

/* Tables */
.tpsc-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(232, 184, 75, 0.12);
}
.tpsc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
  background: rgba(18, 22, 41, 0.3);
}
.tpsc-table th {
  background: rgba(232, 184, 75, 0.08) !important;
  color: var(--gold-primary) !important;
  font-weight: 700;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(232, 184, 75, 0.15);
}
.tpsc-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(232, 184, 75, 0.08);
  color: var(--text-gray);
  vertical-align: middle;
}
.tpsc-table tr:hover {
  background: rgba(232, 184, 75, 0.02);
}
.tpsc-screenshot-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: all 0.2s;
}
.tpsc-screenshot-thumb:hover {
  transform: scale(1.1);
  border-color: var(--gold-primary);
}

/* Badges */
.tpsc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tpsc-badge-pending {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
}
.tpsc-badge-approved {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}
.tpsc-badge-rejected {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

/* Leaderboard */
.tpsc-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tpsc-lb-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(232, 184, 75, 0.08) !important;
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}
.tpsc-lb-item:hover {
  background: var(--glass-bg-hover) !important;
  border-color: var(--gold-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), var(--gold-glow);
}
.tpsc-lb-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.tpsc-lb-rank {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  flex-shrink: 0;
}
.tpsc-lb-rank-1 {
  background: linear-gradient(135deg, #ffe07d 0%, #e8b84b 100%) !important;
  color: #070913 !important;
  border: none !important;
  box-shadow: 0 0 10px rgba(232, 184, 75, 0.3);
}
.tpsc-lb-rank-2 {
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%) !important;
  color: #070913 !important;
  border: none !important;
}
.tpsc-lb-rank-3 {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%) !important;
  color: #070913 !important;
  border: none !important;
}
.tpsc-lb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.tpsc-lb-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tpsc-lb-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tpsc-lb-college {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.tpsc-lb-item-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.tpsc-lb-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  color: var(--text-muted);
  gap: 2px;
}
.tpsc-lb-score {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-primary);
}
.tpsc-lb-prize {
  font-size: 10px;
  background: rgba(232, 184, 75, 0.1) !important;
  color: var(--gold-light) !important;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid rgba(232, 184, 75, 0.2) !important;
}

/* Loader */
#tpsc-loader {
  background: rgba(6, 8, 19, 0.75) !important;
  backdrop-filter: blur(8px);
}

/* Inline Tabs Styles for Option B */
.tpsc-inline-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(232, 184, 75, 0.08);
  padding-bottom: 12px;
}
.tpsc-inline-tab {
  background: none !important;
  border: none !important;
  color: var(--text-muted) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: 'Poppins', sans-serif !important;
  border-bottom: 3px solid transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.tpsc-inline-tab:hover {
  color: var(--text-light) !important;
}
.tpsc-inline-tab.active {
  color: var(--gold-primary) !important;
  border-bottom: 3px solid var(--gold-primary) !important;
}

/* Guest Split Layout Styles */
.tpsc-guest-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 24px;
}
.tpsc-guest-info-col {
  display: flex;
  flex-direction: column;
}
.tpsc-guest-form-col {
  display: block;
}
.tpsc-quick-prizes {
  background: rgba(232, 184, 75, 0.03) !important;
  border: 1px solid var(--border-gold) !important;
  padding: 18px !important;
  border-radius: 10px !important;
  margin-bottom: 20px !important;
}
.tpsc-quick-prizes h4 {
  margin: 0 0 12px 0 !important;
  color: var(--gold-primary) !important;
  font-size: 15px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
}
.tpsc-quick-prizes-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  font-size: 13px !important;
  color: var(--text-gray) !important;
}
.tpsc-quick-prizes-grid div {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.tpsc-quick-prizes-footer {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  border-top: 1px solid rgba(232, 184, 75, 0.1) !important;
  padding-top: 10px !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  .tpsc-guest-split-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ── LANDING PAGE ELEMENTS (DARK THEME) ── */
.tpsc-landing-wrap {
  color: var(--text-gray);
  line-height: 1.6;
}
.tpsc-landing-wrap section {
  margin-bottom: 24px;
}
.tpsc-landing-wrap .landing-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin: 0 0 16px 0;
}
.tpsc-landing-wrap .landing-h1 em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tpsc-landing-wrap .hero-sub {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.tpsc-landing-wrap .hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tpsc-landing-wrap .hero-meta-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 184, 75, 0.1);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.tpsc-landing-wrap .hero-meta-item strong {
  display: block;
  font-size: 18px;
  color: var(--gold-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}

/* About / Intro Section */
.tpsc-landing-wrap .section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.tpsc-landing-wrap .landing-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 20px 0;
}
.tpsc-landing-wrap .landing-h2 em {
  font-style: normal;
  color: var(--gold-primary);
}
.tpsc-landing-wrap .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.tpsc-landing-wrap .intro-cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}
.tpsc-landing-wrap .intro-cell.accent {
  border-color: rgba(232, 184, 75, 0.12);
  background: rgba(232, 184, 75, 0.02);
}
.tpsc-landing-wrap .ic-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.tpsc-landing-wrap .ic-value {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 600;
}

/* Steps */
.tpsc-landing-wrap .steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tpsc-landing-wrap .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tpsc-landing-wrap .step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tpsc-landing-wrap .step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 4px 0;
}
.tpsc-landing-wrap .step-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Platforms */
.tpsc-landing-wrap .platform-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.tpsc-landing-wrap .platform-cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(232, 184, 75, 0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.25s;
}
.tpsc-landing-wrap .platform-cell:hover {
  border-color: var(--gold-primary);
  background: rgba(232, 184, 75, 0.04);
}
.tpsc-landing-wrap .platform-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.tpsc-landing-wrap .platform-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 14px;
}
.tpsc-landing-wrap .platform-handle {
  font-size: 11px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Judging */
.tpsc-landing-wrap .judging-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tpsc-landing-wrap .judge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tpsc-landing-wrap .judge-rank {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-primary);
  width: 24px;
}
.tpsc-landing-wrap .judge-bar-wrap {
  flex: 1;
}
.tpsc-landing-wrap .judge-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}
.tpsc-landing-wrap .judge-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.tpsc-landing-wrap .judge-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
}
.tpsc-landing-wrap .judge-weight {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
  width: 40px;
  text-align: right;
}

/* Prizes */
.tpsc-landing-wrap .prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.tpsc-landing-wrap .prize-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(232, 184, 75, 0.12);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
}
.tpsc-landing-wrap .prize-card.top {
  border-color: var(--border-gold-strong);
  background: rgba(232, 184, 75, 0.04);
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.05);
}
.tpsc-landing-wrap .prize-medal {
  font-size: 32px;
  margin-bottom: 8px;
}
.tpsc-landing-wrap .prize-place {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}
.tpsc-landing-wrap .prize-cash {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-primary);
  margin: 6px 0 16px 0;
}
.tpsc-landing-wrap .prize-extras {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 12px;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
.tpsc-landing-wrap .prize-extras li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
.tpsc-landing-wrap .prize-extras li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tpsc-landing-wrap .bonus-prizes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tpsc-landing-wrap .bonus-card {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  align-items: flex-start;
}
.tpsc-landing-wrap .bonus-icon {
  font-size: 20px;
  color: var(--gold-primary);
}
.tpsc-landing-wrap .bonus-title {
  font-weight: 700;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 4px;
}
.tpsc-landing-wrap .bonus-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Content Ideas */
.tpsc-landing-wrap .ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.tpsc-landing-wrap .idea-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
}
.tpsc-landing-wrap .idea-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(232, 184, 75, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.tpsc-landing-wrap .idea-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 6px 0;
}
.tpsc-landing-wrap .idea-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Eligibility */
.tpsc-landing-wrap .elig-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .tpsc-landing-wrap .elig-box {
    grid-template-columns: 1fr;
  }
}
.tpsc-landing-wrap .elig-group h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}
.tpsc-landing-wrap .elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tpsc-landing-wrap .elig-list li {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.tpsc-landing-wrap .elig-list li::before {
  content: "✓";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tpsc-landing-wrap .divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 28px 0;
}

.tpsc-landing-wrap .cta-footer {
  text-align: center;
  padding: 32px 24px;
  background: rgba(232, 184, 75, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
}
.tpsc-landing-wrap .cta-footer h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.tpsc-landing-wrap .cta-footer h2 em {
  font-style: normal;
  color: var(--gold-primary);
}
.tpsc-landing-wrap .cta-footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── MODERN GLASSMORPHIC MODAL OVERLAYS ── */
.tpsc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 8, 19, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.tpsc-overlay.active {
  display: flex;
}

.tpsc-modal-box {
  background: rgba(18, 22, 41, 0.95) !important;
  border: 1px solid var(--border-gold-strong) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--gold-glow-strong) !important;
  border-radius: 12px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
  position: relative;
  animation: tpscModalReveal 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: var(--text-light) !important;
}

.tpsc-modal-box input,
.tpsc-modal-box select,
.tpsc-modal-box input[type] {
  background: rgba(8, 10, 20, 0.8) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--text-light) !important;
}

.tpsc-modal-box input:focus,
.tpsc-modal-box select:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: var(--gold-glow) !important;
}

@keyframes tpscModalReveal {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.tmb-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(232, 184, 75, 0.12);
  padding-bottom: 12px;
}

.tmb-modal-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 0;
}

.tmb-close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.15s;
}
.tmb-close-modal:hover {
  color: var(--gold-primary);
}

/* Google Sign-in Divider styling */
.tpsc-google-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  margin: 20px 0 12px !important;
  width: 100% !important;
}
.tpsc-google-divider::before,
.tpsc-google-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
}
.tpsc-google-divider:not(:empty)::before {
  margin-right: .75em;
}
.tpsc-google-divider:not(:empty)::after {
  margin-left: .75em;
}

/* Tab Content Visibility */
.tpsc-tab-content {
  display: none !important;
}
.tpsc-tab-content.active {
  display: block !important;
}

/* Contact footer colors and links styling */
.cta-contact {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  margin-top: 16px !important;
  text-align: center !important;
}
.cta-contact a {
  color: var(--gold-primary) !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}
.cta-contact a:hover {
  color: var(--gold-light) !important;
  text-shadow: 0 0 8px rgba(232, 184, 75, 0.4) !important;
}
