/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loading-logo {
  width: 200px;
  height: auto;
  opacity: 0.9;
}

.terminal-container {
  width: 100%;
  max-width: 600px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
  overflow: hidden;
}

.terminal-header {
  background-color: #0a0a0a;
  padding: 8px 12px;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
}

.terminal-title {
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: bold;
}

.terminal-output {
  padding: 12px;
  max-height: 200px;
  overflow-y: auto;
  background-color: #000;
}

.terminal-line {
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 4px;
  opacity: 0;
  animation: typeIn 0.3s ease-in forwards;
}

.terminal-line:last-child {
  margin-bottom: 0;
}

.terminal-cursor {
  display: inline-block;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 12px;
  margin-left: 12px;
  animation: blink 1s infinite;
}

@keyframes typeIn {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Responsive loading screen */
@media (max-width: 768px) {
  .loading-logo {
    width: 150px;
  }

  .loading-content {
    gap: 20px;
  }

  .terminal-container {
    max-width: 95%;
  }

  .terminal-title {
    font-size: 10px;
  }

  .terminal-line {
    font-size: 10px;
  }

  .terminal-cursor {
    font-size: 10px;
  }
}

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

body {
  background-color: #000;
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
  height: 100vh;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.header {
  padding: 8px 16px;
  border-bottom: 1px solid #333;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.header-left {
  flex: 0 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px;
  border-radius: 4px;
}

.logo:hover {
  background-color: rgba(0, 255, 0, 0.1);
  transform: scale(1.05);
}

.logo:active {
  transform: scale(1.02);
}

.logo-image {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.header-logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ascii-logo {
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 4px;
  line-height: 1;
  margin: 0;
  padding: 0;
  white-space: pre;
  overflow: hidden;
  text-align: center;
  max-width: 100%;
  height: auto;
}

/* Responsive ASCII Logo */
@media (max-width: 1400px) {
  .ascii-logo {
    font-size: 7px;
  }
}

@media (max-width: 1200px) {
  .ascii-logo {
    font-size: 6px;
  }
}

@media (max-width: 1000px) {
  .ascii-logo {
    font-size: 5px;
  }
}

@media (max-width: 800px) {
  .ascii-logo {
    font-size: 4px;
  }
}

@media (max-width: 600px) {
  .ascii-logo {
    font-size: 3px;
  }
}

@media (max-width: 480px) {
  .ascii-logo {
    font-size: 2px;
  }
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.login-button {
  background-color: #000;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 4px 12px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-button:hover {
  background-color: #00ff00;
  color: #000;
}

/* Live Status Section */
.live-status-section {
  background-color: #0a0a0a;
  border: 1px solid #00ff00;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 8px;
  margin-bottom: 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
}

.section-header h2 {
  color: #00ff00;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}

.last-updated {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 10px;
}

.update-indicator {
  width: 6px;
  height: 6px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.data-timestamp {
  color: #888;
  font-size: 11px;
  font-style: italic;
}

.live-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.status-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 8px;
  text-align: center;
}

.status-label {
  color: #00ffff;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* Progress Bar Styles */
.progress-bar {
  height: 12px;
  background-color: #333;
  border: 1px solid #555;
  position: relative;
  margin: 4px 0;
  border-radius: 2px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #00ff00 0%, #ffff00 70%, #ff0000 90%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.progress-text {
  position: absolute;
  top: 0;
  left: 4px;
  color: #000;
  font-weight: bold;
  font-size: 9px;
  line-height: 12px;
}

/* Overview Section */
.overview-section {
  padding: 0 8px;
}

/* Main Content Styles */
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 4px 8px;
}

.section-title {
  color: #00ffff;
  margin: 8px 0 4px 0;
  font-weight: bold;
}

/* Table Styles */
.table-container {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #333;
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 2px 8px;
  text-align: left;
  border-bottom: 1px solid #222;
}

th {
  background-color: #333;
  color: #00ff00;
  position: sticky;
  top: 0;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #111;
}

tr:hover {
  background-color: #333;
}

.program-id {
  font-family: monospace;
  color: #ffff00;
}

.program-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
  height: 100%;
}

.program-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 2px 4px;
  margin: -2px -4px;
}

.program-link:active {
  transform: scale(0.98);
}

.success {
  color: #00ff00;
}

.failure {
  color: #ff0000;
}

.cu-high {
  color: #ff6600;
}

.cu-medium {
  color: #ffff00;
}

.cu-low {
  color: #00ff00;
}

/* Chart Styles */
.chart-container {
  height: 200px;
  border: 1px solid #333;
  margin-bottom: 8px;
  background-color: #000;
  position: relative;
}

.chart-container canvas {
  background-color: #000 !important;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 200px;
  margin-bottom: 8px;
}

.grid-layout .chart-container {
  height: 200px;
}

/* Footer Styles */
.footer {
  background-color: #333;
  padding: 4px 8px;
  border-top: 1px solid #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-item {
  margin-right: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  user-select: none;
}

.footer-item:hover {
  background-color: #444;
  transform: translateY(-1px);
}

.footer-item:active {
  transform: translateY(0);
  background-color: #555;
}

.footer-key {
  color: #00ff00;
  font-weight: bold;
}

.footer-desc {
  color: #fff;
}

/* Status Indicator */
.status-indicator {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ff00;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Scrollbar Styles */
.main-content::-webkit-scrollbar {
  width: 12px;
}

.main-content::-webkit-scrollbar-track {
  background: #111;
  border-left: 1px solid #333;
}

.main-content::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 6px;
  border: 2px solid #111;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.main-content::-webkit-scrollbar-corner {
  background: #111;
}

.scrollbar::-webkit-scrollbar {
  width: 8px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #333;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .live-status-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .grid-layout .chart-container {
    height: 180px;
  }

  .chart-container {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .live-status-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .live-status-section {
    padding: 6px 12px;
    margin: 6px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .grid-layout .chart-container {
    height: 160px;
  }

  .chart-container {
    height: 160px;
  }

  .table-container {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .live-status-section {
    padding: 4px 8px;
    margin: 4px;
  }

  .status-card {
    padding: 4px 6px;
  }

  .status-label {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .status-value {
    font-size: 9px;
    margin-top: 2px;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .grid-layout .chart-container {
    height: 140px;
  }

  .chart-container {
    height: 140px;
  }

  .table-container {
    height: 120px;
  }
}

/* Responsive Header Styles */
@media (max-width: 1024px) {
  .ascii-logo {
    font-size: 6px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 12px 8px;
  }

  .header-left,
  .header-center,
  .header-right {
    flex: none;
    margin: 0;
  }

  .ascii-logo {
    font-size: 4px;
  }

  .logo-image {
    height: 35px;
    max-width: 140px;
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .ascii-logo {
    font-size: 2px;
  }

  .logo-image {
    height: 30px;
    max-width: 120px;
  }
}

.subtitle {
  color: #888;
  margin-top: 4px;
}

.quick-stats {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding: 8px 0;
  border-top: 1px solid #333;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  color: #888;
  font-size: 10px;
}

.stat-value {
  color: #00ff00;
  font-weight: bold;
  margin-top: 2px;
}

.charts-grid-realtime {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px;
  overflow: hidden;
}

.chart-section {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
}

.chart-header h3 {
  color: #00ff00;
  font-size: 14px;
  margin: 0;
}

.chart-info {
  color: #888;
  font-size: 10px;
}

.chart-container {
  flex: 1;
  position: relative;
  min-height: 0;
}

.realtime-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background-color: #111;
  border-top: 1px solid #333;
}

.control-btn {
  background-color: #333;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 8px 16px;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 12px;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background-color: #00ff00;
  color: #000;
}

.control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.control-info {
  color: #888;
  font-size: 10px;
}

/* Responsive adjustments for realtime page */
@media (min-width: 1200px) {
  .charts-grid-realtime {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .chart-section:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .realtime-controls {
    flex-direction: column;
    gap: 10px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  background-color: #111;
  margin: 5% auto;
  padding: 0;
  border: 2px solid #00ff00;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background-color: #0a0a0a;
  padding: 16px 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #00ff00;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.close {
  color: #888;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #00ff00;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.modal-body p {
  color: #fff;
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.4;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.program-input {
  flex: 1;
  background-color: #000;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 12px;
  transition: border-color 0.2s ease;
}

.program-input:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.program-input::placeholder {
  color: #666;
}

.filter-btn {
  background-color: #00ff00;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background-color: #00cc00;
  transform: translateY(-1px);
}

.filter-btn:active {
  transform: translateY(0);
}

.example-ids {
  border-top: 1px solid #333;
  padding-top: 16px;
}

.example-title {
  color: #888;
  font-size: 12px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.example-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.example-id {
  color: #00ffff;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 4px 8px;
  background-color: #0a0a0a;
  border: 1px solid #333;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.example-id:hover {
  background-color: #1a1a1a;
  border-color: #00ffff;
  color: #fff;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
    align-items: flex-start;
  }

  .modal-content {
    margin: 5vh auto;
    width: 100%;
    max-width: none;
    max-height: 85vh;
    min-height: auto;
  }

  .modal-body {
    max-height: none;
  }

  .input-group {
    flex-direction: column;
    gap: 8px;
  }

  .filter-btn {
    width: 100%;
  }

  .example-list {
    gap: 4px;
  }

  .example-id {
    font-size: 9px;
    padding: 3px 6px;
  }
}

/* Additional Modal Content Styles */
.newsletter-info {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #333;
}

.info-text {
  color: #888;
  font-size: 12px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  color: #00ffff;
  font-size: 11px;
  padding: 2px 0;
  position: relative;
  padding-left: 16px;
}

.info-list li:before {
  content: "→";
  color: #00ff00;
  position: absolute;
  left: 0;
}

.feature-list {
  margin: 16px 0;
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: #fff;
  font-size: 12px;
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.feature-list li:before {
  content: "✓";
  color: #00ff00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.founders-deal {
  margin-top: 16px;
  padding: 12px;
  background-color: #0a0a0a;
  border: 1px solid #00ff00;
  border-radius: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
}

.help-content {
  max-height: 70vh;
  overflow-y: auto;
}

.help-content h4 {
  color: #00ff00;
  font-size: 14px;
  margin: 20px 0 8px 0;
  font-weight: bold;
}

.help-content h4:first-child {
  margin-top: 0;
}

.help-content p {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.help-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.help-content li {
  color: #fff;
  font-size: 12px;
  padding: 2px 0;
  position: relative;
  padding-left: 16px;
}

.help-content li:before {
  content: "•";
  color: #00ff00;
  position: absolute;
  left: 0;
}

.contact-info {
  background-color: #0a0a0a;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 4px;
  margin: 8px 0;
}

.contact-link {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}

.shortcuts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  background-color: #0a0a0a;
  border: 1px solid #333;
  border-radius: 3px;
}

.shortcut-key {
  color: #00ff00;
  font-weight: bold;
  font-family: "Courier New", monospace;
  background-color: #000;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid #00ff00;
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
  .shortcuts-list {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    font-size: 11px;
    padding-left: 16px;
  }

  .help-content {
    max-height: 60vh;
  }

  .help-content h4 {
    font-size: 13px;
  }

  .help-content p,
  .help-content li {
    font-size: 11px;
  }
}

.efficiency-separator {
  border-top: 2px solid #333;
  background-color: #0a0a0a;
}

.efficiency-separator td {
  padding: 8px;
  text-align: center;
  color: #888;
  font-style: italic;
}

.most-efficient-row .efficiency-score {
  color: #00ff00 !important; /* Green for good efficiency */
}

.least-efficient-row .efficiency-score {
  color: #ff6b6b !important; /* Red for poor efficiency */
}

.button-loader {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.founders-deal {
  margin-top: 20px;
  padding: 16px;
  border: 2px solid #00ff00;
  border-radius: 8px;
  background: rgba(0, 255, 0, 0.05);
  position: relative;
}

.founders-deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.deal-badge {
  background: linear-gradient(45deg, #00ff00, #32ff32);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spots-remaining {
  color: #ff6b6b;
  font-size: 12px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

.deal-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.original-price {
  color: #888;
  text-decoration: line-through;
  font-size: 14px;
}

.founder-price {
  color: #00ff00;
  font-size: 18px;
  font-weight: bold;
}

.savings {
  background: #ff6b6b;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.4;
}

.deal-text {
  color: #fff;
  font-size: 14px;
}

.checkbox-label:hover .deal-text {
  color: #00ff00;
  transition: color 0.2s ease;
}

/* Waitlist Options Styling */
.waitlist-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.waitlist-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.waitlist-option:hover {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.05);
}

.waitlist-option input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.waitlist-option input[type="radio"]:checked + .custom-radio {
  border-color: #00ff00;
  background: #00ff00;
}

.waitlist-option input[type="radio"]:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.option-desc {
  color: #aaa;
  font-size: 12px;
  line-height: 1.3;
}

/* Selected founder option styling */
.waitlist-option input[type="radio"]:checked {
  background: rgba(0, 255, 0, 0.1);
}

.founder-option input[type="radio"]:checked ~ .option-content .option-title {
  color: #00ff00;
}

/* Founder confirmation styling */
.founder-confirmation {
  padding: 12px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 6px;
  margin-top: 8px;
}

.confirmation-text {
  color: #00ff00;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Background change when founder selected */
.founders-deal.founder-selected {
  background: rgba(0, 255, 0, 0.08);
  border-color: #00ff00;
}

/* Animation for confirmation */
.founder-confirmation {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
