:root {
  --blue-light: #05f96f;
  --blue-dark: #f5f6f9;
  --black: #151515;
  --white: #ffffff;
}

body {
  font-family: "Roboto Mono", monospace;
  background-color: var(--black);
  color: var(--blue-light);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid var(--blue-light);
  box-sizing: border-box;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--blue-light);
  margin-right: 15px;
}

.header-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.header-title {
  font-size: 2em;
  font-weight: 700;
  color: var(--blue-light);
  text-shadow: 0 0 5px var(--blue-light);
}

.header-right a {
  color: var(--blue-light);
  text-decoration: none;
  font-size: 1.2em;
  margin-left: 30px;
  text-shadow: 0 0 3px var(--blue-light);
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 50px 20px;
  box-sizing: border-box;
}

.left-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.raccoon-circle {
  width: 400px;
  height: 400px;
  border: 5px solid var(--blue-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px var(--blue-light);
}

.raccoon-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px var(--blue-light);
  }
  50% {
    box-shadow: 0 0 25px var(--blue-light);
  }
  100% {
    box-shadow: 0 0 10px var(--blue-light);
  }
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.headline {
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 10px var(--blue-light);
  text-align: left;
}

.sub-headline {
  font-size: 1.2em;
  margin-top: 20px;
  line-height: 1.5;
  text-align: left;
}

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

.btn {
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--blue-light);
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: var(--blue-light);
  color: var(--black);
  box-shadow: 0 0 10px var(--blue-light);
}

.btn-primary:hover {
  background-color: var(--black);
  color: var(--blue-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--blue-light);
}

.btn-secondary:hover {
  background-color: var(--blue-light);
  color: var(--black);
}

.contract-box {
  background-color: var(--black);
  border: 2px solid var(--blue-light);
  padding: 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 10px var(--blue-light);
}

.contract-label {
  display: flex;
  align-items: center;
  font-size: 1em;
  margin-bottom: 10px;
}

.contract-label .contract-icon {
  margin-right: 10px;
  font-size: 1.5em;
}

.contract-details {
  display: flex;
  align-items: center;
  width: 100%;
}

.contract-address {
  background-color: var(--blue-dark);
  color: var(--black);
  padding: 10px;
  font-size: 1em;
  word-break: break-all;
  flex-grow: 1;
}

.copy-btn {
  background-color: var(--blue-light);
  color: var(--black);
  padding: 10px 15px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.section-container {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-container.light {
  background-color: var(--white);
  color: var(--black);
}

.section-container.dark {
  background-color: var(--black);
  color: var(--blue-light);
}

.section-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.section-title {
  font-size: 3em;
  font-weight: 700;
  color: var(--blue-light);
  text-shadow: 0 0 8px var(--blue-light);
  margin-bottom: 20px;
}

.section-text {
  flex: 1;
  padding: 20px;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
}

.section-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.section-image-frame {
  border: 5px solid var(--blue-light);
  padding: 10px;
  box-shadow: 0 0 15px var(--blue-light);
}

.section-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-container.light .section-title {
  color: var(--black);
  text-shadow: none;
}

.section-container.light .section-image-frame {
  border-color: var(--black);
  box-shadow: 0 0 15px var(--black);
}

.tokenomics-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 1.2em;
  text-align: left;
}

.tokenomics-list li {
  margin-bottom: 10px;
}

.tokenomics-list strong {
  color: var(--blue-light);
}

.divider-section {
  width: 100%;
  padding: 20px 0;
  background-color: var(--blue-light);
  box-shadow: 0 0 15px var(--blue-light);
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-section {
  width: 100%;
  padding: 40px 20px;
  background-color: var(--black);
  color: var(--blue-light);
  text-align: center;
  border-top: 2px solid var(--blue-light);
}

.footer-section p {
  margin: 10px 0;
  font-size: 0.9em;
  line-height: 1.5;
}

.footer-disclaimer {
  font-size: 0.8em;
  color: #ccc;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px;
  }

  .header-right {
    margin-top: 15px;
  }

  .header-right a {
    margin: 0 10px;
  }

  .container,
  .section-content {
    flex-direction: column;
    padding: 30px 10px;
  }

  .left-section,
  .right-section,
  .section-text,
  .section-image-container {
    padding: 10px;
    text-align: center;
    width: 100%;
  }

  .right-section {
    align-items: center;
  }

  .raccoon-circle {
    width: 250px;
    height: 250px;
  }

  .headline {
    font-size: 2.5em;
    text-align: center;
  }

  .sub-headline {
    font-size: 1em;
    text-align: center;
  }

  .contract-box {
    align-items: center;
  }

  .buttons-container {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section-image-container {
    order: -1;
  }

  .section-title {
    font-size: 2em;
  }

  .divider-section {
    flex-wrap: wrap;
    gap: 10px;
  }
}

main {
  width: 100%;
  height: auto;
}
