/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 60px;
    text-align: center;
    background: url('/assets/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

/* Centrum treści */
.center-content {
    max-width: 600px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #333;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Nagłówki */
h2 {
    color: #f4a261;
    margin-bottom: 20px;
}

/* Input z kodem */
#code-input {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    background-color: #2c2c2c;
    color: white;
    font-size: 16px;
}

/* Przycisk */
button {
    margin-top: 20px;
    padding: 10px;
    background-color: #f4a261;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #e76f51;
}

button:active {
    transform: scale(0.96);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
    transition: transform 0.05s ease;
}

/* Komunikat z odpowiedzią */
#result-message {
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    color: #ffcc00;
}
.info-container {
    max-width: 700px;
    margin: 80px auto 0;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    color: #ffeaa7;
    font-size: 18px;
    box-shadow: 0 0 12px rgba(255, 153, 51, 0.3);
    backdrop-filter: blur(6px);
    font-weight: bold;
    position: relative;
}

.info-container::before {
    content: "💳";
    font-size: 26px;
    position: absolute;
    left: 18px;
    top: 12px;
}

.info-container a {
    color: #ffd166;
    text-decoration: underline;
    font-weight: bold;
}

.info-container a:hover {
    color: #ffa500;
    text-shadow: 0 0 6px #ffa500;
}


