body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Napisy binarne na pełny ekran */
.binary-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    line-height: 1.6;
    letter-spacing: 0.3em;
    word-break: break-all;
    padding: 10px;
    box-sizing: border-box;
}

.highlight {
    color: rgb(25, 118, 210);
    opacity: 0.3;
    font-weight: bold;
}

/* Wrapper z gradientem */
.gradient-border-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 28px;
    background: linear-gradient(rgb(25, 118, 210) 0%, rgb(13, 71, 161) 100%);
    box-shadow: 0 25px 50px -12px rgba(13, 71, 161, 0.3);
    z-index: 10;
}

.bento-card {
    background: white;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

/* Stylizacja pól formularza */
.input-field {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 1rem;
    outline: none;
    transition: all 0.2s;
}

.input-field:focus {
    border-color: rgb(25, 118, 210);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.1);
}