/* ----------------------------------
// GLOBAL STYLES & ANIMATION ENHANCEMENTS
----------------------------------- */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background: #030a12;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden; 
}

/* FOREST THEME BACKGROUND GLOWS */
.glow1, .glow2 {
    position: fixed;
    width: 80vh;
    height: 80vh;
    filter: blur(350px);
    z-index: -1;
    opacity: 0.4; 
    border-radius: 50%;
}
.glow1 {
    top: -10vh;
    left: -10vh;
    background: #00ffbf; 
    animation: pulse1 8s infinite alternate;
}
.glow2 {
    bottom: -10vh;
    right: -10vh;
    background: #00a0a0; 
    animation: pulse2 10s infinite alternate;
}

@keyframes pulse1 { from {opacity:0.35;} to {opacity:0.55;} } 
@keyframes pulse2 { from {opacity:0.30;} to {opacity:0.50;} } 

/* LOGO */
.logo {
    width: 160px; 
    height: 160px; 
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 35px rgba(0, 255, 191, 0.9); 
    z-index: 60;
    margin-top: 15px; 
    margin-bottom: 15px; 
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.1); 
}


/* ----------------------------------
// NAVIGATION
----------------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 10, 18, 0.98);
    backdrop-filter: blur(8px);
    padding: 15px 50px;
    z-index: 50;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 20px rgba(0, 255, 191, 0.2);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

nav a:hover {
    color: #00ffbf; 
    border-bottom-color: #00ffbf;
    transform: translateY(-2px);
}

/* ----------------------------------
// LANGUAGE SELECTOR STYLES 
----------------------------------- */
.language-selector {
    position: relative;
    z-index: 40; 
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0, 255, 191, 0.4)); 
    margin: 20px auto; 
}

.lang-button {
    background-color: rgba(0, 255, 191, 0.15); 
    color: #00ffbf; 
    border: 2px solid #00ffbf;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    user-select: none; 
}

.lang-button:hover {
    background-color: rgba(0, 255, 191, 0.3);
    box-shadow: 0 0 15px #00ffbf;
    transform: translateY(-2px);
}

.lang-menu {
    position: absolute; 
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    background-color: #030a12; 
    opacity: 1; 
    border: 1px solid #00ffbf;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 255, 191, 0.7);
    overflow: hidden;
    min-width: 150px;
    display: none; 
    z-index: 99999; 
    text-align: left;
}

.lang-menu a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 400;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(0, 255, 191, 0.1);
}

.lang-menu a:last-child {
    border-bottom: none;
}

.lang-menu a:hover {
    background-color: #00ffbf;
    color: #030a12; 
}

/* ----------------------------------
// SECTION STYLES
----------------------------------- */
.hero {
    text-align: center;
    /* DÜZENLEME: İçeriği yukarı çekmek için padding azaltıldı */
    padding-top: 110px; 
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

/* HEADERS: $SLT (h1) and SLOTH TOKEN (sub-h1) */
.hero h1 { 
    font-size: 68px; 
    font-weight: 800;
    text-shadow: 0 0 25px #00ffbf; 
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px; 
}
.hero .sub-h1 { 
    font-size: 30px; 
    font-weight: 600;
    margin-top: 5px; 
    margin-bottom: 10px;
    opacity: 0.9;
    color: #00ffbf;
    text-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
}

/* LOGO */
.logo {
    width: 160px; 
    height: 160px; 
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 35px rgba(0, 255, 191, 0.9); 
    z-index: 60;
    margin-top: 15px; 
    margin-bottom: 15px; 
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.1); 
}


/* SOCIAL ICONS */
.social-icons {
    margin: 20px auto; 
}

.social-icons a {
    color: #00ffbf;
    font-size: 30px;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
    text-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
}

.social-icons a:hover {
    color: #4dfff7;
    transform: scale(1.2);
}


.hero p {
    font-size: 20px; 
    opacity: 0.9;
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.5; 
    font-weight: 400; 
}

/* CONTRAC ADDRESS STYLES (DESKTOP) */
.contract-container {
    max-width: 550px;
    margin: 30px auto 10px auto; 
    position: relative; 
}
.contract-label {
    font-size: 14px;
    font-weight: 700;
    color: #030a12;
    padding: 2px 10px;
    background: #00ffbf;
    border-radius: 5px;
    position: absolute;
    top: -12px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
}
.contract-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 191, 0.1);
    border: 1px solid rgba(0, 255, 191, 0.4);
    border-radius: 8px;
    padding: 10px 15px;
    gap: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 191, 0.3);
}

.contract-address {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #00ffbf;
    cursor: pointer;
}

.copy-btn {
    background: #00ffbf;
    color: #030a12;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.copy-btn:hover {
    background: #4dfff7;
    transform: translateY(-1px);
}

/* BUTTONS */
.btns {
    margin-top: 35px;
    margin-bottom: 70px; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px; 
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border: 2px solid #00ffbf; 
    background: rgba(0, 255, 191, 0.1); 
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0,255,191,0.5);
    transition: 0.3s;
    text-transform: uppercase;
}
.btn:hover {
    box-shadow: 0 0 35px rgba(0,255,191,1);
    background: rgba(0, 255, 191, 0.3);
    transform: translateY(-2px);
}

/* SECTION BASICS */
.section-content {
    padding: 0px 0; 
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    scroll-margin-top: 100px; 
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; 
}

/* Section Main Headers */
.section-content h2 {
    font-size: 40px; 
    font-weight: 800;
    text-shadow: 0 0 15px #00ffbf;
    margin-bottom: 20px; 
    color: #00ffbf; 
}

/* Manifesto Section */
.manifesto-section {
    padding: 0px 0; 
    text-align: center;
    scroll-margin-top: 100px; 
}

/* Manifesto Header */
.manifesto-section h2 {
    font-size: 40px; 
    font-weight: 800;
    text-shadow: 0 0 15px #00ffbf;
    margin-bottom: 20px; 
    color: #00ffbf; 
    text-align: center; 
}

/* Manifesto Content Area */
.manifesto-content-area {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 60px;
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* VIDEO SIZE AND AREA */
.manifesto-video {
    flex-basis: 300px; 
    flex-shrink: 0;
}
.manifesto-video video {
    width: 100%; 
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,255,191,0.7); 
}


/* Manifesto Text Block */
.manifesto-text {
    flex-grow: 1; 
    max-width: 600px; 
    text-align: left; 
}

/* Manifesto h3 */
.manifesto-text h3 {
    margin-top: 0; 
    font-size: 28px; 
    color: #00ffbf;
}


.highlight {
    color: #00ffbf; 
    font-weight: 600;
}

.manifesto-text p {
    font-size: 17px; 
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px; 
    font-weight: 300; 
}

/* ----------------------------------
// HOW TO BUY (Ordered List)
----------------------------------- */
.buy-steps {
    max-width: 800px;
    margin: 60px auto;
    text-align: left;
}
.buy-steps ol {
    list-style-type: none; 
    counter-reset: step-counter;
    padding: 0;
}
.buy-steps li {
    counter-increment: step-counter;
    margin-bottom: 40px;
    position: relative;
    font-size: 18px; 
    line-height: 1.5;
    font-weight: 400;
    background: rgba(0, 255, 191, 0.05);
    padding: 20px 20px 20px 80px; 
    border-radius: 10px;
}
.buy-steps li strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}
.buy-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px; 
    top: 50%;
    transform: translateY(-50%);
    background: #00ffbf;
    color: #030a12;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 0 15px #00ffbf;
    border: 3px solid #030a12;
    z-index: 2; 
}
.buy-steps p {
    margin-top: 5px;
    font-size: 15px; 
    opacity: 0.85;
}
.buy-steps a {
    text-decoration: none;
}

/* ----------------------------------
// ROADMAP
----------------------------------- */
.roadmap-container {
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
}

.roadmap-content-wrapper {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 60px; 
    margin-top: 40px;
}
.roadmap-image-wrapper {
    flex: 0 0 30%; 
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column; 
    gap: 140px; 
}
.roadmap-image-wrapper img {
    width: 100%; 
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0, 255, 191, 0.7);
    transition: transform 0.3s;
}
.roadmap-image-mobile {
    display: none;
}
.roadmap-list {
    flex: 1; 
    max-width: 650px; 
    text-align: left;
}
.roadmap-list ul {
    list-style: none;
    padding-left: 0;
}
.roadmap-list li {
    margin-bottom: 20px; 
    line-height: 1.7;
    padding-left: 35px; 
    position: relative;
    font-size: 17px; 
    font-weight: 400;
}
.roadmap-list h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 26px; 
    font-weight: 600;
    color: #00ffbf;
}

/* ICON STYLES (Default: Goal 🚀) */
.roadmap-list li::before {
    position: absolute;
    left: 0;
    font-size: 22px;
    line-height: 1.6;
    transition: color 0.3s;
    content: '🚀'; /* Default for goals */
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.9); 
}

/* ✅ - COMPLETED TASK (Override for specific items) */
.roadmap-list .completed-step::before {
    content: '✅'; 
    text-shadow: 0 0 10px #00ffbf;
}

/* ----------------------------------
// FAQ (FREQUENTLY ASKED QUESTIONS)
----------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 191, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 255, 191, 0.05);
    transition: all 0.3s;
}

.faq-question {
    padding: 18px; 
    font-size: 17px; 
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 255, 191, 0.1);
    color: #00ffbf;
}

.faq-question:hover {
    background: rgba(0, 255, 191, 0.2);
}

.faq-toggle {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding: 10px 0 20px 0;
    font-size: 15px; 
    opacity: 0.9;
    font-weight: 300; 
}

/* Bold text style for highlights (used to replace <b>) */
.creative-highlight { 
    font-weight: 600; 
    color: #4dfff7; 
}

/* ----------------------------------
// FOOTER
----------------------------------- */
footer {
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid rgba(0, 255, 191, 0.2);
    margin-top: 80px;
}
footer p {
    margin: 5px 0;
    font-size: 15px;
    opacity: 0.8;
    font-weight: 300;
}

/* ----------------------------------
// MOBILE RESPONSIVENESS
----------------------------------- */
@media (max-width: 850px) {

    /* Navigation */
    nav {
        padding: 15px 5px;
    }
    nav a {
        margin: 0 5px;
        font-size: 12px; 
    }

    /* Hero Padding Mobile */
    .hero {
         /* DÜZENLEME: İçeriği yukarı çekmek için padding azaltıldı (Mobile) */
         padding-top: 70px; 
    }

    /* Dil Seçici Mobile Konum */
    .language-selector {
        margin: 20px auto; 
    }

    /* Font and Headers */
    .hero h1 { 
        font-size: 36px; 
        letter-spacing: normal; 
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis;
        padding: 0 10px; 
        margin-bottom: 5px;
    }
    .hero .sub-h1 { 
        font-size: 22px; 
    }

    /* HERO PARAGRAPH FIX */
    .hero p {
         font-size: 16px; 
         white-space: normal; 
         word-wrap: break-word;
         padding: 0 5px;
    }

    /* SOCIAL ICONS MOBILE */
    .social-icons {
        margin: 15px auto; 
    }
    .social-icons a {
        font-size: 25px; 
        margin: 0 8px;
    }

    /* BUTTONS MOBILE LAYOUT */
    .btns {
        gap: 8px; 
        margin-bottom: 70px; 
    }
    .btn {
        padding: 10px 18px;
        font-size: 14px;
        flex-grow: 1; 
        min-width: 100px; 
    }

    /* Section Padding Mobile */
    .section-content, .manifesto-section {
        padding: 0px 0; 
        scroll-margin-top: 80px; 
    }
    .content-wrapper {
         padding: 0 20px; 
    }

    /* Manifesto Mobile Layout */
    .manifesto-section h2 {
        margin-bottom: 15px; 
    }
    .manifesto-content-area {
        flex-direction: column; 
        gap: 40px;
        padding: 0; 
    }
    .manifesto-video {
        flex-basis: auto; 
        width: 100%; 
        max-width: 300px; 
        margin: 0 auto; 
    }
    .manifesto-text {
         padding: 0; 
         max-width: 100%; 
         text-align: left; 
    }
    .manifesto-text p {
        font-size: 15px;
    }
    .manifesto-text h3 {
         font-size: 20px;
    }

    /* Section Content H2 Mobile */
    .section-content h2 {
        font-size: 32px; 
        margin-bottom: 15px; 
    }

    /* LOGO MOBILE SIZE */
    .logo {
        width: 120px; 
        height: 120px;
    }

    /* CONTRACT ADDRESS MOBILE STYLES */
    .contract-container {
        max-width: 95%; 
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px; 
    }
    .contract-box {
        padding: 8px 10px;
    }
    .contract-address {
        font-size: 12px; 
    }
    .copy-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* How to Buy */
    .buy-steps {
    }
    .buy-steps li {
        padding: 15px 15px 15px 60px; 
        margin-bottom: 20px;
        font-size: 16px;
    }
    .buy-steps li::before {
        left: 10px; 
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
    }
    .buy-steps p {
         font-size: 14px;
    }

    /* ROADMAP MOBILE LAYOUT */
    .roadmap-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .roadmap-image-wrapper {
        display: none; 
    }
    .roadmap-list {
        max-width: 100%; 
        padding: 0;
    }
    .roadmap-list h3 {
        font-size: 22px;
        text-align: center; 
    }
    .roadmap-list li {
        font-size: 15px;
    }
     /* Mobile images */
    .roadmap-image-mobile {
        display: block; 
        width: 90%; 
        max-width: 350px; 
        margin: 25px auto 15px auto; 
        border-radius: 14px;
        box-shadow: 0 0 25px rgba(0, 255, 191, 0.7);
    }
    .roadmap-list ul {
        text-align: left;
        margin: 0;
        padding: 0;
        max-width: 400px; 
        margin: 0 auto; 
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
}
