@font-face {
    font-family: 'SamsungOne-400';
    src: url('../fonts/SamsungOne-400.ttf'), url('../fonts/SamsungOne-400.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SamsungOne-Bold';
    src: url('../fonts/SamsungOne-Bold.ttf'), url('../fonts/SamsungOne-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: 'SamsungOne-400', sans-serif;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

.infobox {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.infobox__logo {
    width: 220px;
    max-width: 100%;
    margin-bottom: 2rem;
}

.infobox__title {
    font-family: 'SamsungOne-Bold', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.infobox__text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
    opacity: 0.9;
}

.infobox__button {
    display: inline-block;
    background: #1428A0;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-family: 'SamsungOne-Bold', sans-serif;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.infobox__button:hover {
    background: #0f1e7a;
}

.infobox__note {
    margin: 1.75rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.infobox__note svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.7;
}