/* === СТИЛІ ДЛЯ "PAYSAFECARD CASINO" === */

/* БАЗОВІ СТИЛІ СТОРІНКИ */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #e0f7fa; /* Світлий бірюзовий фон */
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

/* ШАПКА (HEADER) */
.header {
    background: linear-gradient(90deg, #00796b 0%, #004d40 100%);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Лого */
.header .logo {
    display: flex;
    margin-left: 1000px;
}

.header .logo__img {
    width: 70px;
    height: auto;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}

/* Навігація */
.header__nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 60px;
}

.header__nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.header__nav ul li a:hover {
    color: #ffeb3b;
}

/* ГОЛОВНИЙ КОНТЕНТ (MAIN) */
main {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    margin-top: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

h1, h2 {
    color: #00796b;
    margin-top: 0;
}

p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* СПИСКИ */
ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #004d40;
    font-weight: bold;
}

/* ПІДВАЛ (FOOTER) */
footer {
    background-color: #00796b;
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

footer .responsible-links {
    margin-top: 12px;
}

footer .responsible-links a {
    text-decoration: none;
    color: #ffeb3b;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .responsible-links a:hover {
    color: #ffffff;
}

/* ЛОГО В ПІДВАЛІ */
.footer .logo {
    max-width: 200px;
    margin: 0 auto 20px;
}

.footer .logo__img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }
    .header .logo {
        margin-bottom: 10px;
        justify-content: center;
    }
    .header__nav ul {
        flex-direction: column;
        gap: 10px;
    }
}