@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: linear-gradient(to top, #490d47, #ff0080);
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.scroll-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px 40px 15px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.header img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.selection {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.option {
    width: 120px;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    box-sizing: border-box;
}

.option img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.option span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.option.girl {
    background: #ff66cc;
    color: white;
}

.option.boy {
    background: black;
    color: white;
    border: 2px solid white;
}

.option.selected {
    background: #ff66cc;
    color: white;
    border: none;
}

.continue-btn {
    background: #ff007f;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    .selection {
        gap: 15px;
    }
    .option {
        width: 110px;
        padding: 12px;
    }
    div[id^="div-gpt-ad"], iframe {
        min-width: unset !important;
        width: 100% !important;
        overflow: hidden;
    }
}