Certainly! Here's the complete CSS code for your site. You can copy and paste this directly into your `style.css` file without any issues.

```css
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
html, body {
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #ccc;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ticker Styles */
.ticker-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: gold;
  font-weight: bold;
  height: 50px;
  display: flex;
  align-items: center;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Countdown Styles */
#countdown {
font-size: 2rem;
font-weight: bold;
text-align: center;
margin: 1.25rem 0;
color: #333;
}

/* Navigation Styles */
nav {
  width: 100%;
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 50px;
  z-index: 998;
}

nav a {
  display: flex;
  align-items: center;
  margin: 0.25rem;
  height: 2.5rem;
  font-size: 0.75rem;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: gold;
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.8);
}

nav a.active {
  font-weight: bold;
  color: gold;
}

/* Social Icon Buttons */
.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 2px solid #000;
  width: 1.875rem;
  height: 1.875rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.twitter-btn {
  background-color:#fafafa;
}

.twitter-btn:hover {
  background-color: gold;
}

/* Wallet Connect Button */
#connectButton {
padding: 0.625rem;
background-color: gold;
border-radius: 0.5rem;
border: 2px solid #000;
cursor: pointer;
font-size: 1rem;
color: #333;
margin-left: 0.625rem;
transition: background-color 0.3s;
}

#connectButton:hover {
background-color: #e6b800;
}

/* Banner Styles */
.banner {
  background-image: url("images/1.jpg");
  height: 1360px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.25rem;
}

/* Presale Box Styles */
.presale-box {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #333;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
  max-width: 20.75rem;
  width: 100%;
  text-align: center;
  margin-left: 1.25rem;
}

/* Footer Styles */
footer {
  text-align: center;
  border: 2px solid gold;
  background-color: #000;
  color: #fff;
  padding: 0;
  margin-top:auto;
  font-size: 1.5rem;
}
footer pre {
  margin: 0;
  padding: 1rem;
}

/* Page-Specific Content Styles */
.timeline-container,
.tokenomics-content,
.whitepaper-content,
.staking-content,
.howtobuy-content,
.container {
  max-width: 56.25rem;
  margin: 2.5rem auto;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #333;
  border-radius: 0.5rem;
  box-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
}

h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
  color: #333;
}

/* Timeline (Roadmap) */
.timeline-container h2 {
  font-size: 2rem;
}

.milestone {
  margin-bottom: 1.875rem;
  padding-left: 0;
}

.milestone h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a73e8;
  font-weight: bold;
  border-bottom: 2px solid gold;
  padding-bottom: 0.3125rem;
}

.milestone p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-top: 0.625rem;
}

/* Tokenomics */
.tokenomics-content h2 {
  font-size: 2rem;
}

.tokenomics-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 1.25rem 0 0.625rem;
}

.tokenomics-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.9375rem;
}

.tokenomics-content ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.9375rem;
}

.tokenomics-content ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.625rem;
}

.tokenomics-content .highlight {
  color: #0066cc;
  font-weight: bold;
}

/* Whitepaper */
.whitepaper-content h1 {
  text-align: center;
  margin-bottom: 1.875rem;
  color: #333;
  font-size: 2.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.8);
}

.whitepaper-content p {
  line-height: 1.6;
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  color: #333;
}

.whitepaper-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.9375rem;
}

.whitepaper-content li {
  margin-bottom: 0.625rem;
}

.whitepaper-content a {
  color: #15a1fa;
  text-decoration: none;
}

.whitepaper-content a:hover {
  text-decoration: underline;
}

.download-btn {
  display: block;
  margin: 1.25rem auto;
  padding: 0.875rem 1.75rem;
  background-color: #0066cc;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.download-btn:hover {
  background-color: #005bb5;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.3);
  transform: translateY(-0.125rem);
}

/* Staking */
.staking-content h1 {
  text-align: center;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  font-size: 2.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.8);
}

.staking-content .wallet-section {
  text-align: center;
  margin-bottom: 1.25rem;
}

.staking-content form {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  max-width: 31.25rem;
  margin: 0 auto;
}

.staking-content label {
  font-weight: bold;
}

.staking-content input[type="number"],
.staking-content select {
  padding: 0.625rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
}

.staking-content button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.staking-content button:hover {
  background-color: #218838;
}

.staking-content button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.staking-content .status,
.staking-content .balance {
  margin-top: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  font-size: 1.1rem;
}

/* FAQs */
.container h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1.875rem;
  font-size: 2.5rem;
}

.faq-item {
  margin-bottom: 0.9375rem;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  padding: 0.9375rem;
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  padding: 0.9375rem;
  display: none;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
  background-color: #fafafa;
  border-radius: 0 0 0.25rem 0.25rem;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  color: #0066cc;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.container a {
  color: #0066cc;
  text-decoration: none;
}

.container a:hover {
  text-decoration: underline;
}

/* How to Buy */
.howtobuy-content h1 {
  text-align: center;
  margin-bottom: 1.875rem;
  color: #333;
  font-size: 2.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.8);
}

.howtobuy-content h2 {
  color: #222;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  text-align: center;
}

.howtobuy-content ol {
  line-height: 1.6;
  padding-left: 1.25rem;
}

.howtobuy-content li {
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  color: #333;
}

.howtobuy-content .step {
  background-color: #f4f4f4;
  padding: 0.9375rem;
  border-radius: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Make banner more flexible */
  .banner {
    height: auto;
    padding: 1rem;
    background-position: center;
  }

  /* Presale Box Styles */
  .presale-box {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #333;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
    max-width: 18.75rem;
    width: 100%;
    text-align: center;
    margin-left: 1.25rem;
  }

  /* Navigation styles */
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    font-size: 1rem; /* Increase for readability */
    margin: 0.25rem 0;
    padding: 0.75rem 1rem; /* Larger tap target */
  }

  /* Containers */
  .timeline-container,
  .tokenomics-content,
  .whitepaper-content,
  .staking-content,
  .howtobuy-content,
  .container {
    margin: 1rem auto;
    padding: 1rem;
  }

  /* Headings */
  h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  footer {
    font-size: 0.8rem;
    padding: 1rem;
  }

  /* Ticker font size */
  .ticker {
    font-size: 0.9rem;
  }
}
```

---

Feel free to copy this entire CSS into your `style.css` file. If there's anything else you need, just ask!
