/* style/reviews-guides-v9bet-slot-games-recommendation.css */

/* Variables */
:root {
    --v9bet-primary-color: #007bff; /* Deep Blue */
    --v9bet-secondary-color: #ffc107; /* Bright Gold/Orange */
    --v9bet-text-dark: #212529; /* Dark text for light backgrounds */
    --v9bet-text-light: #ffffff; /* Light text for dark backgrounds */
    --v9bet-bg-light: #f8f9fa;
    --v9bet-bg-dark: #343a40;
    --v9bet-border-color: #e9ecef;
}

.page-reviews-guides-v9bet-slot-games-recommendation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--v9bet-text-dark);
    background-color: var(--v9bet-bg-light);
}

.page-reviews-guides-v9bet-slot-games-recommendation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__section {
    padding: 60px 0;
    text-align: center;
}

.page-reviews-guides-v9bet-slot-games-recommendation__section:nth-of-type(even) {
    background-color: #e9f5ff; /* Lighter blue variant for contrast */
}

.page-reviews-guides-v9bet-slot-games-recommendation__section-title {
    font-size: 2.5em;
    color: var(--v9bet-primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--v9bet-secondary-color);
    border-radius: 2px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-section {
    background: linear-gradient(135deg, var(--v9bet-primary-color) 0%, #0056b3 100%); /* Darker primary for depth */
    color: var(--v9bet-text-light);
    padding: 100px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-content {
    z-index: 10;
    max-width: 900px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-button {
    display: inline-block;
    background-color: var(--v9bet-secondary-color);
    color: var(--v9bet-text-dark); /* Ensure contrast */
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-button:hover {
    background-color: #e0a800; /* Darker gold */
    transform: translateY(-3px);
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-button--secondary {
    background-color: var(--v9bet-primary-color);
    color: var(--v9bet-text-light);
    margin-left: 20px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-button--secondary:hover {
    background-color: #0056b3; /* Darker blue */
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    overflow: hidden;
}

.page-reviews-guides-v9bet-slot-games-recommendation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-reviews-guides-v9bet-slot-games-recommendation__intro p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

.page-reviews-guides-v9bet-slot-games-recommendation__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__feature-item {
    background-color: var(--v9bet-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-reviews-guides-v9bet-slot-games-recommendation__feature-item:hover {
    transform: translateY(-10px);
}

.page-reviews-guides-v9bet-slot-games-recommendation__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-reviews-guides-v9bet-slot-games-recommendation__feature-item h3 {
    font-size: 1.4em;
    color: var(--v9bet-primary-color);
    margin-bottom: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-recommendations p {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-card {
    display: flex;
    flex-direction: column;
    background-color: var(--v9bet-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    text-align: left;
}

@media (min-width: 768px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__game-card {
        flex-direction: row;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__game-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__game-image {
        width: 40%;
        height: auto;
    }
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info {
    padding: 30px;
    flex-grow: 1;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info h3 {
    font-size: 1.8em;
    color: var(--v9bet-primary-color);
    margin-bottom: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info p {
    font-size: 1em;
    color: var(--v9bet-text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info h4 {
    font-size: 1.2em;
    color: var(--v9bet-secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info ul li {
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__game-info ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9em;
}

.page-reviews-guides-v9bet-slot-games-recommendation__play-button {
    background-color: var(--v9bet-secondary-color);
    color: var(--v9bet-text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__play-button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-reviews-guides-v9bet-slot-games-recommendation__tips ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-reviews-guides-v9bet-slot-games-recommendation__tip-list li {
    background-color: var(--v9bet-text-light);
    border-left: 5px solid var(--v9bet-primary-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-reviews-guides-v9bet-slot-games-recommendation__tip-list li strong {
    color: var(--v9bet-primary-color);
}

.page-reviews-guides-v9bet-slot-games-recommendation__offers p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

.page-reviews-guides-v9bet-slot-games-recommendation__offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--v9bet-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    text-align: left;
}

@media (min-width: 768px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-card {
        flex-direction: row;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-card:nth-child(odd) {
        flex-direction: row-reverse;
    }
}

.page-reviews-guides-v9bet-slot-games-recommendation__offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-image {
        width: 40%;
        height: auto;
    }
}

.page-reviews-guides-v9bet-slot-games-recommendation__offer-details {
    padding: 30px;
    flex-grow: 1;
}

.page-reviews-guides-v9bet-slot-games-recommendation__offer-details h3 {
    font-size: 1.8em;
    color: var(--v9bet-primary-color);
    margin-bottom: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__offer-details p {
    font-size: 1em;
    color: var(--v9bet-text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-reviews-guides-v9bet-slot-games-recommendation__registration p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

.page-reviews-guides-v9bet-slot-games-recommendation__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__step-item {
    background-color: var(--v9bet-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-reviews-guides-v9bet-slot-games-recommendation__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--v9bet-secondary-color);
    color: var(--v9bet-text-dark);
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-reviews-guides-v9bet-slot-games-recommendation__step-item h3 {
    font-size: 1.5em;
    color: var(--v9bet-primary-color);
    margin-bottom: 15px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__cta-group {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__faq-item {
    background-color: var(--v9bet-text-light);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    overflow: hidden;
}

.page-reviews-guides-v9bet-slot-games-recommendation__faq-question {
    font-size: 1.2em;
    color: var(--v9bet-primary-color);
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.page-reviews-guides-v9bet-slot-games-recommendation__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-reviews-guides-v9bet-slot-games-recommendation__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-reviews-guides-v9bet-slot-games-recommendation__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__faq-answer .page-reviews-guides-v9bet-slot-games-recommendation__cta-button {
    margin-top: 15px;
    margin-left: 0;
}

.page-reviews-guides-v9bet-slot-games-recommendation__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: var(--v9bet-secondary-color);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-reviews-guides-v9bet-slot-games-recommendation__floating-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--v9bet-text-dark);
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.1em;
}

.page-reviews-guides-v9bet-slot-games-recommendation__floating-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.page-reviews-guides-v9bet-slot-games-recommendation__floating-cta:hover {
    transform: translateY(-5px);
}

.highlight {
    color: var(--v9bet-secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-title {
        font-size: 3em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-subtitle {
        font-size: 1.3em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-title {
        font-size: 2.5em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-subtitle {
        font-size: 1.1em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__section {
        padding: 40px 0;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__features-grid,
    .page-reviews-guides-v9bet-slot-games-recommendation__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__game-card,
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-card {
        flex-direction: column;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__game-card:nth-child(even) {
        flex-direction: column;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__game-image,
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-image {
        width: 100%;
        height: 200px;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__game-info,
    .page-reviews-guides-v9bet-slot-games-recommendation__offer-details {
        padding: 20px;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__cta-button--secondary {
        margin-left: 0;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__floating-cta {
        bottom: 15px;
        right: 15px;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__floating-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__floating-icon {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-title {
        font-size: 2em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__hero-subtitle {
        font-size: 1em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-reviews-guides-v9bet-slot-games-recommendation__section-title {
        font-size: 1.8em;
    }
}