    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #ffd6e8, #f7c8ff, #ffe3f1);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
        overflow-y: auto;
    }

    /* ?? Large Feminine Title */
    .main-title {
        font-size: 45px;
        font-weight: 700;
        background: linear-gradient(90deg, #ff69b4, #d63384, #ff9ad6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
        margin-bottom: 30px;
        letter-spacing: 1px;
        text-align: center;
    }

    /* ?? Smaller Feminine Sub Title */
    .sub-title {
        font-size: 20px;
        font-weight: 700;
        background: linear-gradient(90deg, #ff69b4, #d63384, #ff9ad6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
        margin-bottom: 30px;
        letter-spacing: 1px;
        text-align: center;
    }

    /* ?? Feminine Box */
    .overlay {
        background: rgba(255, 240, 250, 0.8);
        backdrop-filter: blur(6px);
        border-radius: 20px;
        padding: 30px;
        width: 420px;
        max-width: 90%; /* ?? expands on mobile */
        box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
        text-align: center;
        animation: fadeIn 0.6s ease;
    }

    h1 {
        color: #d63384;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 28px;
    }

    /* ?? Dropdown Styling */
    .lang-select {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: 2px solid #ff9ad6;
        background: #ffe6f4;
        color: #7a3b69;
        font-size: 18px;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    /* ?? Buttons */
    .btn {
        padding: 14px 30px;
        border-radius: 30px;
        border: none;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        transition: 0.25s;
    }

    .continue {
        background: #ff69b4;
        color: white;
    }

    .continue:hover {
        background: #ff85c8;
        transform: scale(1.05);
    }

    /* ?? Footer */
    .copyright {
        position: absolute;
        bottom: 15px;
        text-align: center;
        width: 100%;
        font-size: 14px;
        color: #a14d8e;
        opacity: 0.8;
    }

    /* ?? Name Input Box */
    .name-input {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: 2px solid #ff9ad6;
        background: #ffe6f4;
        color: #7a3b69;
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
        box-sizing: border-box; /* FIXES misalignment */
    }

    /* ?? Mobile Enhancements */
    @media (max-width: 600px) {

        body {
            padding-top: 30px;
        }

        .main-title {
            font-size: 48px; /* still big, but fits mobile */
            margin-bottom: 20px;
        }

        .overlay {
            padding: 25px;
            width: 95%;
        }

        h1 {
            font-size: 24px;
        }

        .lang-select {
            font-size: 18px;
            padding: 16px;
        }

        .btn {
            font-size: 18px;
            padding: 16px 32px;
        }

        .copyright {
            font-size: 12px;
        }

        .name-input {
            font-size: 20px;
            padding: 18px;
        }

    }

    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }