* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  background-color: #FFFFFF;
  line-height: 1.7;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navigation */
.navbar {
  background-color: #F9FAFB;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #1F2937;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #1F2937;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #06B6D4;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background-color: #1F2937;
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #F9FAFB;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  position: relative;
  background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #06B6D4;
  color: #06B6D4;
}

.btn-secondary:hover {
  background-color: #8B5CF6;
  color: #FFFFFF;
  border-color: #8B5CF6;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 64px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background-color: #F9FAFB;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1F2937;
}

p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

/* Lists */
.tokenomics-list, .mining-list, .get-started-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.tokenomics-list li, .mining-list li, .get-started-list li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Chart Container */
.chart-container {
  max-width: 400px;
  margin: 1.5rem auto;
}

/* Flex Container */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.flex-item {
  flex: 1;
  min-width: 300px;
}

.wallet-container {
  flex-direction: row-reverse;
}

.wallet-image, .mining-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Specs Table */
.specs-table {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 12px;
  border: 1px solid #E5E7EB;
  text-align: left;
}

.specs-table th {
  background-color: #F9FAFB;
  font-weight: 700;
}

/* Community Links */
.community-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #F9FAFB;
  padding: 40px 16px;
  text-align: center;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #06B6D4;
  text-decoration: none;
  margin: 0 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Tooltips */
.tooltip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted #06B6D4;
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  background-color: #1F2937;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 4px;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 48px 0;
  }

  .wallet-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    background-color: #F9FAFB;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .hero {
    min-height: 60vh;
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-buttons, .community-links {
    flex-direction: column;
  }

  .flex-container {
    flex-direction: column;
  }

  .chart-container {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  p {
    font-size: 1rem;
  }

  .specs-table th, .specs-table td {
    font-size: 0.9rem;
    padding: 8px;
  }
}