*{box-sizing:border-box}
html,body{
  margin:0;padding:0;background:#050805;color:#9cff9c;font-family:Orbitron,monospace;
  overflow-x: hidden;
  max-width: 100vw;
}

#matrix {
  z-index: 0;
}

.wrap{max-width:1200px;margin:0 auto;padding:20px}

.top{
  display:flex;justify-content:space-between;align-items:center;
  border:1px solid #3aff3a;
  padding:12px;border-radius:10px;
  box-shadow:0 0 15px #3aff3a55;
}

.brand{display:flex;gap:12px;align-items:center}
.logo{width:48px;height:48px;filter:drop-shadow(0 0 8px #3aff3a)}
.title{font-size:26px;letter-spacing:2px}
.sub{font-size:12px;opacity:.7}

.stats{display:flex;gap:10px}
.chip{border:1px solid #3aff3a;padding:6px 10px;border-radius:999px}

.ticker-wrap {
  margin-top: 15px;
  border: 1px solid #3aff3a;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;
  position: relative;
}

.ticker-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #3aff3a;
  background: rgba(0, 0, 0, 0.9);
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

.ticker {
  display: flex;
  white-space: nowrap;
  padding-left: 160px;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker.paused {
  opacity: 0.6;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  font-size: 12px;
  flex-shrink: 0;
  border-right: 1px solid rgba(58, 255, 58, 0.3);
}

.ticker-item .t-name {
  color: #3aff3a;
  font-weight: bold;
  min-width: 60px;
}

.ticker-item .t-risk {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  min-width: 35px;
  text-align: center;
}

.ticker-item .t-risk.high { background: #ff3b3b; color: #000; }
.ticker-item .t-risk.med { background: #ffaa00; color: #000; }
.ticker-item .t-risk.low { background: #3aff3a; color: #000; }

.ticker-item .t-time {
  opacity: 0.7;
  font-size: 10px;
  min-width: 30px;
}

.follow-x {
  background: #000;
  color: #fff;
  border: 1px solid #3aff3a;
  padding: 6px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(58, 255, 58, 0.2);
}

.follow-x:hover {
  background: #3aff3a;
  color: #000;
  box-shadow: 0 0 20px rgba(58, 255, 58, 0.6);
}

.auth-btn {
  background: #000;
  color: #3aff3a;
  border: 1px solid #3aff3a;
  padding: 6px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.auth-btn:hover {
  background: #3aff3a;
  color: #000;
}

.auth-btn.logout {
  border-color: #ff3b3b;
  color: #ff3b3b;
}

.auth-btn.logout:hover {
  background: #ff3b3b;
  color: #000;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid #3aff3a;
  border-radius: 999px;
  font-size: 11px;
}

.user-badge img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.my-history {
  margin-top: 15px;
  border: 1px solid #3aff3a;
  border-radius: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.65);
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(58, 255, 58, 0.3);
}

.history-title {
  font-size: 12px;
  font-weight: bold;
  color: #3aff3a;
}

.user-info {
  font-size: 11px;
  opacity: 0.8;
}

.history-list {
  max-height: 150px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(0, 255, 102, 0.05);
  border: 1px solid rgba(58, 255, 58, 0.2);
  border-radius: 6px;
  font-size: 11px;
}

.history-item .h-name {
  color: #3aff3a;
  font-weight: bold;
}

.history-item .h-score {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: bold;
}

.history-item .h-score.high { background: #ff3b3b; color: #000; }
.history-item .h-score.med { background: #ffaa00; color: #000; }
.history-item .h-score.low { background: #3aff3a; color: #000; }

.history-item .h-time {
  opacity: 0.6;
  font-size: 10px;
}

.panel{
  margin-top:20px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:20px;
}

.left, .right, .terminal, .results, .live-feed-wrap, .exposure, .meta, .age-row {
  background: rgba(0, 0, 0, 0.65);   /* darker panel */
  backdrop-filter: blur(6px);        /* glass blur */
  -webkit-backdrop-filter: blur(6px);
}

.left input{
  width:100%;padding:10px;background:#020; color:#9cff9c;
  border:1px solid #3aff3a;border-radius:6px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#scanBtn{
  margin-top:8px;width:100%;
  padding:10px;border:1px solid #3aff3a;
  background:#0f0;color:#000;border-radius:6px;
  cursor:pointer;font-weight:bold;
  position: relative;
  transition: all 0.3s ease;
}

#scanBtn.loading {
  background: linear-gradient(90deg, #0f0 0%, #3aff3a 50%, #0f0 100%);
  background-size: 200% 100%;
  animation: scan-loading 1s linear infinite;
  color: #000;
  pointer-events: none;
}

#scanBtn.loading::after {
  content: "SCANNING...";
}

#scanBtn.loading span,
#scanBtn.loading:not(:empty) {
  font-size: 0;
}

@keyframes scan-loading {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

#scanBtn:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

#scanBtn:active:not(.loading) {
  background: #ff3b3b;
  border-color: #ff3b3b;
  animation: violent-shake 0.1s infinite;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.terminal{margin-top:12px;border:1px solid #3aff3a;padding:10px;height:180px;overflow:auto}
.terminal-title{font-size:12px;opacity:.7;margin-bottom:6px}
pre{white-space:pre-wrap;font-size:12px}

.actions{display:flex;gap:10px;margin-top:10px}
.actions button{flex:1;border:1px solid #3aff3a;background:#020;color:#9cff9c;padding:8px;border-radius:6px}

#copyResult:hover,
#shareX:hover {
  animation: violent-shake 0.1s infinite;
  background: #030;
  border-color: #3aff3a;
  box-shadow: 0 0 15px rgba(58, 255, 58, 0.4);
}

@keyframes violent-shake {
  0% { transform: translate(2px, 1px) rotate(1deg); }
  10% { transform: translate(-2px, -1px) rotate(-2deg); }
  20% { transform: translate(-3px, 0px) rotate(2deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(2deg); }
  50% { transform: translate(-2px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(1deg); }
  70% { transform: translate(3px, 1px) rotate(-2deg); }
  80% { transform: translate(-1px, -1px) rotate(2deg); }
  90% { transform: translate(2px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.live-feed-wrap {
  border: 1px solid #3aff3a;
  border-radius: 10px;
  padding: 10px;
  height: 220px;
  display: flex;
  flex-direction: column;
}

.live-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.live-feed-hint {
  font-size: 10px;
  color: rgba(156, 255, 156, 0.5);
  margin-bottom: 8px;
  font-style: italic;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px #ff3b3b; }
  50% { opacity: 0.5; box-shadow: 0 0 15px #ff3b3b; }
}

.live-feed {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(0, 255, 102, 0.05);
  border: 1px solid rgba(58, 255, 58, 0.3);
  border-radius: 6px;
  font-size: 11px;
  animation: fade-in 0.3s ease;
}

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

.feed-item .token-name {
  font-weight: bold;
  color: #3aff3a;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-item .risk-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: bold;
}

.feed-item .risk-badge.high { background: #ff3b3b; color: #000; }
.feed-item .risk-badge.medium { background: #ffaa00; color: #000; }
.feed-item .risk-badge.low { background: #3aff3a; color: #000; }

.feed-item .time-ago {
  opacity: 0.6;
  font-size: 10px;
}

.results{
  display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px
}
.box{border:1px solid #3aff3a;padding:8px;border-radius:6px;font-size:12px}

.exposure{
  margin-top:10px;border:1px solid #3aff3a;padding:10px;border-radius:6px;
  text-align:center;font-size:18px;
}
.age-row {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #39ff14;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #39ff14;
  font-family: 'Share Tech Mono', monospace; /* or whatever mono font you're using */
  box-shadow: 0 0 10px rgba(57,255,20,0.35);
  background: rgba(0,0,0,0.6);
}
.meta {
  margin-top: 10px;
  color: #00ff66;
  font-size: 12px;
  text-shadow: 0 0 6px rgba(0,255,102,.6);
}
#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
.app {
  position: relative;
  z-index: 2;
}
.left, .right, .terminal, .results, .live-feed-wrap {
  box-shadow: 
    0 0 15px rgba(0, 255, 102, 0.25),
    inset 0 0 10px rgba(0, 255, 102, 0.15);
}
#matrix {
  opacity: 0.2;   /* was 0.35 – this makes UI much clearer */
}
.panel,
.left,
.right,
.terminal,
.results,
header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}
.panel * {
  text-shadow: 0 0 6px rgba(0, 255, 102, 0.4);
}
#flags {
  color: #00ff66;
}

#flags:not(:contains("-")) {
  color: #ff3b3b;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

/* FOOTER STYLES */
.site-footer {
  position: relative;
  z-index: 10;
  margin-top: 60px;
  border-top: 1px solid rgba(58, 255, 58, 0.3);
}

.footer-hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(5,8,5,0.95) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(58, 255, 58, 0.2);
}

.footer-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Orbitron', monospace;
  font-size: 64px;
  font-weight: 300;
  color: #9cff9c;
  margin: 0;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
  letter-spacing: 12px;
}

.footer-tagline {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: #9cff9c;
  margin: 10px 0 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 18px;
  color: #3aff3a;
  margin: 0 0 10px;
  font-weight: 500;
}

.footer-sub {
  font-size: 14px;
  color: rgba(156, 255, 156, 0.7);
  margin: 0;
  font-style: italic;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 50px 30px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
}

.footer-section {
  background: rgba(5, 8, 5, 0.9);
  border: 1px solid rgba(58, 255, 58, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.footer-section:hover {
  border-color: rgba(58, 255, 58, 0.5);
  box-shadow: 0 0 20px rgba(58, 255, 58, 0.15);
}

.footer-section.highlight {
  border-color: rgba(58, 255, 58, 0.4);
  background: linear-gradient(135deg, rgba(58, 255, 58, 0.05) 0%, rgba(5, 8, 5, 0.95) 100%);
}

.section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.section-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(58, 255, 58, 0.4));
}

.footer-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: #3aff3a;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section p {
  font-size: 14px;
  color: #9cff9c;
  line-height: 1.7;
  margin: 0 0 12px;
}

.footer-section strong {
  color: #3aff3a;
}

.badge {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-list, .earn-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.feature-list li, .earn-list li {
  font-size: 13px;
  color: #9cff9c;
  padding: 8px 0;
  border-bottom: 1px solid rgba(58, 255, 58, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li:last-child, .earn-list li:last-child {
  border-bottom: none;
}

.feat-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 255, 58, 0.15);
  color: #3aff3a;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.earn-list li::before {
  content: "→";
  color: #3aff3a;
  font-weight: bold;
}

.section-note {
  font-size: 12px !important;
  color: rgba(156, 255, 156, 0.5) !important;
  font-style: italic;
  margin-top: 15px !important;
}

.cta-box {
  background: rgba(58, 255, 58, 0.05);
  border: 1px solid rgba(58, 255, 58, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.cta-box span {
  display: block;
  font-size: 13px;
  color: #3aff3a;
  padding: 5px 0;
}

.signal-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.signal-item {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
}

.signal-item.dim {
  color: rgba(156, 255, 156, 0.4);
  text-decoration: line-through;
}

.signal-item.bright {
  color: #3aff3a;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(58, 255, 58, 0.6);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.95);
  padding: 40px 30px;
  border-top: 1px solid rgba(58, 255, 58, 0.2);
}

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 20px;
  background: rgba(255, 170, 0, 0.05);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 8px;
}

.disclaimer-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 12px;
  color: rgba(255, 170, 0, 0.9);
  line-height: 1.6;
}

.disclaimer-text strong {
  color: #ffaa00;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(58, 255, 58, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 600;
  color: #3aff3a;
  letter-spacing: 4px;
}

.brand-sub {
  font-size: 10px;
  color: rgba(156, 255, 156, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(58, 255, 58, 0.1);
  border: 1px solid rgba(58, 255, 58, 0.3);
  border-radius: 6px;
  color: #3aff3a;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(58, 255, 58, 0.2);
  box-shadow: 0 0 15px rgba(58, 255, 58, 0.3);
}

.footer-copy {
  font-size: 12px;
  color: rgba(156, 255, 156, 0.4);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .wrap {
    padding: 15px;
  }
  
  .panel {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .top {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .stats {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 10px;
  }
  
  .top {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  
  .brand {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  
  .title {
    font-size: 22px;
  }
  
  .stats {
    justify-content: center;
    gap: 8px;
  }
  
  .chip {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .ticker-wrap {
    padding: 6px 10px;
  }
  
  .ticker-label {
    font-size: 8px;
    padding: 2px 6px;
  }
  
  .panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .left, .right {
    padding: 12px;
  }
  
  .results {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }
  
  .box {
    font-size: 11px;
    padding: 8px;
  }
  
  .actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .actions button {
    width: 100%;
  }
  
  .live-feed-wrap {
    height: auto;
    max-height: 200px;
  }
  
  .exposure {
    padding: 15px;
  }
  
  #exposure {
    font-size: 36px;
  }
  
  .footer-title {
    font-size: 32px;
    letter-spacing: 4px;
  }
  
  .footer-sections {
    padding: 30px 15px;
    gap: 20px;
  }
  
  .footer-section {
    padding: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .platform-modal-content {
    min-width: 280px;
    max-width: 90vw;
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 8px;
  }
  
  .title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .sub {
    font-size: 10px;
  }
  
  .chip {
    font-size: 10px;
    padding: 4px 6px;
  }
  
  .results {
    grid-template-columns: 1fr;
  }
  
  .terminal {
    height: 120px;
  }
  
  #exposure {
    font-size: 28px;
  }
  
  .exp-title {
    font-size: 12px;
  }
  
  .footer-title {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .footer-section h3 {
    font-size: 14px;
  }
  
  .footer-section p {
    font-size: 11px;
  }
  
  .receipt-preview {
    left: 5px !important;
    right: 5px;
    max-width: calc(100vw - 10px);
  }
  
  .receipt-preview canvas {
    max-width: 100%;
    height: auto;
  }
}

/* CLICKABLE TOKEN NAMES */
.token-name.clickable {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(58, 255, 58, 0.4);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.token-name.clickable:hover {
  color: #3aff3a;
  text-decoration-color: #3aff3a;
  text-shadow: 0 0 10px rgba(58, 255, 58, 0.6);
}

/* PLATFORM MODAL */
.platform-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.platform-modal-content {
  background: rgba(5, 8, 5, 0.98);
  border: 1px solid rgba(58, 255, 58, 0.4);
  border-radius: 12px;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 0 40px rgba(58, 255, 58, 0.2);
}

.platform-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(58, 255, 58, 0.2);
}

.platform-modal-title {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: #3aff3a;
}

.platform-modal-close {
  background: none;
  border: none;
  color: #9cff9c;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.platform-modal-close:hover {
  color: #ff3b3b;
}

.platform-list {
  padding: 10px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #9cff9c;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.platform-link:hover {
  background: rgba(58, 255, 58, 0.1);
  border-color: rgba(58, 255, 58, 0.3);
  color: #3aff3a;
}

.platform-icon {
  font-size: 20px;
}

.platform-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.platform-arrow {
  color: rgba(58, 255, 58, 0.5);
  font-size: 16px;
}

.platform-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: rgba(156, 255, 156, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 15px 5px;
  border-top: 1px solid rgba(58, 255, 58, 0.1);
  margin-top: 5px;
}

.platform-section-title:first-child {
  border-top: none;
  margin-top: 0;
}

.platform-link.official {
  background: rgba(255, 165, 0, 0.05);
}

.platform-link.official:hover {
  background: rgba(255, 165, 0, 0.15);
  border-color: rgba(255, 165, 0, 0.4);
}

.platform-loading {
  padding: 20px;
  text-align: center;
  color: rgba(156, 255, 156, 0.5);
  font-size: 12px;
}

.no-socials-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 8px;
  margin: 5px 10px 10px;
  color: #ff6b6b;
  font-size: 13px;
}

.warning-icon {
  font-size: 16px;
}

/* RECEIPT PREVIEW */
.receipt-preview {
  position: fixed;
  display: none;
  z-index: 1000;
  background: rgba(5, 8, 5, 0.95);
  border: 2px solid #3aff3a;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 30px rgba(58, 255, 58, 0.4);
  animation: receipt-fade-in 0.2s ease;
}

.receipt-preview canvas {
  border-radius: 6px;
  display: block;
}

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