* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at top left,
        rgba(40,120,40,0.8),
        rgba(10,40,10,1));

    filter: blur(40px);
    transform: scale(1.2);
    z-index: -1;
}

.container {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px;
    text-align: center;

}

#reportForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px;
    text-align: center;
}

h1 {
    margin-bottom: 32px;
    font-size: 2rem;
}

input {
    width: min(400px, 90vw);

    padding: 14px 18px;

    border: none;
    border-radius: 999px;

    font-size: 1rem;

    outline: none;
    margin-bottom: 14px;

}

a {
    text-decoration: none;
}

button {
    width: min(400px, 90vw);

    padding: 14px;
    margin-top: 20px;

    border: none;
    border-radius: 999px;

    cursor: pointer;

    font-size: 1rem;
    font-weight: bold;

    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.9;
}

#status {
    min-height: 24px;
    margin-top: 12px;
}

#profile {
    margin-top: 10px;
}

#ip-info {
    margin-top: 40px;
    font-size: 1.1rem;
}

.footer {
    margin-top: 80px;
    max-width: 600px;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 18px;
}

.contact-link {
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
}

.status {
    width: min(400px, 90vw);
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 14px;
    font-weight: bold;
}

.hidden {
    display: none;
}

.status.loading {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.status.success {
    background: rgba(50,220,100,0.2);
    color: #7dff9c;
}

.status.error {
    background: rgba(255,80,80,0.2);
    color: #ff8f8f;
}

select,
textarea {
    width: min(400px, 90vw);

    padding: 14px 18px;

    margin-top: 20px;

    border: none;

    border-radius: 20px;

    font-size: 1rem;
}

textarea {
    min-height: 180px;

    resize: vertical;
}

input[type=file] {
    width: min(400px, 90vw);

    margin-top: 20px;
}

#contactContainer {
    width: min(400px, 90vw);
    margin-top: 20px;
}

.small-info {
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.4;
}

.contact-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.contact-row input {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    padding: 10px 14px;
}

.saveBtn {
    width: auto;
    min-width: 100px;
    margin: 0;
    padding: 10px 14px;
}