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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #0a1628;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Particle Background Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo Section */
.logo-section {
  text-align: center;
}

.neon-cat-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
}

.robot-img img {
  width: 5rem;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 10px #00d9ff);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Main Title */
.main-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #00d9ff 0%, #00ff88 50%, #00d9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6))
          drop-shadow(0 0 20px rgba(0, 217, 255, 0.4))
          drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
  letter-spacing: 2px;
  line-height: 1.3;
}

/* Market Data Overview */
.market-overview {
  margin-bottom: 10px;
}

.market-title {
  font-size: 1.8rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.stock-list {
  background: rgba(10, 35, 66, 0.6);
  border: 2px solid #00d9ff;
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 20px rgba(0, 217, 255, 0.3),
    inset 0 0 20px rgba(0, 217, 255, 0.05);
  max-height: 240px;
  overflow: hidden;
  position: relative;
}

.stock-list-wrapper {
  animation: scrollUp 20s linear infinite;
}

.stock-list:hover .stock-list-wrapper {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.stock-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  margin-bottom: 8px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 20px;
}

.stock-item:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00d9ff;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

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

.stock-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00d9ff;
  letter-spacing: 1px;
  min-width: 80px;
}

.stock-price {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-change {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}

.price-change.positive {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.price-change.negative {
  color: #ff4466;
  background: rgba(255, 68, 102, 0.1);
}

.price-change.neutral {
  color: #00d9ff;
  background: rgba(0, 217, 255, 0.1);
}

/* Analysis Section */
.analysis-section {
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.8rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.analysis-card {
  background: rgba(10, 35, 66, 0.6);
  border: 2px solid #00d9ff;
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 20px rgba(0, 217, 255, 0.3),
    inset 0 0 20px rgba(0, 217, 255, 0.05);
  text-align: center;
}

.analysis-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

.analysis-card p {
  font-size: 1.1rem;
  color: #b0c4de;
  line-height: 1;
}

.user-count {
  font-size: 1.3rem;
  color: #ffd700;
  font-weight: 700;
  margin-top: 10px;
}

.user-number {
  color: #00ff88;
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.5);
  transition: all 0.3s ease;
}

.number-flash {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(0, 255, 136, 0.8);
  transform: scale(1.1);
}

/* Input Section */
.input-section {
  margin-bottom: 40px;
}

.input-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.1rem;
  background: rgba(10, 35, 66, 0.8);
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 10px;
  color: #ffffff;
  outline: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(176, 196, 222, 0.5);
}

.search-input:focus {
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.start-btn {
  width: 100%;
  padding: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  background: #00d9ff;
  color: #0a1628;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 0 20px rgba(0, 217, 255, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.start-btn:hover {
  background: #00b8d9;
  box-shadow: 
    0 0 30px rgba(0, 217, 255, 0.8),
    0 5px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

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

/* Risk Disclosure */
.risk-disclosure {
  background: rgba(139, 0, 0, 0.2);
  border: 2px solid #ff4466;
  border-left: 6px solid #ff4466;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.risk-disclosure h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #ff4466;
  margin-bottom: 15px;
}

.warning-icon {
  font-size: 1.5rem;
}

.risk-disclosure p {
  color: #ffccdd;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  border-top: 2px solid #00d9ff;
  padding: 20px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  color: #b0c4de;
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-decline {
  background: transparent;
  color: #00d9ff;
  border: 2px solid #00d9ff;
}

.btn-decline:hover {
  background: rgba(0, 217, 255, 0.1);
}

.btn-accept {
  background: #00ff88;
  color: #0a1628;
  font-weight: 700;
}

.btn-accept:hover {
  background: #00dd77;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

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

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }

  .market-title,
  .section-title {
    font-size: 1.5rem;
  }

  .stock-list {
    padding: 15px;
  }

  .stock-item {
    padding: 6px 10px;
    gap: 10px;
  }

  .stock-symbol {
    font-size: 1rem;
    min-width: 60px;
  }

  .stock-price {
    gap: 10px;
  }

  .price-value {
    font-size: 1rem;
  }

  .price-change {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  .analysis-card {
    padding: 25px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

