/* style/game-guides-roulette-tips.css */

/* Biến CSS */
:root {
    --page-game-guides-roulette-tips-primary-color: #0A2239;
    --page-game-guides-roulette-tips-secondary-color: #FFD700;
    --page-game-guides-roulette-tips-text-light: #F8F8F8;
    --page-game-guides-roulette-tips-text-dark: #1A1A1A;
    --page-game-guides-roulette-tips-background-dark: #0A2239;
    --page-game-guides-roulette-tips-background-light: #E0E0E0;
    --page-game-guides-roulette-tips-accent-color: #0028ff; /* Derived from auxiliary color complement */
    --page-game-guides-roulette-tips-hover-color: #e6c200;
}

.page-game-guides-roulette-tips {
    font-family: 'Arial', sans-serif;
    color: var(--page-game-guides-roulette-tips-text-dark);
    line-height: 1.6;
    background-color: var(--page-game-guides-roulette-tips-background-light);
}

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

/* Hero Section */
.page-game-guides-roulette-tips__hero {
    background: linear-gradient(135deg, var(--page-game-guides-roulette-tips-primary-color) 0%, #3a5c7f 100%);
    color: var(--page-game-guides-roulette-tips-text-light);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-game-guides-roulette-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-game-guides-roulette-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-game-guides-roulette-tips-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-roulette-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-roulette-tips__hero-btn {
    display: inline-block;
    background-color: var(--page-game-guides-roulette-tips-secondary-color);
    color: var(--page-game-guides-roulette-tips-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-tips__hero-btn:hover {
    background-color: var(--page-game-guides-roulette-tips-hover-color);
    transform: translateY(-3px);
}

.page-game-guides-roulette-tips__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.3;
}

.page-game-guides-roulette-tips__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

/* General Section Styling */
.page-game-guides-roulette-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-guides-roulette-tips__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-roulette-tips__section-title {
    font-size: 2.5em;
    color: var(--page-game-guides-roulette-tips-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides-roulette-tips__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-game-guides-roulette-tips-secondary-color);
    border-radius: 2px;
}

.page-game-guides-roulette-tips__sub-title {
    font-size: 1.8em;
    color: var(--page-game-guides-roulette-tips-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-game-guides-roulette-tips-secondary-color);
    padding-left: 15px;
}

.page-game-guides-roulette-tips__text-callout {
    background-color: #f0f8ff;
    border-left: 5px solid var(--page-game-guides-roulette-tips-accent-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--page-game-guides-roulette-tips-primary-color);
    border-radius: 8px;
}

/* Buttons */
.page-game-guides-roulette-tips__btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    background-color: var(--page-game-guides-roulette-tips-primary-color);
    color: var(--page-game-guides-roulette-tips-text-light);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-game-guides-roulette-tips__btn:hover {
    background-color: #061a2b;
}

.page-game-guides-roulette-tips__btn.btn--primary {
    background-color: var(--page-game-guides-roulette-tips-secondary-color);
    color: var(--page-game-guides-roulette-tips-primary-color);
}

.page-game-guides-roulette-tips__btn.btn--primary:hover {
    background-color: var(--page-game-guides-roulette-tips-hover-color);
}

/* Card Grid */
.page-game-guides-roulette-tips__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-guides-roulette-tips__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-roulette-tips__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-roulette-tips__card-title {
    font-size: 1.5em;
    color: var(--page-game-guides-roulette-tips-primary-color);
    margin-bottom: 15px;
}

/* Lists */
.page-game-guides-roulette-tips__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-game-guides-roulette-tips__list li {
    margin-bottom: 10px;
}

.page-game-guides-roulette-tips__list--columns {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-guides-roulette-tips__list--columns li {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 40px;
}

.page-game-guides-roulette-tips__list--columns li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--page-game-guides-roulette-tips-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

/* Images */
.page-game-guides-roulette-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 40px 0;
}

.page-game-guides-roulette-tips__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-roulette-tips__image--right {
    float: right;
    margin-left: 30px;
    width: 40%;
    min-width: 300px;
}

.page-game-guides-roulette-tips__image--full-width {
    width: 100%;
    margin: 40px 0;
}

/* Feature Grid */
.page-game-guides-roulette-tips__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-game-guides-roulette-tips__feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-guides-roulette-tips__feature-card:hover {
    transform: translateY(-5px);
}

.page-game-guides-roulette-tips__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-game-guides-roulette-tips__feature-title {
    font-size: 1.4em;
    color: var(--page-game-guides-roulette-tips-primary-color);
    margin-bottom: 10px;
}

/* FAQ Accordion */
.page-game-guides-roulette-tips__accordion {
    margin-top: 30px;
}

.page-game-guides-roulette-tips__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-guides-roulette-tips__accordion-header {
    font-size: 1.3em;
    color: var(--page-game-guides-roulette-tips-primary-color);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-game-guides-roulette-tips__accordion-header:hover {
    background-color: #f0f0f0;
}

.page-game-guides-roulette-tips__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-game-guides-roulette-tips__accordion-item.active .page-game-guides-roulette-tips__accordion-header::after {
    transform: rotate(45deg);
}

.page-game-guides-roulette-tips__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
}

.page-game-guides-roulette-tips__accordion-item.active .page-game-guides-roulette-tips__accordion-content {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-game-guides-roulette-tips__accordion-content p {
    margin-bottom: 15px;
}

.page-game-guides-roulette-tips__accordion-btn {
    display: inline-block;
    background-color: var(--page-game-guides-roulette-tips-secondary-color);
    color: var(--page-game-guides-roulette-tips-primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-game-guides-roulette-tips__accordion-btn:hover {
    background-color: var(--page-game-guides-roulette-tips-hover-color);
}

/* Call to Action Section */
.page-game-guides-roulette-tips__cta {
    background: linear-gradient(90deg, var(--page-game-guides-roulette-tips-primary-color) 0%, #1c3d5e 100%);
    color: var(--page-game-guides-roulette-tips-text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-game-guides-roulette-tips__cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-game-guides-roulette-tips__cta-title {
    font-size: 2.8em;
    color: var(--page-game-guides-roulette-tips-secondary-color);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-guides-roulette-tips__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-roulette-tips__cta-btn {
    font-size: 1.3em;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-tips__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-roulette-tips__hero-title {
        font-size: 2.8em;
    }

    .page-game-guides-roulette-tips__section-title {
        font-size: 2em;
    }

    .page-game-guides-roulette-tips__sub-title {
        font-size: 1.6em;
    }

    .page-game-guides-roulette-tips__image--right {
        float: none;
        margin: 30px auto;
        width: 80%;
    }

    .page-game-guides-roulette-tips__list--columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-guides-roulette-tips__hero {
        padding: 60px 20px;
    }

    .page-game-guides-roulette-tips__hero-title {
        font-size: 2.2em;
    }

    .page-game-guides-roulette-tips__hero-description {
        font-size: 1em;
    }

    .page-game-guides-roulette-tips__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-guides-roulette-tips__section {
        padding: 40px 0;
    }

    .page-game-guides-roulette-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-guides-roulette-tips__sub-title {
        font-size: 1.4em;
    }

    .page-game-guides-roulette-tips__card-grid {
        grid-template-columns: 1fr;
    }

    .page-game-guides-roulette-tips__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-game-guides-roulette-tips__cta {
        padding: 60px 20px;
    }

    .page-game-guides-roulette-tips__cta-title {
        font-size: 2em;
    }

    .page-game-guides-roulette-tips__cta-description {
        font-size: 1em;
    }

    .page-game-guides-roulette-tips__cta-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .page-game-guides-roulette-tips__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-game-guides-roulette-tips__accordion-item.active .page-game-guides-roulette-tips__accordion-content {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-roulette-tips__hero-title {
        font-size: 1.8em;
    }

    .page-game-guides-roulette-tips__section-title {
        font-size: 1.5em;
    }

    .page-game-guides-roulette-tips__sub-title {
        font-size: 1.2em;
    }

    .page-game-guides-roulette-tips__list--columns li {
        padding-left: 30px;
    }

    .page-game-guides-roulette-tips__list--columns li::before {
        left: 10px;
    }

    .page-game-guides-roulette-tips__cta-title {
        font-size: 1.8em;
    }
}