/* --- Global Styles & Resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #0d1117; /* Dark background */
  color: #c9d1d9; /* Light text */
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header --- */
header {
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid #21262d;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

nav a {
  margin-left: 25px;
  font-size: 1rem;
  color: #c9d1d9;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0b90b;
}

/* --- Main Content & Sections --- */
main {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background-color: #161b22;
}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

/* --- Hero Section --- */
.hero {
  padding: 60px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 .highlight {
  color: #f0b90b;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-icons {
  font-size: 1.5rem;
  display: flex;
  gap: 25px;
  color: #fff;
}

/* --- Presale Widget (No changes) --- */
.presale-widget {
  background-color: #161b22;
  border: 1px solid #f0b90b;
  border-radius: 16px;
  padding: 25px;
  color: #fff;
  box-shadow: 0 0 30px rgba(240, 185, 11, 0.15);
}

.presale-widget h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.2;
}

.presale-widget h3 .subtitle {
  color: #f0b90b;
  font-size: 1.2rem;
  font-weight: 700;
}

.progress-container {
  background-color: #0d1117;
  border-radius: 50px;
  height: 25px;
  margin: 20px 0;
  position: relative;
  border: 1px solid #30363d;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #f0b90b, #f8d33a);
  height: 100%;
  border-radius: 50px;
}

.progress-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 0.9rem;
}

.stats {
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #8b949e;
}

.price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d1117;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: bold;
}

.price-info .next-price {
  color: #2bff00;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-btn {
  background-color: #21262d;
  color: #c9d1d9;
  border: 1px solid #30363d;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.payment-btn.active,
.payment-btn:hover {
  background-color: #f0b90b;
  color: #0d1117;
  border-color: #f0b90b;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #8b949e;
}

.input-field {
  display: flex;
  align-items: center;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 0 12px;
}

.input-field input {
  flex-grow: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 0;
}

.input-field i, .input-field .jarx-icon {
  font-size: 1.2rem;
  color: #f0b90b;
}

.jarx-icon {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

.btn-main {
  width: 100%;
  background-color: #f0b90b;
  color: #161b22;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
  margin-bottom: 15px;
}

.btn-main:hover {
  opacity: 0.9;
}

.giveaway-link {
  display: block;
  text-align: center;
  background-color: #21262d;
  color: #f0b90b;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #30363d;
}

/* --- Content Grid Layout (About, Token) --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid .text-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.content-grid .image-content img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Vision Section --- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.vision-item {
    background: #0d1117;
    border: 1px solid #21262d;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.vision-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.vision-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: #f0b90b;
    margin-bottom: 10px;
}

/* --- Roadmap Section --- */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #f0b90b;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.roadmap-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.roadmap-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #161b22;
  border: 4px solid #f0b90b;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

.roadmap-item.left {
  left: 0;
}

.roadmap-item.right {
  left: 50%;
}

.roadmap-item.left::after {
  right: -10px;
}

.roadmap-item.right::after {
  left: -10px;
}

.roadmap-content {
  padding: 20px;
  background-color: #161b22;
  border: 1px solid #21262d;
  border-radius: 8px;
  position: relative;
}

.roadmap-content h3 {
  font-family: 'Orbitron', sans-serif;
}
.roadmap-date {
  color: #f0b90b;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-member {
    background: #0d1117;
    border: 1px solid #21262d;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 4px solid #21262d;
}
.team-member h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}
.team-member .title {
    color: #f0b90b;
    font-weight: bold;
    margin-bottom: 10px;
}

/* --- Token Section --- */
.token-utility-list {
  list-style: none;
  padding: 0;
}
.token-utility-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.token-utility-list i {
  color: #f0b90b;
  font-size: 1.2rem;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

/* --- Contact Section --- */
.contact-container {
    text-align: center;
}
.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-btn {
    background-color: #f0b90b;
    color: #0d1117;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.contact-btn:hover {
    transform: scale(1.05);
}
.contact-btn i {
    margin-right: 10px;
}

/* --- Footer --- */
footer {
    background-color: #161b22;
    padding: 20px 0;
    text-align: center;
    color: #8b949e;
    font-size: 0.9rem;
    border-top: 1px solid #21262d;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-container, .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-icons {
        justify-content: center;
    }
    .section h2, .content-grid .text-content h2 {
        text-align: center;
    }
    .content-grid .image-content {
      order: -1; /* Flips image to be on top on mobile */
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Hides nav on small screens; needs JS for a hamburger menu */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section h2 {
        font-size: 2.2rem;
    }
    .roadmap-timeline::after {
        left: 20px;
    }
    .roadmap-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
    }
    .roadmap-item.right {
        left: 0;
    }
    .roadmap-item.left::after, .roadmap-item.right::after {
        left: 10px;
    }
}
