body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('files/cursor.cur'), auto;
}

h1 {
    font-size: 3rem;
    margin-top: 20px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #f0a500;
    text-align: center;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    0% {
        text-shadow: 0 0 10px #f0a500, 0 0 20px #f0a500, 0 0 30px #f0a500, 0 0 40px #ffcc29, 0 0 70px #ffcc29, 0 0 80px #ffcc29, 0 0 100px #ffcc29;
    }
    100% {
        text-shadow: 0 0 20px #f0a500, 0 0 30px #f0a500, 0 0 40px #f0a500, 0 0 50px #ffcc29, 0 0 70px #ffcc29, 0 0 100px #ffcc29, 0 0 150px #ffcc29;
    }
}

.container {
    background: #1f4068;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    text-align: center;
    margin: 20px 0;
}

label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
    color: #f8f8f8;
}

textarea, input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #f0a500;
    border-radius: 5px;
    background: #16213e;
    color: #fff;
    font-size: 1rem;
    resize: none;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s, box-shadow 0.3s;
}

textarea:focus, input[type="text"]:focus {
    border-color: #ffcc29;
    box-shadow: 0 0 10px rgba(255, 204, 41, 0.5);
}

button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: #f0a500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #ffcc29;
    transform: scale(1.05);
}

button:active {
    transform: scale(1);
}

textarea[readonly] {
    background: #111;
    border-color: #333;
    color: #bbb;
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #ccc;
}

footer a {
    color: #f0a500;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffcc29;
}

.neon-text {
    font-size: 1.5rem;
    color: #f0a500;
    text-shadow: 0 0 10px #f0a500, 0 0 20px #f0a500, 0 0 30px #f0a500, 0 0 40px #ffcc29, 0 0 70px #ffcc29, 0 0 80px #ffcc29, 0 0 100px #ffcc29;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}

.przepis {
    margin-top: 50px;
    padding: 20px;
    background: #1f4068;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    text-align: left;
    color: #f8f8f8;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

