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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.title {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  color: #000;
  margin-bottom: 10px;
}

.ticker {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.eye-container {
  margin-bottom: 40px;
}

.eye-image {
  width: 250px;
  height: auto;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  background: #000;
  color: #fff;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.8;
}

.contract-section {
  display: flex;
  align-items: center;
  gap: 12px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.contract-label {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
}

.copy-btn {
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 0.8;
}

/* Floating dollars */
.floating-dollars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.dollar {
  position: absolute;
  color: rgba(34, 197, 94, 0.4);
  font-weight: bold;
  animation: float 15s linear infinite;
  bottom: -50px;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 40px;
  }

  .eye-image {
    width: 180px;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    padding: 14px 40px;
  }
}
