.experience-gaming-container {
    width: 100%;
    position: relative;
    background-color: #1a1a2e;
    overflow: hidden;
    padding: 60px 0;
}

.experience-gaming-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.experience-gaming-content {
    flex: 1;
    max-width: 600px;
}

.experience-gaming-text {
    margin-bottom: 36px;
    border-bottom: 1px solid #3333336e;
}

.gaming-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gaming-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gaming-description {
    font-size: 16px !important;
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 500px;
}

.gaming-info-boxes {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}

.gaming-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gaming-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #8b5cf6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.gaming-info-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gaming-button-wrapper {
    margin-top: 40px;
}

.gaming-button {
    display: inline-block;
    background-color: #8b5cf6;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gaming-button:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.experience-gaming-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.gaming-main-image {
    position: relative;
    left: 12%;
    /* width: 100%; */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience-gaming-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }
    
    .experience-gaming-content,
    .experience-gaming-image {
        width: 100% !important;
        max-width: 100%;
    }
    .gaming-info-boxes {
        flex-direction: column !important;
    }
    .gaming-main-image {
        left: 0 !important;
        width: 100%;
    }
    .gaming-title,
    .gaming-subtitle {
        font-size: 36px;
    }
    
    .gaming-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .gaming-info-boxes {
        align-items: center;
    }
    
    .gaming-info-item {
        justify-content: center;
    }
    
    .experience-gaming-image {
        min-height: 300px;
    }
}
@media (max-width:557px) {
    .experience-gaming-image img {
        position: relative;
        top: -14rem;
    }
    .gaming-info-boxes {
        position: relative;
        top: 84vw;
        z-index: 1;
    }
    .gaming-button-wrapper {
        position: relative;
        top: 84vw;
        z-index: 1;
    }
}
@media (max-width: 480px) {
    .experience-gaming-container {
        padding: 40px 0;
    }
    
    .gaming-title,
    .gaming-subtitle {
        font-size: 28px;
    }
    
    .gaming-description {
        font-size: 13px;
    }
    
    .gaming-info-text {
        font-size: 14px;
    }
    
    .gaming-button {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .experience-gaming-image {
        min-height: 250px;
    }
}

/* Animation effects */
.experience-gaming-container {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gaming-info-item {
    opacity: 1;
}

.gaming-info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.gaming-info-item:nth-child(2) {
    animation-delay: 0.4s;
}

.gaming-info-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gaming-main-image {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Styles pour empêcher le scroll quand le popup est ouvert */
body.popup-open {
    overflow: hidden;
}

/* Animation d'entrée pour les conteneurs */
.experience-gaming-container.animate-in .gaming-title {
    animation: slideInLeft 0.6s ease-out;
}

.experience-gaming-container.animate-in .gaming-subtitle {
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.experience-gaming-container.animate-in .gaming-description {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.experience-gaming-container.animate-in .gaming-info-item {
    animation: slideInLeft 0.6s ease-out both;
}

.experience-gaming-container.animate-in .gaming-button {
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.experience-gaming-container.animate-in .gaming-main-image {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

/* Styles additionnels pour le popup de contact */
#contact-form {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999999;
    margin: 0 auto;
}

#contact-form.loading {
    display: none !important;
}

/* Forcer l'affichage quand ouvert via JS */
#contact-form:not(.loading) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: popupFadeIn 0.3s ease-out;
}

body.popup-open {
    overflow: hidden;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}