/* style/game-guides-roulette.css */
.page-game-guides-roulette {
    font-family: 'Arial', sans-serif;
    color: #E5E5E5; /* Light text for dark background */
    background-color: #1A1A1A; /* Main background color */
}

.page-game-guides-roulette__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 70%, #FFD700 100%); /* Gradient with brand colors */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-game-guides-roulette__hero-content {
    z-index: 10;
    max-width: 900px;
}

.page-game-guides-roulette__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Auxiliary color for title */
}

.page-game-guides-roulette__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0.9;
}

.page-game-guides-roulette__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-game-guides-roulette__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%);
}

.page-game-guides-roulette__section {
    padding: 60px 0;
    background-color: #1A1A1A;
}

.page-game-guides-roulette__section:nth-of-type(even) {
    background-color: #222222;
}

.page-game-guides-roulette__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-roulette__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-guides-roulette__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides-roulette__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-game-guides-roulette__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E5E5E5;
}

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

.page-game-guides-roulette__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-guides-roulette__grid-item {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-roulette__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides-roulette__grid-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-game-guides-roulette__grid-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #CCCCCC;
}

.page-game-guides-roulette__image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-game-guides-roulette__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-guides-roulette__list li {
    background-color: #2A2A2A;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E5E5E5;
}

.page-game-guides-roulette__list li strong {
    color: #FFD700;
}

.page-game-guides-roulette__list--strategy li {
    text-align: left;
}

.page-game-guides-roulette__list--strategy h4 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-guides-roulette__list--strategy p {
    color: #CCCCCC;
}

.page-game-guides-roulette__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.page-game-guides-roulette__btn--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-game-guides-roulette__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-game-guides-roulette__btn--secondary {
    background-color: #333333;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-game-guides-roulette__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-roulette__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-game-guides-roulette__tip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(1.2);
}

.page-game-guides-roulette__tip-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-game-guides-roulette__tip-card p {
    color: #CCCCCC;
    font-size: 1em;
    line-height: 1.6;
}

.text-highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-roulette__hero-title {
        font-size: 3em;
    }
    .page-game-guides-roulette__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-roulette__section-title {
        font-size: 2.2em;
    }
    .page-game-guides-roulette__grid--two-cols {
        grid-template-columns: 1fr;
    }
    .page-game-guides-roulette__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-guides-roulette__hero {
        padding: 60px 15px;
    }
    .page-game-guides-roulette__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides-roulette__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-roulette__section {
        padding: 40px 0;
    }
    .page-game-guides-roulette__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-guides-roulette__sub-title {
        font-size: 1.5em;
    }
    .page-game-guides-roulette__text-block {
        font-size: 1em;
    }
    .page-game-guides-roulette__grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-roulette__grid-item {
        padding: 20px;
    }
    .page-game-guides-roulette__btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .page-game-guides-roulette__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-game-guides-roulette__btn--secondary {
        margin-left: 0;
    }
}