/* Gaming Services CSS */

.gaming-services {
    padding: 60px 20px;
    background: var(--background-color); /* Keeps your original site background */
    text-align: center;
    max-width: 100%; /* Ensure the section spans the full width of the page */
    margin: 0 auto; /* Center the section on the page */
}

.gaming-services .container {
    max-width: 100%; /* Allow full-width container */
    padding: 0 2px; /* Add padding for spacing */
}


.gaming-services .section-header h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: var(--light-gray); /* Light neutral color for consistency */
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 1rem;
    text-transform: uppercase;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(182, 5, 5, 0.2);
}

/* Tab Content */
.tab-content {
    width: 100%; /* Ensure it spans full width */
    margin: 0 auto;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-panel {
    display: none; /* Hide all panels by default */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-panel.active {
    display: block; /* Show active panel */
    opacity: 1;
    transform: translateY(0);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 468px) {
    .gaming-services .section-header h2 {
        font-size: 2rem;
    }

    .tab-buttons {
        gap: 10px;
    }

    .tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 15px;
    }

    .back-button {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

