/* style/betting-platforms.css */
.page-betting-platforms {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-betting-platforms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-platforms__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3f51b5 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-platforms__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.page-betting-platforms__hero-section .page-betting-platforms__container {
    position: relative;
    z-index: 1;
}

.page-betting-platforms__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-platforms__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-betting-platforms__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-platforms__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-betting-platforms__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-betting-platforms__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platforms__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-betting-platforms__button--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platforms__button--inline {
    background-color: #1A237E;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-betting-platforms__button--inline:hover {
    background-color: #FFD700;
    color: #1A237E;
}

.page-betting-platforms__button--small {
    padding: 10px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #1A237E;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-betting-platforms__button--small:hover {
    background-color: #FFD700;
    color: #1A237E;
}

.page-betting-platforms__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-betting-platforms__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-betting-platforms__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-betting-platforms__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-betting-platforms__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-betting-platforms__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-betting-platforms__text-content {
    flex: 1;
}

.page-betting-platforms__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-betting-platforms__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-betting-platforms__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-betting-platforms__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-platforms__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(26, 35, 126, 0.3));
}

.page-betting-platforms__feature-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-betting-platforms__feature-item p {
    font-size: 0.95em;
    color: #666;
}

.page-betting-platforms__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-betting-platforms__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-betting-platforms__game-item {
    background-color: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-platforms__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-betting-platforms__game-title {
    font-size: 1.3em;
    color: #1A237E;
    margin: 20px 15px 10px 15px;
}

.page-betting-platforms__game-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px 15px;
}

.page-betting-platforms__game-item .page-betting-platforms__button {
    margin-bottom: 20px;
}

.page-betting-platforms__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms__step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-betting-platforms__step-number {
    background-color: #FFD700;
    color: #1A237E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px auto;
    border: 3px solid #1A237E;
    box-shadow: 0 0 0 5px #fdfdfd;
}

.page-betting-platforms__step-item:first-child .page-betting-platforms__step-number {
    margin-top: 0; /* Adjust for first item to align with section padding */
}

.page-betting-platforms__step-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-betting-platforms__step-item p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-betting-platforms__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms__promo-item {
    background-color: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-platforms__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-betting-platforms__promo-title {
    font-size: 1.3em;
    color: #1A237E;
    margin: 20px 15px 10px 15px;
}

.page-betting-platforms__promo-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px 15px;
}

.page-betting-platforms__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms__detail-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-platforms__detail-title {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-betting-platforms__detail-title a {
    color: #1A237E;
    text-decoration: none;
}

.page-betting-platforms__detail-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-betting-platforms__detail-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-betting-platforms__responsible-gambling {
    background-color: #1A237E;
    color: #e0e0e0;
}

.page-betting-platforms__responsible-gambling .page-betting-platforms__section-title {
    color: #FFD700;
}

.page-betting-platforms__responsible-gambling .page-betting-platforms__section-title::after {
    background-color: #FFD700;
}

.page-betting-platforms__responsible-gambling .page-betting-platforms__section-intro,
.page-betting-platforms__responsible-gambling .page-betting-platforms__section-outro {
    color: #ccc;
}

.page-betting-platforms__list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-betting-platforms__list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #f0f0f0;
}

.page-betting-platforms__list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-betting-platforms__list li strong {
    color: #FFD700;
}

.page-betting-platforms__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-platforms__faq-question {
    font-size: 1.2em;
    color: #1A237E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-betting-platforms__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-betting-platforms__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-betting-platforms__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-betting-platforms__faq-answer.active {
    max-height: 200px; /* Arbitrary max-height, adjust as needed */
    padding: 10px;
}

.page-betting-platforms__faq-answer a {
    color: #1A237E;
    text-decoration: underline;
}

.page-betting-platforms__faq-answer a:hover {
    color: #FFD700;
}

.page-betting-platforms__final-cta {
    background-color: #FFD700;
    color: #1A237E;
    text-align: center;
    padding: 80px 0;
}

.page-betting-platforms__final-cta .page-betting-platforms__section-title {
    color: #1A237E;
}

.page-betting-platforms__final-cta .page-betting-platforms__section-title::after {
    background-color: #1A237E;
}

.page-betting-platforms__final-cta .page-betting-platforms__section-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: -20px auto 40px auto;
    color: #333;
}

.page-betting-platforms__final-cta .page-betting-platforms__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-platforms__final-cta .page-betting-platforms__button--primary {
    background-color: #1A237E;
    color: #FFD700;
    border-color: #1A237E;
}

.page-betting-platforms__final-cta .page-betting-platforms__button--primary:hover {
    background-color: #0f154e;
    border-color: #0f154e;
}

.page-betting-platforms__final-cta .page-betting-platforms__button--secondary {
    background-color: transparent;
    color: #1A237E;
    border-color: #1A237E;
}

.page-betting-platforms__final-cta .page-betting-platforms__button--secondary:hover {
    background-color: #1A237E;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-platforms__hero-title {
        font-size: 2.8em;
    }

    .page-betting-platforms__section-title {
        font-size: 2em;
    }

    .page-betting-platforms__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-betting-platforms__image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-betting-platforms__hero-title {
        font-size: 2.2em;
    }

    .page-betting-platforms__hero-description {
        font-size: 1.1em;
    }

    .page-betting-platforms__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-platforms__section {
        padding: 40px 0;
    }

    .page-betting-platforms__section-title {
        font-size: 1.8em;
    }

    .page-betting-platforms__section-intro {
        font-size: 1em;
    }

    .page-betting-platforms__features-grid, 
    .page-betting-platforms__game-grid, 
    .page-betting-platforms__step-by-step, 
    .page-betting-platforms__promo-grid, 
    .page-betting-platforms__detail-list {
        grid-template-columns: 1fr;
    }

    .page-betting-platforms__step-number {
        margin-top: -35px;
    }

    .page-betting-platforms__list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-betting-platforms__list li::before {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-betting-platforms__hero-title {
        font-size: 1.8em;
    }

    .page-betting-platforms__hero-description {
        font-size: 0.95em;
    }

    .page-betting-platforms__button {
        width: 100%;
        max-width: 250px;
    }

    .page-betting-platforms__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-betting-platforms__section-title {
        font-size: 1.5em;
    }

    .page-betting-platforms__section-intro {
        font-size: 0.9em;
    }

    .page-betting-platforms__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}