/* ==========================
   CSS Reset / Universal
========================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Sora", sans-serif;
    background-color: #0B1019;
    color: white;
}

.main_container {
    width: 100%;
    min-height: 100vh;
    padding: 20px 20px 40px;
    background-color: #0B1019;
}

header {
    position: relative;
    width: 100%;
    padding-top: 10px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    width: 100px;
    height: auto;
    margin-left: 20px;
    border-radius: 50%;
}

.join_telegram_button {
    position: absolute;
    top: 24px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #65d600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 24px);
    font-family: "Sora", sans-serif;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.join_telegram_button:hover {
    background-color: #65d600;
    transform: scale(1.05);
}

/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main_image {
    width: 100%;
    height: auto;
    margin-top: 20px;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #0B1019 100%,
        #0B1019 100%,
        transparent
    );
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #0B1019 80%,
        #0B1019 80%,
        transparent
    );
}

.hero_content {
    position: absolute;
    top: 42%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    z-index: 10;
}

.hero_content span {
    color: #7CFF00;
    font-weight: 600;
}

.hero_content h1 {
    font-size: clamp(28px, 4vw, 58px);
    margin-bottom: 20px;
    font-family: "Sora", sans-serif;
}

.hero_content p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
    font-family: "Sora", sans-serif;
}

.hero_content a {
    display: inline-block;
    padding: 15px 35px;
    background: #65d600;
    color: #ffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero_content a:hover {
    background: #51ab00;
    transform: scale(1.08);
}

.hero_hints {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.hero_hints p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: clamp(14px, 1.8vw, 22px);
    font-family: "Sora", sans-serif;
    font-weight: 500;
}

.hero_hints i {
    color: #7CFF00;
    font-size: 18px;
}

@media (max-width: 900px) {
    .hero {
        overflow: visible;
    }

    .hero_content {
        left: 5%;
        max-width: 420px;
        top: 34%;
        transform: translateY(-40%);
    }
}

@media (max-width: 768px) {
    .main_container {
        padding: 15px 15px 30px;
    }

    .nav_bar {
        align-items: center;
        min-height: 60px;
    }

    .logo {
        width: 80px;
        margin-left: 0;
    }

    .join_telegram_button {
        position: absolute;
        top: 24px;
        right: 0;       
         width: 40%;
        max-width: 220px;       
         padding: 9px 15px;
        font-size: 14px;
        z-index: 2;
    }

    .hero_content {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 20px 0 10px;
    }

    .hero_content h1 {
        margin-bottom: 12px;
    }

    .hero_content p {
        margin-bottom: 20px;
    }

    .hero_hints {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .main_container {
        padding: 12px 12px 24px;
    }

    .logo {
        width: 70px;
    }

    .join_telegram_button {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }

    .hero_content h1 {
        font-size: 24px;
    }

    .hero_content p {
        font-size: 15px;
    }

    .hero_content a {
        width: 100%;
        text-align: center;
    }

    .hero_hints {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero_hints p {
        font-size: 13px;
    }
}