* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #010758, #490d61);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #ff2963;
}

textarea {
    width: 100%;
    max-width: 600px;
    height: 200px;
    background: #403d84;
    color: #fff;
    font-size: 1rem;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 20px;
}

textarea::placeholder {
    font-size: 1rem;
    color: #ddd;
}

.row {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    background: #ff2963;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

button:hover {
    background: #e91e63;
}

button img {
    width: 16px;
    margin-right: 10px;
}

select {
    flex: 1;
    color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(Images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;
}

#stop-button {
    background: #ff5722;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

#stop-button:hover {
    background: #e64a19;
}

#stop-button img {
    width: 16px;
    margin-right: 10px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    textarea {
        height: 150px;
    }

    button, 
    select {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    textarea {
        height: 120px;
    }

    button, 
    select {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}
