body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.nav-bar {
    position: relative;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.horizontal-line {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
}

.horizontal-line-black {
    position: absolute;
    top: 0;
    height: 1px;
    background-color: #000;
    left: calc(100% - 400px);
    width: 500px;
}

.vertical-line {
    position: absolute;
    top: 1px;
    width: 1px;
    height: 79px;
    background-color: #FFF;
}

.vertical-line.left {
    left: 145px;
}

.vertical-line.right {
    right: 145px;
    background-color: #000;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.nav-button.home {
    left: 0;
    width: 145px;
}

.nav-button.login {
    right: 0;
    width: 145px;
    color: #000;
}

.big-circle {
    position: absolute;
    top: 50%;
    right: -1131px;
    width: 1656px;
    height: 1656px;
    border-radius: 50%;
    background: linear-gradient(169deg, #F1C8C8 29.15%, #EFD283 74.66%);
    transform: translateY(-50%);
    z-index: -1;
}

.start-button {
    position: absolute;
    top: 50%;
    right: 110px;
    width: 158.648px;
    height: 158.865px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.start-button img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-origin: center;
    display: block;
}

.start-button:hover img {
    transform: rotate(360deg);
}

.icon-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-placeholder svg {
    width: 65px;
    height: auto;
}

.content-wrapper {
    position: absolute;
    top: 80px;
    bottom: 0;
    left: 5%;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rate-play-win {
    margin-bottom: 50px;
}

.rpw-rectangle {
    position: relative;
    width: 349px;
    height: 58px;
    border-radius: 50px;
    background: linear-gradient(to right, #FFFEF8 0%, #F0C8C8 41.55%, #E7B363 74.5%, #E07B44 100%);
}

.rpw-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 58px;
    background-color: #000;
}

.rpw-line.left {
    left: 116px;
}

.rpw-line.right {
    right: 116px;
}

.rpw-word {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 2px;
    text-align: center;
    width: 116px;
}

.rpw-word.rate {
    left: 0;
}

.rpw-word.play {
    left: calc(50% - 58px);
}

.rpw-word.win {
    right: 0;
}

.text {
    color: #FFFFF9;
    letter-spacing: 2px;
    z-index: 1;
}

.main-text {
    font-size: 70px;
    font-weight: 500;
    line-height: 70px;
    width: 850px;
    margin-bottom: 230px;
}

.sub-text {
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    width: 300px;
}

.container {
    padding-bottom: 75px;
}

.mobile-content {
    display: none;
}

@media screen and (max-width: 600px) {
    /* Hide desktop content */
    .nav-bar .horizontal-line,
    .nav-bar .horizontal-line-black,
    .nav-bar .vertical-line,
    .nav-bar .nav-button.home,
    .nav-bar .nav-button.login,
    .big-circle,
    .start-button,
    .content-wrapper {
        display: none;
    }

    /* Show mobile content */
    .mobile-content {
        display: block;
    }

    /* Prevent scrolling */
    body, html {
        overflow: hidden;
        height: 100%;
    }

    .container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding: 0;
    }

    /* RATE | PLAY | WIN Rectangle (Mobile) */
    .rate-play-win-mobile {
        position: absolute;
        top: 70px; /* Adjusted to prevent overlap */
        left: 35px;
    }

    .rpw-rectangle-mobile {
        position: relative;
        width: 273px;
        height: 58px;
        border-radius: 50px;
        background: linear-gradient(to right, #FFFEF8 0%, #F0C8C8 41.55%, #E7B363 74.5%, #E07B44 100%);
    }

    .rpw-line-mobile {
        position: absolute;
        top: 0;
        width: 1px;
        height: 58px;
        background-color: #000;
    }

    .rpw-line-mobile.left {
        left: 91px;
    }

    .rpw-line-mobile.right {
        right: 91px;
    }

    .rpw-word-mobile {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 2px;
        text-align: center;
        width: 91px;
    }

    .rpw-word-mobile.rate {
        left: 0;
    }

    .rpw-word-mobile.play {
        left: calc(50% - 45.5px);
    }

    .rpw-word-mobile.win {
        right: 0;
    }

    /* Icon and "We" */
    .icon-and-text {
        display: flex;
        align-items: center;
        margin-top: 100px; /* 40px below the RATE | PLAY | WIN graphic */
        margin-left: 45px;
    }

    .icon-placeholder-mobile {
        width: 36.303px;
        height: 50px;
        transform: rotate(-90deg);
        flex-shrink: 0;
        /* Add your icon background or image */
    }

    .text-we {
        color: #FFFFF9;
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        font-style: normal;
        font-weight: 300;
        line-height: 60px;
        margin-left: 10px;
    }

    /* Text Below */
    .text-reward {
        margin-left: 45px;
        width: 361px;
        color: #FFFFF9;
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        font-style: normal;
        font-weight: 300;
        line-height: 65px;
        margin-top: 0px; /* Adjusted to align properly */
    }

    /* Italicize "your" */
    .text-reward em {
        font-style: italic;
    }

    /* Arrow Overlapping Text */
    .arrow-placeholder {
        position: absolute;
        top: 390px; /* Centered over "brutal" */
        right: 60px; /* Centered horizontally over "brutal" */
        width: 140px;
        height: 11px;
        /* Add your arrow background or image */
    }

    /* Honesty Rectangle */
    .honesty-container {
        margin-top: 5px;
        margin-left: 35px;
    }

    .honesty-rectangle {
        width: 273px;
        height: 69px;
        border-radius: 200px;
        border: 1px solid #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .honesty-rectangle::after {
        content: "honesty";
        color: #FFFFF9;
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        font-style: normal;
        font-weight: 300;
        line-height: 55px;
    }

    /* Start Rating Button */
    .start-rating-button {
        position: absolute;
        bottom: 150px;
        left: 35px;
        right: 35px;
        width: calc(100% - 70px); /* Ensures 35px margin on both sides */
        height: 81px;
        border-radius: 100px;
        background: linear-gradient(90deg, #F1C8C8 0%, #EFD286 100%);
        box-shadow: 0px 0px 30px 0px #F1C8C5;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .start-rating-button span {
        color: #000;
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: 25px;
    }

    /* Login Link */
    .login-link {
        position: absolute;
        bottom: 110px;
        left: 50%;
        transform: translateX(-50%);
        color: #FFF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        text-align: center;
        white-space: nowrap; /* Prevents text from wrapping */
    }

    .login-link a {
        background: linear-gradient(90deg, #F1C8C5 0%, #EFD288 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-decoration: none;
    }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    /* Adjust desktop elements for tablet screens */
    .main-text {
        font-size: 50px;
        line-height: 55px;
        width: 700px;
    }

    .sub-text {
        font-size: 20px;
        line-height: 25px;
        width: 250px;
    }

    .start-button {
        right: 80px;
        width: 120px;
        height: 120px;
    }

    .start-button img {
        width: 100%;
        height: 100%;
    }

    .rpw-rectangle {
        width: 300px;
        height: 50px;
    }

    .rpw-line.left {
        left: 100px;
    }

    .rpw-line.right {
        right: 100px;
    }

    .rpw-word {
        width: 100px;
        font-size: 20px;
    }

    .container {
        padding-bottom: 50px;
    }
}