/* DailyOptionsPick Main Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: #0F0F0F;
  color: #E5E7EB;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  animation: fadeIn 0.6s ease-out;
}

#pickContainer {
  padding-top: 0px;
}

/* Hero background section */
.hero-bg {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 890px;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, #1a3a1a 100%);
  z-index: -1;
  border-bottom: 1px solid #1f2123;
}

header {
  text-align: center;
  padding: 40px 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #00C805 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.tagline {
  color: #d1d5db;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.user-info {
  text-align: right;
  margin-bottom: 24px;
  padding: 16px;
  background: #1A1A1A;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #2D2D2D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-email {
  color: #E5E7EB;
  font-weight: 600;
}

.pro-banner {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  border-bottom: 2px solid #00FF0A;
  padding: 12px 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 200, 5, 0.3);
  z-index: 1000;
  animation: fadeInUp 0.6s ease-out;
}

.pro-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pro-badge {
  background: #000000;
  color: #00FF0A;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.pro-status {
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
}

.pro-trial-info {
  color: #1A1A1A;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Pick Card */
.pick-card {
  background: #1A1A1A;
  border: 3px solid transparent;
  background-image: linear-gradient(#1A1A1A, #1A1A1A),
                    linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 20px;
  padding: 36px;
  margin: 32px 0;
  box-shadow: 0 20px 60px rgba(0, 200, 5, 0.15);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0, 200, 5, 0.25);
}

.pick-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2D2D2D;
}

.symbol {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
}

.strategy {
  font-size: 1.1rem;
  color: #4B5563;
  font-weight: 500;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.stat {
  background: #262626;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2D2D2D;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.stat:hover {
  background: #2D2D2D;
  border-color: #00C805;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 5, 0.15);
}

.stat-label {
  color: #4B5563;
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.stat-value.green { color: #00C805; }
.stat-value.blue { color: #FFFFFF; }

.stat-hint {
  font-size: 11px;
  color: #4B5563;
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Info Icon */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background: transparent;
  border: none;
  color: #4B5563;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  vertical-align: middle;
  line-height: 1;
}

.info-icon:hover {
  color: #00C805;
  transform: scale(1.15);
}

.info-icon:focus-visible {
  outline: 2px solid #00C805;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Tooltip */
.term-tooltip {
  position: fixed;
  z-index: 1000;
  max-width: 340px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 16px;
  background: #1A1A1A;
  border: 2px solid #00C805;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.3), 0 0 0 9999px rgba(0, 0, 0, 0.5);
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.term-tooltip.active {
  display: block;
}

.term-tooltip::-webkit-scrollbar {
  width: 6px;
}

.term-tooltip::-webkit-scrollbar-track {
  background: #2D2D2D;
  border-radius: 3px;
}

.term-tooltip::-webkit-scrollbar-thumb {
  background: #00C805;
  border-radius: 3px;
}

.tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tooltip-title {
  color: #00C805;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.tooltip-close {
  background: transparent;
  border: none;
  color: #4B5563;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  margin-left: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.tooltip-close:hover {
  color: #E5E7EB;
  background: #2D2D2D;
  box-shadow: none;
  transform: none;
}

.tooltip-definition {
  margin: 0 0 10px 0;
  color: #D1D5DB;
  font-size: 14px;
}

.tooltip-analogy {
  margin: 10px 0;
  padding: 10px 12px;
  background: #262626;
  border-left: 3px solid #00C805;
  border-radius: 6px;
  font-size: 13px;
  color: #4B5563;
}

.tooltip-example {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #2D2D2D;
  font-size: 13px;
}

.tooltip-example strong {
  color: #E5E7EB;
  display: block;
  margin-bottom: 4px;
}

.tooltip-example-value {
  color: #4B5563;
}

/* Strikes Section */
.strikes-section {
  margin: 24px 0;
  padding: 24px;
  background: #262626;
  border-radius: 12px;
  border: 2px solid #2D2D2D;
  position: relative;
}

.strikes-section h3 {
  margin-bottom: 16px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.leg {
  padding: 16px;
  margin: 8px 0;
  background: #1A1A1A;
  border-radius: 10px;
  border: 1px solid #2D2D2D;
}

.strike-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
}

.blurred {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.98);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  z-index: 10;
  padding: 32px;
  text-align: center;
}

.blur-overlay h3 {
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 11;
}

.blur-overlay p {
  color: #4B5563;
  margin-bottom: 24px;
  font-size: 1rem;
  z-index: 11;
  max-width: 320px;
  line-height: 1.6;
}

.blur-overlay button {
  z-index: 11;
  position: relative;
}

/* Buttons */
button {
  background: linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 200, 5, 0.25);
}

button:hover {
  background: linear-gradient(135deg, #5ac53a 0%, #00C805 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.4);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 200, 5, 0.3);
}

button:focus-visible {
  outline: 3px solid #00C805;
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid #1f2123;
  outline-offset: 2px;
  border-radius: 2px;
}

input:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid #00C805;
  outline-offset: 2px;
}

button.secondary {
  background: #2D2D2D;
  color: #E5E7EB;
  padding: 10px 20px;
  font-size: 0.95rem;
}

button.secondary:hover {
  background: #3D3D3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  overflow-y: auto;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #1A1A1A;
  padding: 40px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #2D2D2D;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #2D2D2D;
  border: none;
  color: #4B5563;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1;
  font-weight: 300;
}

.modal-close:hover {
  background: #3D3D3D;
  color: #E5E7EB;
  transform: none;
  box-shadow: none;
}

.modal-content h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
  text-align: center;
  color: #FFFFFF;
}

/* Form Inputs */
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  background: #262626;
  border: 1px solid #2D2D2D;
  border-radius: 8px;
  color: #E5E7EB;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #00C805;
  background: #2D2D2D;
}

.modal #authButton {
  width: 100%;
  margin-top: 16px;
}

.toggle-auth {
  text-align: center;
  margin-top: 16px;
  color: #4B5563;
}

.toggle-auth a {
  color: #00C805;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.toggle-auth a:hover {
  text-decoration: underline;
  color: #5ac53a;
}

/* Messages */
.error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 12px;
  border-radius: 8px;
  margin: 12px 0;
  display: none;
  border: 1px solid #FCA5A5;
}

.error.active {
  display: block;
}

.success {
  background: #D1FAE5;
  color: #065F46;
  padding: 12px;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #6EE7B7;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #4B5563;
  font-size: 1.1rem;
}

/* Notes Section */
.notes {
  margin-top: 20px;
  padding: 16px;
  background: #1a3a1a;
  border-radius: 8px;
  border-left: 3px solid #00C805;
}

.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #00C805;
  font-weight: 600;
}

.notes-help-btn {
  background: transparent;
  border: 1px solid #00C805;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.notes-help-btn:hover {
  background: #00C805;
  transform: scale(1.1);
}

.help-icon {
  color: #00C805;
  font-weight: bold;
  font-size: 14px;
}

.notes-help-btn:hover .help-icon {
  color: #0F0F0F;
}

.notes ul {
  list-style: none;
  padding-left: 0;
}

.notes li {
  padding: 4px 0;
  color: #4B5563;
}

.notes li:before {
  content: "\2192 ";
  color: #00C805;
  font-weight: bold;
}

/* Glossary Modal */
.glossary-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.glossary-modal {
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 2px solid #00C805;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 200, 5, 0.2);
}

.glossary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #00C805;
}

.glossary-header h3 {
  margin: 0;
  color: #00C805;
  font-size: 1.5rem;
}

.glossary-close {
  background: transparent;
  border: none;
  color: #00C805;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.glossary-close:hover {
  transform: scale(1.2);
  color: #fff;
}

.glossary-content {
  padding: 20px;
}

.glossary-item {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 200, 5, 0.05);
  border-left: 3px solid #00C805;
  border-radius: 4px;
}

.glossary-item:last-child {
  margin-bottom: 0;
}

.glossary-item h4 {
  margin: 0 0 8px 0;
  color: #00C805;
  font-size: 1.1rem;
}

.glossary-item p {
  margin: 0;
  color: #4B5563;
  line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
  padding: 32px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 2px solid #2D2D2D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stats-banner .stat {
  text-align: center;
  padding: 12px;
}

/* Trust Signals */
.trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a3a1a 0%, #0a2a0a 100%);
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid #2D2D2D;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E5E7EB;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.trust-badge-item:hover {
  transform: scale(1.05);
  background: #2D2D2D;
  box-shadow: 0 2px 8px rgba(0, 200, 5, 0.1);
}

.trust-icon {
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge-item:hover .trust-icon {
  transform: scale(1.2);
}

/* Recent Result Card */
.yesterday-card {
  background: #1A1A1A;
  border: 2px solid #2D2D2D;
  border-left: 4px solid #00C805;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.yesterday-card.loss {
  border-left-color: #ef4444;
}

.yesterday-card h3 {
  margin-bottom: 12px;
  color: #4B5563;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.yesterday-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.yesterday-symbol {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #60A5FA;
}

.yesterday-roc {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.yesterday-roc.positive {
  color: #10b981;
}

.yesterday-roc.negative {
  color: #ef4444;
}

/* History Table */
.history-section {
  margin: 40px 0;
}

.history-section h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #2D2D2D;
}

.history-table th {
  background: #262626;
  padding: 16px;
  text-align: left;
  color: #4B5563;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.history-table td {
  padding: 16px;
  border-top: 1px solid #2D2D2D;
  color: #E5E7EB;
}

.history-table tr:hover {
  background: #262626;
}

.result-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.result-badge.win {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.result-badge.loss {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.result-badge.open {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

/* Risk Warning */
.risk-warning {
  background: #FEF3C7;
  border-left: 4px solid #D97706;
  border-radius: 8px;
  padding: 16px;
  margin: 40px 0 20px 0;
  font-size: 0.85rem;
  color: #78350F;
  line-height: 1.6;
}

.risk-warning p {
  margin-bottom: 8px;
}

.risk-warning a {
  color: #00C805;
  text-decoration: underline;
}

.risk-warning a:hover {
  color: #5ac53a;
}

.performance-disclaimer {
  background: #FEF3C7;
  border-left: 4px solid #D97706;
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #78350F;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 2px solid #2D2D2D;
  text-align: center;
  color: #4B5563;
  font-size: 0.9rem;
}

.site-footer a {
  color: #00C805;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #5ac53a;
}

.site-footer .nav-links {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2D2D2D;
}

.site-footer .nav-links a {
  font-size: 1rem;
  color: #E5E7EB;
}

.site-footer .nav-links a:hover {
  color: #00C805;
}

.site-footer .legal-links {
  margin: 12px 0;
}

.site-footer .copyright {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #4B5563;
}

.site-footer .finra-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #4B5563;
}

/* Checkbox Agreement */
.agreement-section {
  margin: 16px 0;
  padding: 12px;
  background: #262626;
  border-radius: 8px;
  border: 1px solid #2D2D2D;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin: 8px 0;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  color: #E5E7EB;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: #00C805;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: #5ac53a;
}

.trust-badge {
  text-align: center;
  margin: 16px 0;
  color: #d1d5db;
  font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
  margin: 60px 0 0 0;
  padding: 40px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 2px solid #2D2D2D;
}

.how-it-works h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.step p {
  color: #4B5563;
  line-height: 1.6;
}

/* Features */
.features {
  margin: 60px 0 15px 0;
}

.features h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #1A1A1A;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #2D2D2D;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #00C805;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.feature-card p {
  color: #4B5563;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  margin: 60px 0 30px 0;
  padding: 40px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 2px solid #2D2D2D;
}

.pricing h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.pricing-card {
  background: #262626;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #2D2D2D;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured {
  background: #1A1A1A;
  border: 3px solid transparent;
  background-image:
    linear-gradient(#1A1A1A, #1A1A1A),
    linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.15);
  transform: scale(1.05);
}

.pricing-card:hover:not(.coming-soon) {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 200, 5, 0.25);
}

.pricing-card.coming-soon {
  opacity: 0.6;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 200, 5, 0.3);
}

.pricing-badge.coming-soon-badge {
  background: #6B7280;
}

.pricing-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.pricing-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.pricing-card .price-period {
  color: #4B5563;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: #E5E7EB;
  border-bottom: 1px solid #2D2D2D;
}

.pricing-features li:before {
  content: "\2713 ";
  color: #00C805;
  font-weight: bold;
  margin-right: 8px;
}

/* FAQ */
.faq {
  margin: 60px 0;
}

.faq h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.faq-item {
  background: #1A1A1A;
  border: 2px solid #2D2D2D;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: #1A1A1A;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  background: linear-gradient(135deg, #1a3a1a 0%, #0a2a0a 100%);
  padding-left: 28px;
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: #00C805;
  transition: transform 0.3s;
}

.faq-question.active:after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #4B5563;
  line-height: 1.6;
}

.faq-answer.active {
  padding: 0 24px 20px 24px;
  max-height: 500px;
}

/* Platform Buttons */
.platform-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #1A1A1A;
  border: 2px solid #2D2D2D;
  border-radius: 12px;
  text-decoration: none;
  color: #E5E7EB;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.platform-btn:hover {
  background: #262626;
  border-color: #00C805;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.2);
}

.platform-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.platform-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  flex-grow: 1;
  margin-left: 12px;
}

.platform-arrow {
  font-size: 1.2rem;
  color: #00C805;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.platform-btn:hover .platform-arrow {
  transform: translateX(4px);
}

/* Pro Dashboard */
.pro-dashboard {
  background: #1A1A1A;
  border: 2px solid #00C805;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.pro-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pro-dashboard-header h2 {
  margin: 0;
  color: #00C805;
  font-size: 1.5rem;
}

.scan-schedule-note {
  color: #4B5563;
  font-size: 0.9rem;
  margin: -8px 0 20px 0;
  font-style: italic;
  text-align: center;
}

.pro-settings-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.pro-settings-btn:hover {
  transform: translateY(-2px);
}

.pro-scans-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scan-card {
  background: #2D2D2D;
  border: 1px solid #404040;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
}

.scan-card:hover {
  border-color: #00C805;
  box-shadow: 0 4px 20px rgba(0, 200, 5, 0.2);
}

.scan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 4px 0;
  border-radius: 4px;
}

.scan-header:hover {
  background: rgba(0, 200, 5, 0.05);
}

.scan-time {
  color: #00C805;
  font-weight: 600;
  font-size: 1.1rem;
}

.scan-count {
  color: #4B5563;
  font-size: 0.9rem;
}

.scan-picks {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #404040;
}

.scan-card.expanded .scan-picks {
  display: block;
}

/* Scan Sections - Today vs History */
.scans-section {
  margin-bottom: 20px;
}

.scans-section.today-scans {
  background: linear-gradient(135deg, rgba(0, 200, 5, 0.05) 0%, transparent 100%);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 200, 5, 0.2);
}

.scans-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.scans-section-title {
  color: #00C805;
  font-size: 1.1rem;
  font-weight: 600;
}

.scans-section-count {
  color: #6B7280;
  font-size: 0.85rem;
}

.scans-section-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* History toggle button */
.scans-history-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #2D2D2D;
  border: 1px solid #404040;
  border-radius: 8px;
  color: #9CA3AF;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.scans-history-toggle:hover {
  background: #3D3D3D;
  border-color: #505050;
  color: #E5E7EB;
}

.scans-history-toggle .toggle-arrow {
  transition: transform 0.3s ease;
}

.scans-history-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Settings Modal */
.settings-modal-content {
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.settings-subtitle {
  color: #4B5563;
  margin: -8px 0 24px 0;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: #F3F4F6;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input[type="number"],
.form-group input[type="range"] {
  width: 100%;
  background: #2D2D2D;
  border: 1px solid #404040;
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group input[type="range"] {
  padding: 0;
  height: 6px;
  background: linear-gradient(to right, #00C805 0%, #5ac53a 100%);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #4B5563;
  font-size: 0.85rem;
  margin-top: 4px;
}

.checkbox-group-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
}

.checkbox-group-horizontal label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Ticker Autocomplete */
.ticker-input-container {
  position: relative;
}

.ticker-input-container input[type="text"] {
  width: 100%;
  background: #2D2D2D;
  border: 1px solid #404040;
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-size: 1rem;
}

.ticker-input-container input[type="text"]:focus {
  outline: none;
  border-color: #00C805;
}

.ticker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2D2D2D;
  border: 1px solid #00C805;
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: -1px;
}

.ticker-dropdown-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #404040;
  transition: background 0.2s;
}

.ticker-dropdown-item:last-child {
  border-bottom: none;
}

.ticker-dropdown-item:hover {
  background: #404040;
}

.ticker-dropdown-item .ticker-symbol {
  color: #00C805;
  font-weight: 600;
  margin-right: 8px;
}

.ticker-dropdown-item .ticker-description {
  color: #4B5563;
  font-size: 0.9rem;
}

.selected-tickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  min-height: 24px;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00C805 0%, #5ac53a 100%);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.ticker-chip-remove {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.ticker-chip-remove:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ticker-search-note {
  color: #4B5563;
  font-size: 0.85rem;
  margin: 8px 0 0 0;
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #404040;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding: 24px 0;
  }

  .container {
    padding: 0 16px;
  }

  header {
    padding-left: 16px;
    padding-right: 16px;
  }

  #pickContainer {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
  }

  h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .symbol {
    font-size: 1.6rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .yesterday-roc {
    font-size: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .hero-bg {
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: 0;
  }

  .pick-card {
    padding: 24px 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .symbol {
    font-size: 1.6rem;
  }

  .strategy {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-hint {
    font-size: 10px;
  }

  .strike-value {
    font-size: 1.1rem;
  }

  .strikes-section h3 {
    font-size: 1rem;
  }

  .pick-header > div > div[style*="font-size: 1.2rem"] {
    font-size: 1rem !important;
  }

  .pick-header > div > div[style*="font-size: 0.9rem"] {
    font-size: 0.8rem !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
    padding: 32px 24px;
    width: 95%;
  }

  .container {
    max-width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 20px;
    margin: 0 -20px 15px -20px;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 85%;
    min-width: 280px;
  }

  .pricing-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px;
    margin: 0 -20px;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex: 0 0 85%;
  }

  .pricing-card:hover,
  .pricing-card.featured:hover {
    transform: none;
    box-shadow: none;
  }

  .how-it-works {
    padding: 24px;
  }

  .pricing {
    padding: 48px 24px 80px 24px;
  }

  .platform-buttons {
    grid-template-columns: 1fr;
  }

  .history-section {
    margin: 40px -16px;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .history-table {
    min-width: 500px;
    font-size: 0.85rem;
  }

  .history-table th,
  .history-table td {
    padding: 12px 8px;
    white-space: nowrap;
  }

  .history-table th:first-child,
  .history-table td:first-child {
    padding-left: 16px;
  }

  .history-table th:last-child,
  .history-table td:last-child {
    padding-right: 16px;
  }

  .trust-signals {
    flex-direction: column;
    gap: 1rem;
  }

  .term-tooltip {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 60px);
    width: 320px;
  }

  .info-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .pro-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .term-tooltip {
    max-height: calc(100vh - 100px);
  }
}
