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

:root {
    --padding: 20px;
    --blur: 0px;
    --base: #ff8500;
    --border-radius: 20px;
    --scale: 1;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1d2b64, #000);
}

.container {
    width: 90%;
    max-width: 900px;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

h1 {
    color: #fff;
}

.subtitle {
    color: #ddd;
    margin-bottom: 2rem;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.css-controller {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.control label {
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.value {
    color: var(--base);
    font-weight: bold;
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

img {
    max-width: 100%;
    padding: var(--padding);
    background: var(--base);
    border-radius: var(--border-radius);
    transform: scale(var(--scale));
    transform-origin: center;

    filter: blur(var(--blur));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

    transition: all 0.35s ease;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
    }
}