* {
    box-sizing: border-box;
    transition: 0.6s ease all;
}

body {
    margin: 0;
    font-family: "Montserrat", serif;
    background: #1a0f29;
    color: #e8d5b5;
    background-image: linear-gradient(rgba(26, 15, 41, 0.97), rgba(26, 15, 41, 0.97)),
        url("../img/bg.png");
}

h1, h2, h3, h4 {
    font-family: "Montserrat", serif;
    text-transform: uppercase;
    color: #c9a45c;
    text-shadow: 0 0 10px rgba(201, 164, 92, 0.3);
}

.bg {
    background: linear-gradient(rgba(26, 15, 41, 0.8), rgba(26, 15, 41, 0.8)),
        url("../img/bg.png");
}

.navbar {
    background: rgba(26, 15, 41, 0.95);
    border-bottom: 1px solid #c9a45c;
}

.navbar a {
    color: #e8d5b5;
    font-family: "Montserrat", serif;
    letter-spacing: 1px;
}

.navbar a:hover {
    color: #c9a45c;
    text-shadow: 0 0 10px rgba(201, 164, 92, 0.5);
    opacity: 1;
}

.casino-item {
    background: rgba(40, 23, 60, 0.9);
    border: 1px solid #c9a45c;
    box-shadow: 0 0 20px rgba(201, 164, 92, 0.1);
    transition: 0.4s ease all;
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(201, 164, 92, 0.2);
}

.casino-item h4 {
    color: #c9a45c;
    font-size: 24px;
    letter-spacing: 2px;
}

.casino-item p {
    color: #e8d5b5;
    font-style: italic;
}

.btn {
    font-weight: bold;
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease all;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.4s ease all;
}

.btn:hover::before {
    left: 100%;
}

.btn-red {
    background: #6b1b1b;
    color: #e8d5b5;
    border: 1px solid #8b2626;
}

.btn-blue {
    background: #1b3a6b;
    color: #e8d5b5;
    border: 1px solid #264b8b;
}

.btn-green {
    background: #2d5a0f;
    color: #e8d5b5;
    border: 1px solid #376f14;
}

footer {
    background: rgba(40, 23, 60, 0.9);
    border: 1px solid #c9a45c;
    box-shadow: 0 0 20px rgba(201, 164, 92, 0.1);
}

.footer-age {
    background: rgba(26, 15, 41, 0.95);
    border-top: 1px solid #c9a45c;
}

.modal {
    background: #1a0f29;
    border: 1px solid #c9a45c;
    color: #e8d5b5;
}

.modal h2 {
    color: #c9a45c;
}

.modal button {
    background: #c9a45c;
    color: #1a0f29;
    border: none;
    transition: 0.4s ease all;
}

.modal button:hover {
    background: #b38d4a;
}

@media screen and (max-width: 830px) {
    .navbar-container .hamburger-lines .line {
        background: #c9a45c;
    }

    .navbar .menu-items {
        background: rgba(26, 15, 41, 0.98);
        border-right: 1px solid #c9a45c;
    }
}