* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ================= BASE ================= */
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1e293b, #020617);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f8fafc;
}

/* ================= CARD ================= */
.app-container {
    width: 100%;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* ================= TITLE ================= */
.app-container h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 32px;
}

.app-container h1 span {
    color: #38bdf8;
}

/* ================= TEXTAREA ================= */
textarea {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    border: none;
    outline: none;
    resize: none;
    padding: 18px;
    font-size: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    margin-bottom: 26px;
}

textarea::placeholder {
    color: #94a3b8;
}

/* ================= CONTROLS ================= */
.controls {
    display: flex;
    gap: 16px;
}

/* ================= SELECT ================= */
select {
    flex: 1;
    height: 52px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.85);
    cursor: pointer;

    /* IMPORTANT */
    appearance: none;
    -webkit-appearance: none;
    line-height: 52px;
}

/* ================= BUTTON ================= */
button {
    height: 52px;
    padding: 0 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #020617;
}

button img {
    width: 16px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 600px) {

    body {
        padding: 20px;
        align-items: flex-start;
    }

    .app-container {
        padding: 24px;
        border-radius: 14px;
    }

    .app-container h1 {
        font-size: 30px;
        margin-bottom: 22px;
    }

    textarea {
        height: 180px;
        font-size: 14px;
    }

    .controls {
        flex-direction: column;
        gap: 14px;
    }

    /* 🔥 REAL FIX HERE */
    select {
        width: 100%;
        height: 58px;
        font-size: 16px;          /* stops mobile zoom */
        line-height: 58px;
        padding: 0 22px;
    }

    button {
        width: 100%;
        height: 58px;
        font-size: 16px;
        justify-content: center;
    }
}
