.casinoExperienceSection {
    background-color: #34292D; 
    padding: 80px 90px; 
    text-align: center;
    color: #fff;
    min-height: 60vh; 
}
@media (min-width: 569px) and (max-width: 1024px) {
    .casinoExperienceSection {
        padding: 60px 40px; 
    }
}

@media (max-width: 568px) {
    .casinoExperienceSection {
        padding: 40px 16px; 
    }
}

.casinoExperienceSection .container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.title {
    text-transform: uppercase;
    text-align: left;
    color: #E45D50; 
    margin-bottom: 20px;
    max-width: 800px; 
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    opacity: 1; 
    transform: translateY(0); 
    transition: all 0.6s ease;
    width: 100%; 
    font-family: 'Bungee Inline', sans-serif; 
}

.title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 568px) {
    .title {
        font-size: 2rem;
        text-align: center;
        margin: 0 auto 20px;
    }
}

.imageWrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.imageWrapper img {
    width: 100%; 
    height: auto;
    border-radius: 8px;
    opacity: 1; 
    transform: scale(1); 
    transition: all 0.6s ease;
}

.imageWrapper img.animate-in {
    opacity: 1;
    transform: scale(1);
}

.description {
 
    margin: 0 auto 20px auto; 

    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 1; 
    transform: translateY(0); 
    transition: all 0.6s ease 0.2s;
    display: block; 
}

.description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 568px) {
    .description {
        text-align: center;
        font-size: 1rem;
    }
}

.ctaWrapper {
    display: flex;
    justify-content: flex-end; 

}

@media (max-width: 568px) {
    .ctaWrapper {
        justify-content: center;
    }
}

.ctaButton {
    display: inline-block;
    background: transparent;
    border: 2px solid #E45D50; 
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    opacity: 1; 
    transform: translateY(0); 
}

.ctaButton.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.ctaButton:hover {
    background: #E45D50;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(228, 93, 80, 0.3);
}

.ctaButton:active {
    transform: translateY(0);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
.imageWrapper img[src=""] {
    background: #333;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageWrapper img[src=""]:after {
    content: 'Loading...';
    color: #fff;
}
