body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #020202;
    background-color: #000000;
    background-image: url('images/casino-background.jpg');
    z-index: 1;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
.content h1 {
    color: #ffffff;
}

.content h2 {
    color: #ffffff;
}
.content h3 {
    color: #53eb60;
    text-align: left; 
    font-size: 32px;
}
.content p {
    color: #ffffff;
    text-align: left;
}
.content ul {
    list-style: none;
    padding: 0;
}

.content li {
    color: #ffffff;
    text-align: left;
    position: relative;
    padding-left: 25px; 
}

.content li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content li a {
    color: #00FF7F;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}


.content li a:hover {
    color: #5eff00; 
    text-shadow: 0px 0px 10px #5eff00; 
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3d9b31;
    color: #fff;
    padding: 5px;
    margin-right: 20px;
    font-size: 16px;
    padding: 10px 20px;
    flex: 1;
    
}

header h1 {
    margin: 0;
}


nav {
    display: flex;
    justify-content: space-between;
    background-color: #3d9b31;
    padding: 10px 20px;
    align-items: center;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.menu-toggle .bar {
    background-color: #fff;
    height: 4px;
    width: 100%;
    border-radius: 2px;
}


nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}


nav a:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
    outline: 2px solid #fff;
}


@media (max-width: 900px) {
    .menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #3d9b31;
        padding: 0 10px;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 1;
    }

    .menu.show {
        display: flex;
        max-height: 300px;
        z-index: 1;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        transition: all 0.3s ease;
    }

    nav a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }
}


.content {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(37, 37, 37, 0.8);
    border-radius: 8px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
}


.content.RG {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1;
}

.content p {
    line-height: 1.6;
}

.offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to left, rgba(138, 53, 53, 0.6), rgba(0, 0, 0, 0.8)), 
                url('https://t3.ftcdn.net/jpg/05/37/18/50/360_F_537185019_yf6Gnlq8AMQkOQmOtCgErO1vJM3Hu2xc.jpg') no-repeat center/cover;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s forwards;
    z-index: 1;
    color: white;
}

@media (max-width: 768px) {
    .offer {
        flex-direction: column;
        text-align: center;
    }
}

.offer h3, .offer ul li {
    color: rgb(255, 255, 255);
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.offer img {
    max-width: 80px;
    margin-right: 15px;
}

.offer .details {
    flex: 1;
    margin-left: 20px;
    text-align: left;
}

.offer .details h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.offer .details ul {
    list-style: none;
    padding: 0;
}

.offer .details ul li {
    font-size: 14px;
}

.cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.button-75 {
    align-items: center;
    background-image: linear-gradient(135deg, #21e621 40%, #a8dd2c);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: "Codec cold",sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    letter-spacing: .4px;
    line-height: 1;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 3px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-75:active {
    outline: 0;
  }
  
  .button-75:hover {
    outline: 0;
  }
  
  .button-75 span {
    transition: all 200ms;
  }
  
  .button-75:hover span {
    transform: scale(.9);
    opacity: .75;
  }
  
  @media screen and (max-width: 991px) {
    .button-75 {
      font-size: 15px;
      height: 50px;
    }
  
    .button-75 span {
      line-height: 50px;
    }
  }
  
  .cta a {
    transition: transform 0.3s ease;
}

.cta a:hover {
    transform: scale(1.05);
}

.cta a:active {
    transform: scale(0.95);
}

.payment-types {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 10px; 
}

.primary-list-item-payment-methods img {
    margin-right: 5px;
}
/* Footer */
footer {
    text-align: center;
    background-color: #3d9b31;
    color: white;
    padding: 10px;
}