* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

.background-graph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
  width: 50vw;
}

h1 {
  color: #0C0D81;
  font-size: 2.5em;
  margin: 0;
}

p, p2 {
  font-size: 1.2em;
  color: #333;
  margin: 10px 0;
}

.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}

.buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.buttons a button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background-color: #0C0D81;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttons a button:hover {
  background-color: #171da0;
}

.text-containers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
  padding: 0 10px;
}

.text-box {
  font-family: monospace;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 25px;
  border: 2px solid #0C0D81;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  font-size: 1em;
  color: #222;
}

.ca-container {
  margin-bottom: 15px;
}

.ca-text {
  margin-bottom: 8px;
  word-break: break-all;
}

.ca-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.copy-button {
  padding: 8px 12px;
  font-size: 0.85em;
  border: none;
  background-color: #0C0D81;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.copy-button:hover {
  background-color: #171da0;
}

.buy-button {
  padding: 8px 12px;
  font-size: 0.85em;
  border: none;
  background-color: #0C0D81;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.buy-button:hover {
  background-color: #171da0;
}

.tweet-feed {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0 10px;
}

footer {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  font-size: 0.7em;
  color: #666;
  border-top: 1px solid #eee;
}

.disclaimer {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

.copyright {
  margin-top: 10px;
  color: #999;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .logo {
    max-width: 120px;
  }

  .text-box {
    font-size: 0.95em;
    padding: 12px 20px;
  }
}
