.game-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 85px;
    width: 100%;
}

/* Base Container Styling */
.game-section .container {
    position: relative;
    max-width: 1300px;
    width: 100%;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Overridden by Elementor */
    border-radius: 20px; /* Overridden by Elementor */
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Intro Animation class */
.game-section .container.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-section .gameCanvas {
    display: block;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Info Text Styling */
.game-section .info-text {
    position: absolute;
    top: 60px;
    left: 60px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Book Call Link Button */
.game-section .book-call-link {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.game-section .book-call-link a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: underline;
}

.game-section .book-call-link a:hover {
    text-decoration: none;
}

.game-section .book-call-link .link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Overlays and Status */
.game-section .status-container {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-section .board {
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.game-section .timer-text {
    color: #ef4444;
}

.game-section .game-btn {
    position: absolute;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
    z-index: 10;
    padding: 14px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    background: var(--primary-color);
    color: #fff;
    border: none;
    transition: opacity 0.3s ease;
}

.game-section .game-start-btn {
    background: transparent;
}