body {
    font-family: 'Arial', sans-serif;
    background: url('https://source.unsplash.com/1600x900/?baseball,stadium') no-repeat center center/cover;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 350px;
    background: rgba(0, 0, 0, 0.85);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ff4500;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background-color: #e63900;
}

.error {
    color: #ffcccc;
    margin-top: 10px;
}

#jsonData {
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    margin-top: 20px;
}

#jsonData h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

#jsonData p {
    font-size: 1rem;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ddd;
    border-radius: 6px;
}

#jsonData a {
    color: #ffcc00;
    text-decoration: none;
}

#jsonData a:hover {
    text-decoration: underline;
}
