/* style/game-guides-roulette.css */
:root {
    --primary-color: #DAA520; /* Gold */
    --secondary-color: #1E1E1E; /* Dark Black */
    --accent-color: #CC0000; /* Deep Red for highlights */
    --text-color-light: #f0f0f0;
    --text-color-dark: #333333;
    --bg-light-grey: #f1f3f5;
    --link-color: #0066cc;
    --link-hover-color: #004499;
}

.page-game-guides-roulette {
    /* Main content wrapper, will have light background for readability */
    background-color: var(--bg-light-grey);
    color: var(--text-color-dark);
}

.page-game-guides-roulette__top-spacing {
    /* Add top padding to account for fixed header */
    height: 120px; /* Default for desktop */
}

@media (max-width: 768px) {
    .page-game-guides-roulette__top-spacing {
        height: 100px; /* Adjusted for mobile */
    }
}

.page-game-guides-roulette__hero-content-section {
    background: linear-gradient(135deg, var(--secondary-color), #0d0d0d);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-color-light);
}

.page-game-guides-roulette__hero-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-game-guides-roulette__main-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-roulette__intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-game-guides-roulette__intro-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides-roulette__intro-text a:hover {
    text-decoration: underline;
}

.page-game-guides-roulette__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette__cta-button:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-roulette__section {
    padding: 60px 20px;
    background-color: var(--bg-light-grey);
    color: var(--text-color-dark);
}

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

.page-game-guides-roulette__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-guides-roulette__section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-guides-roulette__section p a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides-roulette__section p a:hover {
    text-decoration: underline;
    color: var(--link-hover-color);
}

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

.page-game-guides-roulette__card {
    background-color: #ffffff;
    border-radius: 12px;
    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__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-roulette__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides-roulette__card-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides-roulette__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-game-guides-roulette__list li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-color-dark);
}

.page-game-guides-roulette__list li strong {
    color: var(--primary-color);
}

.page-game-guides-roulette__strategies .page-game-guides-roulette__section-title,
.page-game-guides-roulette__expert-tips .page-game-guides-roulette__section-title,
.page-game-guides-roulette__choose-casino .page-game-guides-roulette__section-title,
.page-game-guides-roulette__faq .page-game-guides-roulette__section-title,
.page-game-guides-roulette__related-articles .page-game-guides-roulette__section-title {
    color: var(--primary-color);
}

.page-game-guides-roulette__strategy-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    text-align: justify;
}

.page-game-guides-roulette__strategy-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-game-guides-roulette__strategy-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-game-guides-roulette__strategy-item h4 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-guides-roulette__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    font-weight: bold;
}

.page-game-guides-roulette__cta-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-game-guides-roulette__cta-text a:hover {
    text-decoration: underline;
}

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

.page-game-guides-roulette__tip-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides-roulette__tip-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides-roulette__tip-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-game-guides-roulette__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides-roulette__feature-icon {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.page-game-guides-roulette__feature-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

/* FAQ Styles */
.page-game-guides-roulette__faq-list {
  margin-top: 30px;
}

.page-game-guides-roulette__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-game-guides-roulette__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-game-guides-roulette__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-game-guides-roulette__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-game-guides-roulette__faq-question:active {
  background: #eeeeee;
}

.page-game-guides-roulette__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--secondary-color);
}

.page-game-guides-roulette__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

/* Related Articles */
.page-game-guides-roulette__related-articles {
    background-color: var(--bg-light-grey);
    padding-bottom: 80px;
}

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

.page-game-guides-roulette__article-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides-roulette__article-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides-roulette__article-card h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

.page-game-guides-roulette__article-summary {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666666;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

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

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

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

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

    .page-game-guides-roulette__strategy-item h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-roulette__hero-content-section {
        padding: 40px 15px;
    }

    .page-game-guides-roulette__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-game-guides-roulette__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-game-guides-roulette__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-game-guides-roulette__section {
        padding: 40px 15px;
    }

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

    .page-game-guides-roulette__section p {
        font-size: 0.95em;
    }

    .page-game-guides-roulette__card,
    .page-game-guides-roulette__strategy-item,
    .page-game-guides-roulette__tip-card,
    .page-game-guides-roulette__feature-item,
    .page-game-guides-roulette__article-card {
        padding: 20px;
    }

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

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

    .page-game-guides-roulette__strategy-item h4 {
        font-size: 1.1em;
    }

    .page-game-guides-roulette__tip-title,
    .page-game-guides-roulette__feature-title {
        font-size: 1.2em;
    }

    .page-game-guides-roulette__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-game-guides-roulette__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-game-guides-roulette__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-game-guides-roulette__faq-answer {
        padding: 0 15px;
    }
    
    .page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-answer {
        padding: 15px !important;
    }

    .page-game-guides-roulette__article-image {
        height: 150px;
    }

    .page-game-guides-roulette__article-card h3 {
        font-size: 1.2em;
        margin: 15px 15px 8px 15px;
    }

    .page-game-guides-roulette__article-summary {
        font-size: 0.9em;
        padding: 0 15px 15px 15px;
    }
}

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

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

    .page-game-guides-roulette__cta-button {
        font-size: 0.9em;
        padding: 10px 25px;
    }
}