body {
  margin: 0;
  padding: 60px;
  box-sizing: border-box;
  background-color: #001a29;
  background-image: url('BluChk1536x1024.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

.main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.sidebar {
  width: 340px;
  margin-right: 40px;
  margin-top: 100px;
}

.info-panel {
  background-color: rgba(0, 38, 61, 0.8);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #00476d;
}

.contract-address {
  margin-bottom: 20px;
  font-size: 0.95rem;
  word-break: break-all;
}

.sidebar-logo {
  text-align: center;
  margin: 15px 0;
}

.small-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background-color: #001a29;
}

.buy-form {
  margin-top: 20px;
  margin-bottom: 20px;
}

.primary-btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #1e90ff;
  color: #ffffff;
  border: none;
}

.primary-btn:hover {
  background-color: #1c7ed6;
}

.content {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e90ff;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #dddddd;
}

.header-content {
  margin-bottom: 30px;
}

#tokenomics, #launchFlow, footer {
  text-align: left;
}

#tokenomics, #launchFlow {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaaaaa;
}

/* Transaction Box Styles */
.transaction-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.transaction-box {
  background: rgba(0, 0, 50, 0.3);
  border: 1px solid rgba(30, 144, 255, 0.5);
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.transaction-box h4 {
  color: #1e90ff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.transaction-box p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.transaction-box a {
  color: #1e90ff;
  text-decoration: none;
  word-break: break-all;
}

.transaction-box a:hover {
  text-decoration: underline;
  color: #00bfff;
}

/* CTA Section */
.cta {
  width: 100%;
  max-width: 1100px;
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 30px 40px;
  box-sizing: border-box;
}

.cta h2 {
  color: #1e90ff;
}

.cta ol {
  padding-left: 20px;
}

.cta li {
  margin-bottom: 10px;
}

.social {
  margin-top: 20px;
}

.social h3 {
  margin-bottom: 10px;
  color: #1e90ff;
}

.social-links {
  list-style: none;
  padding-left: 5px;
}

.social-links li {
  margin-bottom: 8px;
}

.social-links a {
  color: #dddddd;
  text-decoration: none;
}

.social-links a:hover {
  color: #1e90ff;
  text-decoration: underline;
}

.telegram-icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }
  
  .main {
    flex-direction: column;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .buy-form button {
    font-size: 1.1rem;
  }

  .logo {
    width: 140px;
  }
  
  .cta {
    padding: 20px;
  }
}