/* style/game-reviews-live-casino-analysis.css */
.page-game-reviews-live-casino-analysis {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Primary dark blue background */
}

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

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

.page-game-reviews-live-casino-analysis__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-live-casino-analysis__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 500px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-live-casino-analysis__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="diagonal-stripe" patternUnits="userSpaceOnUse" width="10" height="10"><path d="M-1,1 l2,-2 M0,10 l10,-10 M9,11 l2,-2" stroke="%231b3e60" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23diagonal-stripe)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews-live-casino-analysis__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    padding: 20px;
}

.page-game-reviews-live-casino-analysis__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-game-reviews-live-casino-analysis__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.5;
}

.page-game-reviews-live-casino-analysis__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-game-reviews-live-casino-analysis__btn--primary {
    background-color: #FFD700; /* Gold for primary button */
    color: #0A2239; /* Dark blue for text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-live-casino-analysis__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-live-casino-analysis__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold for secondary button text */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-game-reviews-live-casino-analysis__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-live-casino-analysis__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #0A2239;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-game-reviews-live-casino-analysis__btn--small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
}

.page-game-reviews-live-casino-analysis__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
    background-color: #FFD700;
    color: #0A2239;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-game-reviews-live-casino-analysis__btn--large:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-game-reviews-live-casino-analysis__hero-image-wrapper {
    flex-shrink: 0;
    width: 500px;
    max-width: 100%;
    z-index: 1;
}

.page-game-reviews-live-casino-analysis__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.page-game-reviews-live-casino-analysis__section--intro p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-game-reviews-live-casino-analysis__section--intro strong {
    color: #FFD700;
}

.page-game-reviews-live-casino-analysis__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-live-casino-analysis__game-card {
    background-color: #1a3a5a; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-live-casino-analysis__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-live-casino-analysis__game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page-game-reviews-live-casino-analysis__game-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-live-casino-analysis__game-card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-reviews-live-casino-analysis__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-game-reviews-live-casino-analysis__feature-item {
    background-color: #1a3a5a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-game-reviews-live-casino-analysis__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-live-casino-analysis__feature-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #c0c0c0;
}

.page-game-reviews-live-casino-analysis__app-screenshot {
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
}

.page-game-reviews-live-casino-analysis__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-game-reviews-live-casino-analysis__steps li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 50px;
    font-size: 1.15em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-game-reviews-live-casino-analysis__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #FFD700;
    color: #0A2239;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-live-casino-analysis__steps li strong {
    color: #FFD700;
}

.page-game-reviews-live-casino-analysis__cta-box {
    background-color: #1a3a5a;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
}

.page-game-reviews-live-casino-analysis__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews-live-casino-analysis__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-game-reviews-live-casino-analysis__section--responsible ul {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    color: #e0e0e0;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-game-reviews-live-casino-analysis__section--responsible ul li {
    margin-bottom: 10px;
}

.page-game-reviews-live-casino-analysis__faq-item {
    background-color: #1a3a5a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-live-casino-analysis__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-reviews-live-casino-analysis__faq-answer {
    font-size: 1.05em;
    color: #c0c0c0;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-live-casino-analysis__hero {
        flex-direction: column;
        padding: 60px 0;
    }

    .page-game-reviews-live-casino-analysis__hero-content {
        text-align: center;
    }

    .page-game-reviews-live-casino-analysis__hero-actions {
        justify-content: center;
    }

    .page-game-reviews-live-casino-analysis__hero-title {
        font-size: 3em;
    }

    .page-game-reviews-live-casino-analysis__hero-subtitle {
        font-size: 1.3em;
    }

    .page-game-reviews-live-casino-analysis__hero-image-wrapper {
        width: 80%;
        margin-top: 40px;
    }

    .page-game-reviews-live-casino-analysis__section-title {
        font-size: 2.2em;
    }

    .page-game-reviews-live-casino-analysis__game-card-title {
        font-size: 1.6em;
    }

    .page-game-reviews-live-casino-analysis__feature-title {
        font-size: 1.6em;
    }

    .page-game-reviews-live-casino-analysis__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-live-casino-analysis__section {
        padding: 40px 0;
    }

    .page-game-reviews-live-casino-analysis__hero {
        padding: 50px 0;
    }

    .page-game-reviews-live-casino-analysis__hero-title {
        font-size: 2.5em;
    }

    .page-game-reviews-live-casino-analysis__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-reviews-live-casino-analysis__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-reviews-live-casino-analysis__btn {
        width: 100%;
        padding: 12px 25px;
    }

    .page-game-reviews-live-casino-analysis__section-title {
        font-size: 1.8em;
    }

    .page-game-reviews-live-casino-analysis__game-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-live-casino-analysis__features-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-live-casino-analysis__steps li {
        font-size: 1em;
        padding-left: 45px;
    }

    .page-game-reviews-live-casino-analysis__steps li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-game-reviews-live-casino-analysis__cta-title {
        font-size: 1.8em;
    }

    .page-game-reviews-live-casino-analysis__cta-description {
        font-size: 1em;
    }

    .page-game-reviews-live-casino-analysis__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-live-casino-analysis__hero-title {
        font-size: 2em;
    }

    .page-game-reviews-live-casino-analysis__hero-subtitle {
        font-size: 0.9em;
    }

    .page-game-reviews-live-casino-analysis__section-title {
        font-size: 1.5em;
    }

    .page-game-reviews-live-casino-analysis__game-card-title {
        font-size: 1.4em;
    }

    .page-game-reviews-live-casino-analysis__feature-title {
        font-size: 1.4em;
    }

    .page-game-reviews-live-casino-analysis__cta-title {
        font-size: 1.5em;
    }

    .page-game-reviews-live-casino-analysis__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}