body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    overflow: hidden;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar
body::-webkit-scrollbar {
    display: none;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 16px;
    background-color: #000000;
    z-index: 1000;
}

.topbar-left {
    font-size: 18px;
    font-weight: bold;
    margin-left: 16px;
}

.topbar-right {
    display: flex;
    gap: 16px;
    margin-right: 16px;
}

.btn-facebook {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.btn-red {
    background-color: #ff0000;
    border: none;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 100vh;
    background-image: url('./assets/image5.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    /* padding: 16px; */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    padding: 0 16px;
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
}

.btn-scroll-down {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 24px;
    /* border: none; */
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 40px;
    border: 1px solid #000000;
}

.main-info {
    padding: 16px;
    
}

.info-block {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 16px;
    margin: 0 auto;
    max-width: 800px;
    /* height: auto; */
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-align: left;
    margin-bottom: 16px;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.btn-blue {
    background-color: rgba(0, 0, 255, 0.5);
    color: #0000ff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.text-thin {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 8px;
}

.text-medium {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

.btn-transparent {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
}

.wallet-icon {
    font-size: 18px;
}

.temp-title {
    font-size: xx-large;
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px;
    }
    .topbar-left {
        font-size: 16px;
    }

    .btn-red, .btn-facebook {
        font-size: 14px;
        padding: 6px 12px;
    }

    .hero {
        padding: 8px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-scroll-down {
        padding: 10px 20px;
    }

    .info-block {
        padding: 12px;
    }

    .info-title {
        font-size: 20px;
    }

    .buttons-container {
        flex-direction: column;
    }
}