body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #f0f0f0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 0 56px;
  height: 56px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  min-width: 0;
  box-sizing: border-box;
}

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

.logo {
  height: 40px;
}

.direct-staking {
  background-color: red;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  font-size: 1.25rem;
  margin-left: 10px;
  box-sizing: border-box;
  transition: 0.2s;
  border: 2px solid #ff9900;
}

.direct-staking:hover {
  background-color: #ff9900;
  color: black;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  flex-shrink: 1;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 5px;
  transition: 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  margin-left: 0.3rem;
}

nav a:hover {
  background: #ff9900;
  color: #000;
}

.hero {
  background: #000;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 0 30px 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.hero-left {
  flex: 2;
  text-align: left;
}

.hero-left h1 {
  font-size: 4.3rem;
  color: #ff9900;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -2px;
  line-height: 1.02;
}

.hero-left h2 {
  font-size: 3.9rem;
  color: #ff9900;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2.2rem;
  line-height: 1.02;
}

.hero-left p {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-weight: 400;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cardano-logo {
  max-width: 320px;
  width: 100%;
}

.home-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
  background: #000;
  flex-wrap: wrap;
}

.feature-intro {
  background: #111;
  padding: 50px 40px;
  border-radius: 10px;
  max-width: 450px;
  flex: 1;
}

.feature-intro h2 {
  color: #ff9900;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.feature-intro p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 500px;
}

.feature-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 12px;
  color: #ff9900;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 3px 22px #000a;
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 1.13rem;
  line-height: 1.4;
}

.feature-card.offset {
  margin-left: 40px;
}


@media (max-width: 1200px) {
  .feature-intro {
    margin-left: 40px;
  }
  .feature-grid {
    margin-right: 40px;
  }
}
@media (max-width: 1000px) {
  .home-features {
    flex-direction: column;
    gap: 40px;
    padding: 40px 12px;
  }
  .feature-intro {
    margin-left: 0;
    margin-bottom: 16px;
    max-width: 96vw;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: 97vw;
    margin-right: 0;
  }
  .feature-card {
    min-width: 0;
    height: auto;
    font-size: 1.07rem;
    padding: 20px 10px 18px 15px;
  }
}

.discover-cardano {
  display: flex;
  flex-wrap: wrap;
  background: #000;
  padding: 80px 20px;
  gap: 40px;
  justify-content: center;
}

.discover-panel {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background: #111;
  border-radius: 10px;
  padding: 60px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discover-panel.left {
  align-items: center;
  text-align: center;
}

.underlined-title {
  color: #ff9900;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 2rem;
}

.discover-panel.left h3 {
  font-size: 1.5rem;
  color: #ff9900;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.discover-btn {
  background: #ff9900;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.discover-btn:hover {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

.discover-panel.right p {
  color: #ff9900;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.stats {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.stats h3 {
  color: #ff9900;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.pool-id {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.pool-id a {
  color: #ff9900;
  text-decoration: underline;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 400px; /* μεγάλο κενό μεταξύ των στατιστικών */
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff9900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.stat-line {
  height: 2px;
  width: 100px;
  background-color: #ccc;
  margin: 0 auto;
  opacity: 0.6;
}

.iframe-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 40px 20px;
}

iframe, .img-fluid {
  max-width: 500px;
  width: 100%;
  height: 320px;
}

.about-section {
  padding: 80px 40px;
  background-color: #0b0b0b;
  color: #ccc;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.about-left,
.about-right {
  flex: 1 1 50%;
}

.about-left h2 {
  font-size: 3rem;
  color: #ff9900;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ddd;
}

.about-right h3 {
  font-size: 2rem;
  color: #ff9900;
  margin-bottom: 25px;
}

.about-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-right strong {
  color: #fff;
}

.about-right a {
  color: #ff9900;
  font-weight: 600;
  text-decoration: underline;
}

.about-right a:hover {
  color: white;
}

.uptime-link {
  margin-top: 20px;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 10%;
  background-color: #111;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #ff9900;
  margin-bottom: 40px;
  text-align: center;
}

.faq-block {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-block p {
  margin-bottom: 20px;
}

.faq-block a {
  color: #ff9900;
  text-decoration: underline;
}

.faq-image {
  display: block;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 8px;
}

/* Γενικές ρυθμίσεις του section */
.staking-section {
  padding: 60px 20px;
  background-color: #000; /* Μαύρο background */
  text-align: center; /* Κεντράρει το H2 */
}

/* Στυλ για το H2 */
.staking-section h2 {
  color: #ff9900; /* Πορτοκαλί χρώμα */
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Κάθε σειρά (κουτί) */
.staking-row {
  display: flex;
  align-items: stretch; /* Κάνει τα παιδιά να τεντωθούν σε ύψος για να έχουν ίσο ύψος */
  background-color: transparent; /* Το κενό είναι το μαύρο background του section */
  margin: 5px auto; /* Κενό ανάμεσα στις σειρές και κεντράρισμα της σειράς */
  max-width: 900px;
  /* border-radius: 6px; */ /* Το border-radius θα το βάλουμε στα εσωτερικά divs */
  overflow: hidden; /* Κρίσιμο αν θέλεις border-radius στο parent και τα παιδιά να γεμίζουν, αλλά το αφαιρούμε αν τα παιδιά έχουν δικές τους γωνίες */
  text-align: left; /* Τα κείμενα μέσα στη σειρά θα είναι αριστερά */
}

/* Το κουτί με το STEP */
.staking-step-left-box {
  width: 100px; /* Μπορείς να το προσαρμόσεις */
  display: flex;
  flex-direction: column; /* Για να κεντράρουμε το περιεχόμενο κάθετα */
  justify-content: center; /* Κεντράρει κάθετα το περιεχόμενο (το STEP label) */
  align-items: center; /* Κεντράρει οριζόντια το STEP label */
  background-color: #222; /* Σκούρο γκρι background για το κουτί STEP */
  margin-right: 5px; /* Το μαύρο κενό ανάμεσα στα δύο κουτιά */
  padding: 30px 20px; /* Αυξημένο padding για να δώσει περισσότερο ύψος και χώρο */
  border-radius: 6px 0 0 6px; /* Στρογγυλεμένες γωνίες μόνο αριστερά */
  box-sizing: border-box; /* Για να μην επηρεάζει το padding το width */
}

/* Το STEP κείμενο */
.step-label {
  color: #ff9900;
  font-weight: bold;
  font-size: 1rem;
}

/* Το περιεχόμενο δεξιά */
.staking-step-right {
  flex: 1; /* Πιάνει τον υπόλοιπο χώρο */
  display: flex; /* Προσθέτουμε flexbox και εδώ */
  flex-direction: column; /* Για να κεντράρουμε το περιεχόμενο κάθετα */
  justify-content: center; /* Κεντράρει κάθετα το περιεχόμενο */
  background-color: #222; /* Σκούρο γκρι background για το περιεχόμενο */
  padding: 30px; /* Αυξημένο padding για να δώσει περισσότερο ύψος και χώρο */
  border-radius: 0 6px 6px 0; /* Στρογγυλεμένες γωνίες μόνο δεξιά */
  text-align: left; /* Τα κείμενα μέσα θα είναι αριστερά */
  box-sizing: border-box; /* Για να μην επηρεάζει το padding το flex: 1 */
}

.staking-step-right h3 {
  margin-top: 0; /* Βγάζουμε το default margin-top */
  color: #ff9900;
  font-size: 1.1rem;
}

.staking-step-right p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.staking-step-right a {
  color: #ccc;
  text-decoration: underline;
}

.staking-step-right code {
  color: #aaa;
  font-family: monospace;
  font-size: 0.9rem;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
  .staking-row {
    flex-direction: column; /* Τα στοιχεία γίνονται κάθετα */
    align-items: flex-start; /* Όταν είναι κάθετα, τα ευθυγραμμίζουμε αριστερά */
    margin-bottom: 20px; /* Κενό ανάμεσα στις σειρές σε μικρές οθόνες */
    border-radius: 6px; /* Όταν είναι κάθετα, ολόκληρη η σειρά έχει στρογγυλεμένες γωνίες */
    overflow: visible; /* Αφαιρούμε το overflow:hidden για mobile, αν χρειάζεται */
  }

  .staking-step-left-box {
    width: 100%; /* Το STEP κουτί πιάνει όλο το πλάτος */
    margin-right: 0; /* Αφαιρούμε το οριζόντιο κενό */
    margin-bottom: 10px; /* Προσθέτουμε κάθετο κενό μεταξύ STEP και περιεχομένου */
    padding: 15px 20px; /* Προσαρμόζουμε το padding για mobile */
    justify-content: center; /* Κεντράρουμε πάλι το STEP κάθετα σε mobile */
    align-items: flex-start; /* Το STEP label να ξεκινάει από αριστερά σε mobile */
    border-radius: 6px; /* Πλήρως στρογγυλεμένο σε mobile */
  }

  .staking-step-right {
    width: 100%; /* Το περιεχόμενο πιάνει όλο το πλάτος */
    padding: 20px; /* Προσαρμόζουμε το padding για mobile */
    border-radius: 6px; /* Πλήρως στρογγυλεμένο σε mobile */
    justify-content: center; /* Κεντράρουμε το περιεχόμενο κάθετα σε mobile */
  }
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #222;
  text-align: center;
}

.contact-section h2 {
  color: #ff9900;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-section p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-section ul {
  list-style: none;
  padding: 0;
}

.contact-section ul li {
  margin: 10px 0;
}

.contact-section a {
  color: #ff9900;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: #fff;
}

.site-footer {
  background-color: #111; /* Σκούρο για να ξεχωρίζει */
  color: #ccc;
  padding: 40px 60px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-left h4 {
  color: #ff9900;
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.footer-left p a {
  color: #bbb;
  text-decoration: none;
}

.footer-left p a:hover {
  text-decoration: underline;
  color: white;
}

.footer-follow {
  color: #ff9900;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-follow a {
  margin-left: 10px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: filter 0.3s ease;
}

.footer-icon:hover {
  filter: brightness(1.4);
}

.footer-note {
  color: #888;
  font-size: 0.85rem;
  margin-top: 5px;
}

@media(max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  nav {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  .stat-item {
    font-size: 1.2rem;
  }
}

/* Απόκρυψη στο desktop */
.hamburger {
  display: none;
}

/* Απόκρυψη του mobile menu στο desktop */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    margin-left: 20px;
  }

@media (max-width: 768px) {
  /* 1. Pool ID: σπάσιμο γραμμής & μικρότερη γραμματοσειρά */
  .pool-id a {
    font-size: 0.85rem;        /* λίγο μικρότερο */
    word-break: break-all;     /* επιτρέπει σπάσιμο όπου χρειάζεται */
    overflow-wrap: anywhere;   /* συμβατό με modern browsers */
  }
  /* 2. Stats grid: μικρότερο gap για τα κουτιά */
  .stats-grid {
    gap: 40px 24px;            /* κάθετο 40 px, οριζόντιο 24 px */
  }
}

.direct-staking {
  font-size: 1rem;
  padding: 0 12px;
  height: 36px;
  white-space: nowrap;
}

  .hamburger span {
    display: block;
    height: 3px;
    background-color: #ff9900;
    border-radius: 2px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 0;
    background-color: #111;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .mobile-menu nav a {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .mobile-menu.open {
    display: flex;
  }

  /* Απόκρυψη του κανονικού menu στο κινητό */
  header nav {
    display: none;
  }
}

/* ===== Mobile header fine-tune (≤ 768 px) ===== */
@media (max-width: 768px) {

  /* ❶ Το header γίνεται reference για absolute children */
  header {
    position: relative;
  }

  /* ❷ Κεντράρουμε οριζόντια & κάθετα το Direct-Staking */
  .direct-staking {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* x = -50% πλάτους, y = -50% ύψους */
    
    /* flex μέσα στο κουμπί ώστε το κείμενο να μείνει στο κέντρο */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Προαιρετικά μικρό tweak μεγέθους / padding */
    font-size: 1rem;
    padding: 0 12px;
    height: 36px;
  }

  /* ❸ Μικρό gap στο .header-left για να μην αφήνει “τρύπα” */
  .header-left {
    gap: 4px;
  }
}
