.container-casino {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    overflow: hidden;
    margin-top: 20px;
}

.main-casino {
    background: #fff;
    padding: 20px; 
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.casino-left {
    width: 30%; 
    padding: 20px;
    text-align: center;
    border-right: 2px solid #ddd; 
}

.casino-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-content {
    margin-top: 20px;
    text-align: left;
}

.image-content h3 {
    font-size: 1.2em;
    color: #333;
}

.image-content h2 {
    font-size: 2em;
    color: #2ecc71;
}

.image-content p {
    font-size: 1em;
    color: #333;
}

.image-content ul {
    list-style-type: none;
    padding: 0;
}

.image-content ul li {
    padding: 5px 0;
    font-size: 1em;
    color: #333;
}

.casino-right {
    width: 70%; 
    padding: 20px;
}

.section-title {
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

ul {
    padding: 0;
}

ul li {
    list-style-type: none;
    padding: 5px 0;
    font-size: 1em;
    color: #333;
    display: flex;
    align-items: center;
}

.icon-check {
    width: 20px;
    height: 20px;
    background-color: green; 
    border-radius: 50%;
    margin-right: 10px; 
    display: inline-block;
    position: relative;
}

.icon-check::before {
    content: '\2714';
    font-size: 16px;
    color: white; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

.highlight {
    background-color: #ffeb3b;
    font-weight: bold;
}

.contact {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.contact p {
    margin: 0;
}

@media (max-width: 768px) {
    .casino-left{
        border: none;
    }
    .main-casino {
        flex-direction: column; 
        padding: 10px; 
    }

    .casino-left, .casino-right {
        width: 100%; 
        padding: 10px;
    }

    .casino-left img {
        width: 100%;
       
        margin: 0 auto;
    }

    .image-content h2 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.3em;
    }

    ul li {
        padding: 3px 0;
    }
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
   padding: 20px;
}

.gold-btn {
    background-color: #D4AF37; /* Gold color */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.gold-btn:hover {
    background-color: #b38e29; /* Darker gold on hover */
    transform: scale(1.05); /* Slight scale-up effect */
}
