:root {
    --primary-color: #FBC531;
    --secondary-color: #0A58CA;
    --background-color: #121212;
    --text-color: #e0e0e0;
    --card-bg-color: #1e1e1e;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: 1080px;
    margin: auto;
    padding: 32px;
}

.language-selector {
    padding: 10px;
    text-align: center;
    background-color: var(--card-bg-color);
}

    .language-selector a {
        display: inline-flex;
        align-items: center;
        color: var(--text-color);
        text-decoration: none;
        margin: 0 8px;
        font-weight: bold;
        font-size: 1.05em;
    }

        .language-selector a:hover {
            color: var(--primary-color);
        }

    .language-selector img {
        width: 20px;
        height: auto;
        margin-right: 5px;
        border-radius: 3px;
    }

header {
    padding: 48px 20px 32px 20px;
}

.header-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

header img {
    max-width: 260px;
    margin-bottom: 32px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    box-shadow: 0 0 28px rgba(251, 197, 49, 0.4);
}

h1 {
    font-size: 3.2em;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255,255,255,0.18);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h2 {
    font-size: 2.4em;
    color: var(--primary-color);
    margin-top: 60px;
    margin-bottom: 26px;
    font-weight: 700;
}

p {
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto 32px auto;
}

.btn, .btn-secondary {
    font-size: 1.18em;
    padding: 16px 38px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #121212;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(251, 197, 49, 0.4);
    }

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.contract-address-span {
    background: #000;
    padding: 10px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 1.08em;
    color: #fff;
    cursor: pointer;
    word-break: break-all;
}

.social-icons a {
    color: var(--text-color);
    font-size: 2.6em;
    margin: 0 18px;
    transition: color 0.3s, transform 0.3s;
}

footer {
    margin-top: 70px;
    padding: 26px;
    font-size: 1.1em;
    color: #777;
}

/* ECOSYSTEMS: Yan yana iki kutu */
.ecosystem-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
    margin: 0 auto 48px auto;
    max-width: 1200px;
    flex-wrap: nowrap;
}

.chain-section {
    background-color: var(--card-bg-color);
    padding: 32px;
    border-radius: 17px;
    border: 1.5px solid #333;
    text-align: left;
    min-width: 340px;
    max-width: 520px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    margin: 0;
}

    .chain-section h3 {
        color: var(--primary-color);
        font-size: 1.25em;
        margin-bottom: 10px;
        margin-top: 0;
    }

.ecosystem-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 65%, #333 100%);
    margin-bottom: 14px;
}
 

/* ROADMAP: YAN YANA KUTULAR */
.roadmap {
    max-width: 1080px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

@media (max-width: 1200px) {
    .roadmap {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .roadmap {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

.roadmap-item {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 360px;
    background: var(--card-bg-color);
    border-radius: 15px;
    padding: 30px 32px 20px 32px;
    border: 2px solid #262626;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    text-align: left;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
    margin: 0;
    display: flex;
    flex-direction: column;
}

    .roadmap-item:hover {
        box-shadow: 0 8px 24px rgba(251,197,49,0.15);
        border-color: var(--primary-color);
    }

    .roadmap-item h3 {
        font-size: 1.19em;
        font-weight: 700;
        margin-bottom: 13px;
        color: var(--primary-color);
    }

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .roadmap-list li {
        font-size: 1.11em;
        margin-bottom: 11px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .roadmap-list li .icon {
            font-size: 1.15em;
            min-width: 24px;
            text-align: center;
        }

        .roadmap-list li.complete .icon {
            color: #34d058;
        }

        .roadmap-list li.in-progress .icon {
            color: #4183c4;
        }

        .roadmap-list li.planned .icon {
            color: #bbb;
        }

/* EKĘP KARTLARI */
.team-section {
    background: var(--card-bg-color);
    padding: 30px;
    border-radius: 17px;
    margin-top: 40px;
    border: 1px solid #444;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .team-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 1000px) {
    h1 {
        font-size: 2.4em;
    }

    h2 {
        font-size: 1.4em;
    }

    .header-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .container {
        padding: 12px;
    }

    .roadmap-item {
        width: 100%;
    }

    .team-section {
        padding: 8px;
    }

    .team-member {
        min-height: 0;
    }

    .ecosystem-row {
        flex-direction: column;
        gap: 32px;
    }

    .chain-section {
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .team-grid {
        flex-direction: column;
        gap: 24px;
    }

    .container {
        padding: 5px;
    }

    h1 {
        font-size: 1.5em;
    }
}

.team-member {
    background: #181818;
    padding: 22px;
    border-radius: 13px;
    max-width: 240px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    .team-member img {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        margin-bottom: 13px;
        border: 2.5px solid #FBC531;
        object-fit: cover;
    }

    .team-member h3 {
        margin-top: 7px;
        margin-bottom: 9px;
        font-size: 1.19em;
        font-weight: 700;
    }

    .team-member p {
        margin: 0 0 16px 0;
        font-size: 1.08em;
    }

    .team-member a {
        margin-top: auto;
        color: #FBC531;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        font-size: 1.05em;
    }

        .team-member a:hover {
            text-decoration: underline;
        }

.chain-buttons .btn,
.chain-buttons .btn-secondary {
    font-size: 0.95em;
    padding: 10px 22px;
}
