/* Casino-en-ligne-france.org inspired styles */

/* Body padding for fixed header */
body {
    padding-top: 68px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #000000;
    color: #ffffff;
    padding: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-color {
    background-color: #000000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.header__logo a {
    display: inline-block;
}

.header__logo img {
    max-width: 204px;
    height: auto;
}

.header__menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    align-items: center;
}

.header__menu-list li {
    margin: 0;
}

.header__menu-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    display: inline-block;
    transition: opacity 0.3s;
}

.header__menu-list a:hover {
    opacity: 0.7;
}

.header__btns {
    display: flex;
    align-items: center;
    gap: 13px;
}

.header__pass {
    background: linear-gradient(135deg, #ff0080 0%, #ff0000 100%);
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.header__pass:hover {
    transform: scale(1.05);
}

.pulse__btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 0, 128, 0); }
}

.header__mobile-menu {
    display: none;
    cursor: pointer;
}

.burger {
    display: block;
    width: 23px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}

.burger:before,
.burger:after {
    content: '';
    display: block;
    width: 19px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
}

.burger:before {
    top: -8px;
}

.burger:after {
    top: 10px;
}

/* Footer styles */
.footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 46px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.footer-color {
    background-color: #0f0f0f;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer__logo {
    text-align: center;
}

.footer__logo img {
    max-width: 196px;
    height: auto;
}

.footer__text {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 800px;
}

.footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__menu li {
    margin: 0;
}

.footer__menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__menu a:hover {
    color: #66b3ff;
}

.footer__bottom-imgs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
}

.footer__bottom-imgs li {
    margin: 0;
}

.footer__copyright {
    text-align: center;
    font-size: 9px;
    color: #999999;
    padding-top: 22px;
    border-top: 1px solid #333333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .header__logo img {
        max-width: 152px;
    }

    .header__menu {
        order: 3;
        width: 100%;
    }

    .header__menu-list {
        width: 100%;
        justify-content: center;
    }

    .header__pass {
        font-size: 8px;
        padding: 6px 20px;
    }

    .header__mobile-menu {
        display: block;
    }

    .footer__menu {
        flex-direction: column;
        gap: 10px;
    }
}
