@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #e0e5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px; /* Added padding for better spacing */
}

.container {
    background: #e0e5ec;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #b8babe, -8px -8px 16px #ffffff;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.tagline {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.drop-area {
    width: calc(100% - 40px);
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px #b8babe, inset -4px -4px 8px #ffffff;
    color: #2c3e50;
    text-align: center;
    cursor: pointer;
    margin: 20px auto;
    border: 2px dashed #2c3e50;
    transition: 0.3s;
}

.drop-area.active {
    background: #d1d5db;
    border-color: #1a73e8;
}

textarea {
    display: none;
    width: calc(100% - 40px);
    height: 150px;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 4px 4px 8px #b8babe, inset -4px -4px 8px #ffffff;
    border: none;
    font-size: 14px;
    resize: none;
    margin-top: 20px;
    color: #2c3e50;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    background: #e0e5ec;
    box-shadow: 4px 4px 8px #b8babe, -4px -4px 8px #ffffff;
    cursor: pointer;
    color: #2c3e50;
    transition: all 0.3s ease-in-out;
    display: none;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px #b8babe, -6px -6px 12px #ffffff;
}

button:active {
    transform: translateY(1px);
    box-shadow: inset 4px 4px 8px #b8babe, inset -4px -4px 8px #ffffff;
}

a {
    text-decoration: none;
    color: #1a73e8;
}

a:hover {
    text-decoration: underline;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
        margin: 10px auto;
    }

    .drop-area, textarea {
        width: calc(100% - 50px);
    }

    button {
        width: 100%;
    }
}
