/* style/game-reviews-live-casino.css */

.page-game-reviews-live-casino {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0d123d; /* Darker variant of main color for overall background */
}

.page-game-reviews-live-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-live-casino__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-live-casino__section:nth-child(even) {
    background-color: #1A237E;
}

.page-game-reviews-live-casino__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews-live-casino__section-description {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-game-reviews-live-casino__hero-section {
    background: linear-gradient(135deg, #1A237E, #0d123d);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-game-reviews-live-casino__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:live_casino_background,abstract_light,gaming_elements]'); /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews-live-casino__hero-section .page-game-reviews-live-casino__container {
    position: relative;
    z-index: 1;
}

.page-game-reviews-live-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: 700;
    line-height: 1.2;
}

.page-game-reviews-live-casino__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-game-reviews-live-casino__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-game-reviews-live-casino__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-game-reviews-live-casino__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-reviews-live-casino__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-game-reviews-live-casino__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
}

/* Content Flex Layout */
.page-game-reviews-live-casino__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-game-reviews-live-casino__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-live-casino__text-content {
    flex: 1;
}

.page-game-reviews-live-casino__text-content p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-game-reviews-live-casino__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-reviews-live-casino__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-game-reviews-live-casino__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-live-casino__feature-item {
    background-color: #1A237E; /* Main color for card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-live-casino__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-live-casino__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-game-reviews-live-casino__feature-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

.page-game-reviews-live-casino__feature-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Providers Grid */
.page-game-reviews-live-casino__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-game-reviews-live-casino__provider-card {
    background-color: #0d123d; /* Darker background for provider cards */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-game-reviews-live-casino__provider-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews-live-casino__provider-card p {
    color: #b0b0b0;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Guide Steps */
.page-game-reviews-live-casino__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-live-casino__step-item {
    background-color: #1A237E;
    padding: 30px;
    border-radius: 10px;
    width: calc(33% - 20px);
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.page-game-reviews-live-casino__step-number {
    background-color: #FFD700;
    color: #1A237E;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px auto; /* Adjust position */
    border: 3px solid #0d123d;
}

.page-game-reviews-live-casino__step-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-live-casino__step-item p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* Security List */
.page-game-reviews-live-casino__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-game-reviews-live-casino__security-list li {
    font-size: 1.1em;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.page-game-reviews-live-casino__icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Simple icon placeholders for demonstration */
.page-game-reviews-live-casino__icon--shield::before { content: '🛡️'; }
.page-game-reviews-live-casino__icon--license::before { content: '✅'; }
.page-game-reviews-live-casino__icon--fairplay::before { content: '⚖️'; }
.page-game-reviews-live-casino__icon--support::before { content: '📞'; }

.page-game-reviews-live-casino__security-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-game-reviews-live-casino__faq-item {
    background-color: #1A237E;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-live-casino__faq-question {
    font-size: 1.25em;
    color: #FFD700;
    padding: 18px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-game-reviews-live-casino__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-reviews-live-casino__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-reviews-live-casino__faq-answer {
    font-size: 1.05em;
    color: #c0c0c0;
    padding: 0 25px 20px 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-reviews-live-casino__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* CTA Section */
.page-game-reviews-live-casino__cta {
    background-color: #0d123d;
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-live-casino__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-live-casino__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-live-casino__section-title {
        font-size: 2em;
    }
    .page-game-reviews-live-casino__content-flex,
    .page-game-reviews-live-casino__content-flex--reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-game-reviews-live-casino__text-content, .page-game-reviews-live-casino__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-game-reviews-live-casino__image {
        max-width: 80%;
    }
    .page-game-reviews-live-casino__step-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-game-reviews-live-casino__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-live-casino__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews-live-casino__section {
        padding: 40px 0;
    }
    .page-game-reviews-live-casino__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-live-casino__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-live-casino__grid, .page-game-reviews-live-casino__provider-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-live-casino__step-item {
        width: 100%;
        min-width: unset;
    }
    .page-game-reviews-live-casino__security-list li {
        font-size: 1em;
    }
    .page-game-reviews-live-casino__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-game-reviews-live-casino__faq-question::after {
        right: 20px;
    }
    .page-game-reviews-live-casino__faq-answer {
        padding: 0 20px 15px 20px;
    }
}