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

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

.page-gambling-guides__hero {
    background: linear-gradient(135deg, #0A2463 0%, #06173d 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-guides__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,darkblue]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gambling-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-guides__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #f0f0f0;
}

.page-gambling-guides__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

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

.page-gambling-guides__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-gambling-guides__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gambling-guides__highlight {
    color: #E3B505;
}

.page-gambling-guides__keyword {
    font-weight: bold;
    color: #0A2463;
}

.page-gambling-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-gambling-guides__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
}

.page-gambling-guides__btn--primary:hover {
    background-color: #fcc20a;
    transform: translateY(-3px);
}

.page-gambling-guides__btn--secondary {
    background-color: #0A2463;
    color: #E3B505;
    border: 2px solid #E3B505;
    margin-left: 15px;
}

.page-gambling-guides__btn--secondary:hover {
    background-color: #1a3b7d;
    transform: translateY(-3px);
}

.page-gambling-guides__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-gambling-guides__link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

.page-gambling-guides__link:hover {
    text-decoration: underline;
    color: #E3B505;
}

.page-gambling-guides__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-gambling-guides__list li {
    margin-bottom: 10px;
}

.page-gambling-guides__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-gambling-guides__ordered-list li {
    margin-bottom: 10px;
}

.page-gambling-guides__image {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-guides__image--full-width {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-guides__image--left {
    float: left;
    margin-right: 30px;
    width: 45%;
}

.page-gambling-guides__image--right {
    float: right;
    margin-left: 30px;
    width: 45%;
}

.page-gambling-guides__image--center {
    display: block;
    margin: 30px auto;
}

.page-gambling-guides__image--half-width {
    width: calc(50% - 15px);
    display: inline-block;
    vertical-align: top;
}

.page-gambling-guides__image--half-width:first-of-type {
    margin-right: 30px;
}

.page-gambling-guides__how-to, .page-gambling-guides__games-strategy {
    overflow: hidden;
}

.page-gambling-guides__tip {
    background-color: #fff3cd;
    border-left: 5px solid #E3B505;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 5px;
    color: #856404;
}

.page-gambling-guides__accordion {
    margin-top: 40px;
}

.page-gambling-guides__accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-gambling-guides__accordion-header {
    background-color: #0A2463;
    color: #E3B505;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-gambling-guides__accordion-header:hover {
    background-color: #1a3b7d;
}

.page-gambling-guides__accordion-content {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-gambling-guides__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}

.page-gambling-guides__accordion-item.active .page-gambling-guides__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-gambling-guides__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A2463;
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.5s ease-out;
}

.page-gambling-guides__floating-ad.show {
    transform: translateX(0);
}

.page-gambling-guides__floating-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-gambling-guides__floating-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
}

.page-gambling-guides__close-ad {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8em;
    cursor: pointer;
    margin-left: 15px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.page-gambling-guides__close-ad:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-guides__hero-title {
        font-size: 2.8em;
    }

    .page-gambling-guides__hero-subtitle {
        font-size: 1.3em;
    }

    .page-gambling-guides__section-title {
        font-size: 2em;
    }

    .page-gambling-guides__sub-title {
        font-size: 1.5em;
    }

    .page-gambling-guides__image--left, .page-gambling-guides__image--right,
    .page-gambling-guides__image--half-width {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .page-gambling-guides__image--half-width:first-of-type {
        margin-right: 0;
    }

    .page-gambling-guides__btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-gambling-guides__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-gambling-guides__floating-ad {
        flex-direction: column;
        align-items: flex-start;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .page-gambling-guides__floating-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .page-gambling-guides__floating-text {
        font-size: 1em;
    }

    .page-gambling-guides__close-ad {
        position: absolute;
        top: 5px;
        right: 10px;
        margin-left: 0;
    }

    .page-gambling-guides__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .page-gambling-guides__hero {
        padding: 80px 0 60px;
    }

    .page-gambling-guides__hero-title {
        font-size: 2.2em;
    }

    .page-gambling-guides__hero-subtitle {
        font-size: 1.1em;
    }

    .page-gambling-guides__section-title {
        font-size: 1.8em;
    }

    .page-gambling-guides__sub-title {
        font-size: 1.3em;
    }

    .page-gambling-guides__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-gambling-guides__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gambling-guides__btn--secondary {
        display: block;
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }

    .page-gambling-guides__hero .page-gambling-guides__btn--primary {
        margin-bottom: 15px;
    }

    .page-gambling-guides__hero .page-gambling-guides__btn--secondary {
        margin-bottom: 15px;
    }

    .page-gambling-guides__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-gambling-guides__floating-ad {
        padding: 10px;
    }

    .page-gambling-guides__floating-text {
        font-size: 0.9em;
    }

    .page-gambling-guides__close-ad {
        font-size: 1.5em;
    }
}