/* Temel grid ayarları */
body, html {
    margin: 0;
    padding-top: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(45deg, #05000a, #0e001a, #05000a);
    /*  background-color: #0e001a; */
    color: #222;
}

.main-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Üst Menü Flex Container */
.top-menu-flex {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #f2dbf5, #eee2c4, #f2dbf5);
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
    display: flex;
    justify-content: flex-start; /* Sola yaslı başla */
    align-items: center;
    /* flex-wrap: wrap;  bu satırı kaldır veya yoruma al */
}

/* Sol Menü Bloğu */
.menu-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Sağ Menü Bloğu */
.menu-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; /* Bu satır önemli */
}

/* Link ve İkon Ayarları */
.menu-link {
    color: #05000a; /* Koyu mor #05000a, orta #26002e */
    font-weight: 600;
    text-decoration: none;
}

.menu-link:hover {
    text-decoration: underline;
    color: #550080; /* Hover'da biraz daha açık mor */
}

.icon-32 {
    width: 32px;
    height: 32px;
}

.social-icons img.icon-32 {
    vertical-align: middle;
}

/* section ALL*/
.section-all {
    background: linear-gradient(45deg, #f2dbf5, #eee2c4, #f2dbf5);
    /* background-color: #05000a; */
    border-radius: 24px;
    padding: 40px 20px;
    margin: 30px auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
}

/* section mid*/
.section-mid {
    background: linear-gradient(45deg, #05000a, #0e001a, #05000a);
    /* background-color: #05000a; */
    border-radius: 24px;
    padding: 40px 20px;
    margin: 30px auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
}

/* welcome Section - İçerik bölgesi */
.welcome {
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

/* Banner */
.banner-row {
    margin: 20px 0;
}

/* Banner görseli */
.banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Metinler */
.text1 {
    font-size: 2rem;
    font-weight: 700;
    color: #f4f0ff;
    margin-top: 20px;
    text-align: center;
}

.text2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f4f0ff;
    margin-top: 10px;
    text-align: center;
}

.text3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f4f0ff;
    margin-top: 20px;
    text-align: center;
}


.exchanges-wallets-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.wallets,
.exchanges {
    flex: 1 1 48%;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.exchange-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.exchange-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.exchange-column:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.exchange-icon {
    width: 64px;
    height: 64px;
}

.icon-24 {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Proje blok */
.project-block {
    padding: 10px;
}

.project-block ul {
    list-style-type: disc;
    padding-left: 20px;
}

.project-block a {
    color: #f4f0ff;
    text-decoration: none;
}

.project-block a:hover {
    text-decoration: underline;
}


.project {
    padding: 40px 20px;
    color: #f4f0ff;
    margin-top: 30px;
}

.project-links {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
}

.project-links li {
    margin-bottom: 15px;
}

.project-links a {
    color: #f4f0ff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-links a:hover {
    text-decoration: underline;
}

.subtask-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: center;
}

.subtask-list li {
    position: relative;
    padding-left: 16px; /* Noktaya boşluk bırak */
    display: inline-block;
}

.subtask-list li::before {
    content: "•";
    /* content: "•";  → content: "★";  → content: "→"; */
    position: absolute;
    left: 0;
    color: #cfc6ff;  /* Nokta rengi */
    font-size: 20px;
    line-height: 1;
    top: 2px;
}


/* footer */
.section-footer {
  background: linear-gradient(45deg, #f2dbf5, #eee2c4, #f2dbf5);
  border-radius: 24px;
  padding: 40px 20px;
  margin: 30px auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.mail-icon {
  width: 36px;
  height: 36px;
}

.footer-label {
  color: #05000a;
  font-weight: bold;
}

.footer-email {
  color: #26002e;
  text-decoration: none;
  font-weight: bold;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-text {
  color: #05000a;
  font-size: 14px;
  margin-top: 10px;
}


    #whitepaper {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #e0e0e0;
    }


    #whitepaper h1 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 2rem;
    }

    #whitepaper h2 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-top: 1.8rem;
      margin-bottom: 0.6rem;
    }

    #whitepaper p {
      font-size: 1.2rem;
      font-weight: normal;
      margin-bottom: 1rem;
    }
/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.flag-icon {
  width: 1em;
  height: auto;
  vertical-align: middle;
  border-radius: 3px;
}

.giveaway-banner {
  width: 200px;
  height: 200px;
  vertical-align: middle;
}

.giveaway-icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  vertical-align: middle;
}

a {
    color: #cfc6ff;
    text-decoration: none;
}

img.exchange-icon {
    border-radius: 10px;
}

/* Responsive için */
@media (max-width: 767px) {
   
      .top-menu-flex {
        flex-wrap: wrap; /* Satır kırma aktif */
    }

    .menu-left {
        flex: 1 1 100%; /* Sol blok tam satır kaplasın */
        justify-content: flex-start; /* Sola yaslı */
        display: flex;
        align-items: center;
    }

    .menu-right {
        flex: 1 1 100%; /* Sağ blok alt satır tam genişlik */
        justify-content: center; /* Ortala */
        display: flex;
        margin-left: 0; /* margin-left:auto kaldır */
        margin-top: 10px; /* Üstten biraz boşluk */
    }
}
 .content-section {
        padding: 20px 10px;
    }
    .exchanges-wallets-row .section2-block {
        align-items: flex-start; /* sola yaslı */
    }

    .exchanges-wallets-row .section2-block:last-child {
        align-items: flex-end; /* sağa yaslı */
    }
