@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 bottom, #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: 450px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.girl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.girl-btn {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    div[id^="div-gpt-ad"], iframe {
        min-width: unset !important;
        width: 100% !important;
        overflow: hidden;
    }
}