/* style/resources-mobile-gaming-advantages.css */
.page-resources-mobile-gaming-advantages {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    line-height: 1.6;
    background-color: #0F1A2D; /* A slightly lighter shade of main color for overall background */
}

.page-resources-mobile-gaming-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-mobile-gaming-advantages__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%); /* Gradient from main color to a darker shade */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-mobile-gaming-advantages__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.page-resources-mobile-gaming-advantages__hero > div {
    position: relative;
    z-index: 1;
}

.page-resources-mobile-gaming-advantages__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mobile-gaming-advantages__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-resources-mobile-gaming-advantages__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-resources-mobile-gaming-advantages__button--primary {
    background-color: #FFD700; /* Auxiliary color for primary button */
    color: #1A2B4C; /* Main color for text on primary button */
}

.page-resources-mobile-gaming-advantages__button--primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-resources-mobile-gaming-advantages__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color for secondary button text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-resources-mobile-gaming-advantages__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
}

.page-resources-mobile-gaming-advantages__section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Main color for sections */
    color: #E0E0E0;
}

.page-resources-mobile-gaming-advantages__section--dark {
    background-color: #0F1A2D; /* Darker shade for alternating sections */
}

.page-resources-mobile-gaming-advantages__heading {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for section headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-mobile-gaming-advantages__sub-heading {
    font-size: 1.8em;
    color: #FFFFFF; /* White for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-mobile-gaming-advantages__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-mobile-gaming-advantages__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-resources-mobile-gaming-advantages__text-content {
    flex: 1;
}

.page-resources-mobile-gaming-advantages__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-mobile-gaming-advantages__text-content ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.page-resources-mobile-gaming-advantages__text-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.1em;
}

.page-resources-mobile-gaming-advantages__text-content ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-resources-mobile-gaming-advantages__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-resources-mobile-gaming-advantages__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-mobile-gaming-advantages__cta {
    background-color: #FFD700; /* Auxiliary color for CTA background */
    color: #1A2B4C; /* Main color for text on CTA background */
    padding: 80px 0;
    text-align: center;
}

.page-resources-mobile-gaming-advantages__cta-heading {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A2B4C; /* Main color for CTA heading */
    font-weight: bold;
}

.page-resources-mobile-gaming-advantages__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button {
    margin: 0 10px;
}

.page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button--primary {
    background-color: #1A2B4C; /* Main color for CTA primary button */
    color: #FFD700;
}

.page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button--primary:hover {
    background-color: #0F1A2D;
    color: #FFD700;
}

.page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button--secondary {
    background-color: transparent;
    color: #1A2B4C;
    border: 2px solid #1A2B4C;
}

.page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button--secondary:hover {
    background-color: #1A2B4C;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-mobile-gaming-advantages__title {
        font-size: 2.8em;
    }
    .page-resources-mobile-gaming-advantages__heading {
        font-size: 2em;
    }
    .page-resources-mobile-gaming-advantages__cta-heading {
        font-size: 2.5em;
    }
    .page-resources-mobile-gaming-advantages__hero-image {
        width: 80%;
        max-width: 600px;
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .page-resources-mobile-gaming-advantages__content-grid {
        flex-direction: column;
    }
    .page-resources-mobile-gaming-advantages__content-grid--reverse {
        flex-direction: column;
    }
    .page-resources-mobile-gaming-advantages__title {
        font-size: 2.2em;
    }
    .page-resources-mobile-gaming-advantages__subtitle {
        font-size: 1.1em;
    }
    .page-resources-mobile-gaming-advantages__heading {
        font-size: 1.8em;
    }
    .page-resources-mobile-gaming-advantages__sub-heading {
        font-size: 1.5em;
    }
    .page-resources-mobile-gaming-advantages__cta-heading {
        font-size: 2em;
    }
    .page-resources-mobile-gaming-advantages__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-mobile-gaming-advantages__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-resources-mobile-gaming-advantages__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-resources-mobile-gaming-advantages__cta-buttons .page-resources-mobile-gaming-advantages__button {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
    .page-resources-mobile-gaming-advantages__hero-image {
        width: 90%;
        max-width: 500px;
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .page-resources-mobile-gaming-advantages__title {
        font-size: 1.8em;
    }
    .page-resources-mobile-gaming-advantages__heading {
        font-size: 1.5em;
    }
    .page-resources-mobile-gaming-advantages__cta-heading {
        font-size: 1.8em;
    }
    .page-resources-mobile-gaming-advantages__section,
    .page-resources-mobile-gaming-advantages__hero,
    .page-resources-mobile-gaming-advantages__cta {
        padding: 40px 0;
    }
}