* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.calculator {
    background: #020617;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#display {
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    font-size: 1.5rem;
    text-align: right;
    padding: 10px;
    border-radius: 10px;
    background: #1e293b;
    color: #fff;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

button {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    background: #334155;
    color: #fff;
    transition: 0.2s;
}

button:hover {
    background: #475569;
}

button:active {
    transform: scale(0.95);
}

button.zero {
    grid-column: span 2;
}

button:nth-child(4n) {
    background: #38bdf8;
    color: #000;
}