/* style/blog-choosing-the-best-casino-games.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-color: #EA7C07;
    --background-color: #121212; /* Body background from shared.css */
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --card-bg-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-blog-choosing-the-best-casino-games {
    color: var(--text-color-light); /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
}

.page-blog-choosing-the-best-casino-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-choosing-the-best-casino-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
    background-color: #0a0a0a; /* Slightly darker than body for contrast */
}

.page-blog-choosing-the-best-casino-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-choosing-the-best-casino-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-choosing-the-best-casino-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 30px 20px;
    color: var(--text-color-light);
    z-index: 1; /* Ensure text is above any potential background layers */
}

.page-blog-choosing-the-best-casino-games__main-title {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-best-casino-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-blog-choosing-the-best-casino-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-choosing-the-best-casino-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-choosing-the-best-casino-games__btn-primary:hover {
    background-color: #1e8dc7; /* Slightly darker primary */
    transform: translateY(-2px);
}

.page-blog-choosing-the-best-casino-games__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
}

.page-blog-choosing-the-best-casino-games__introduction,
.page-blog-choosing-the-best-casino-games__game-types-section,
.page-blog-choosing-the-best-casino-games__why-choose-us,
.page-blog-choosing-the-best-casino-games__conclusion {
    padding: 60px 0;
}

.page-blog-choosing-the-best-casino-games__dark-bg {
    background-color: var(--background-color);
    color: var(--text-color-light);
}

.page-blog-choosing-the-best-casino-games__light-bg {
    background-color: var(--card-bg-light);
    color: var(--text-color-dark);
}

.page-blog-choosing-the-best-casino-games__text-block {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-choosing-the-best-casino-games__factors-section,
.page-blog-choosing-the-best-casino-games__tips-section,
.page-blog-choosing-the-best-casino-games__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter than body for contrast */
    color: var(--text-color-light);
}

.page-blog-choosing-the-best-casino-games__grid,
.page-blog-choosing-the-best-casino-games__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-choosing-the-best-casino-games__card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-choosing-the-best-casino-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-choosing-the-best-casino-games__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Dark background cards */
.page-blog-choosing-the-best-casino-games__dark-bg .page-blog-choosing-the-best-casino-games__card {
    background-color: var(--card-bg-dark);
    color: var(--text-color-light);
}

.page-blog-choosing-choosing-the-best-casino-games__dark-bg .page-blog-choosing-the-best-casino-games__card-title {
    color: var(--secondary-color);
}

/* Light background cards */
.page-blog-choosing-the-best-casino-games__light-bg .page-blog-choosing-the-best-casino-games__card {
    background-color: var(--card-bg-light);
    color: var(--text-color-dark);
}

.page-blog-choosing-the-best-casino-games__light-bg .page-blog-choosing-the-best-casino-games__card-title {
    color: var(--primary-color);
}

.page-blog-choosing-the-best-casino-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-choosing-the-best-casino-games__faq-list {
    margin-top: 40px;
}

.page-blog-choosing-the-best-casino-games__faq-item {
    background-color: var(--card-bg-dark);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-choosing-the-best-casino-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-choosing-the-best-casino-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-choosing-the-best-casino-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-choosing-the-best-casino-games__faq-item[open] .page-blog-choosing-the-best-casino-games__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-choosing-the-best-casino-games__faq-answer {
    padding: 20px;
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.page-blog-choosing-the-best-casino-games__faq-answer p {
    margin: 0;
}

.page-blog-choosing-the-best-casino-games__link-inline {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-choosing-the-best-casino-games__link-inline:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-choosing-the-best-casino-games__main-title {
        font-size: 2.5em;
    }

    .page-blog-choosing-the-best-casino-games__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog-choosing-the-best-casino-games__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-choosing-the-best-casino-games__hero-content {
        padding: 20px 15px;
    }

    .page-blog-choosing-the-best-casino-games__main-title {
        font-size: 2em;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-choosing-the-best-casino-games__hero-description {
        font-size: 1em;
    }

    .page-blog-choosing-the-best-casino-games__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .page-blog-choosing-the-best-casino-games__introduction,
    .page-blog-choosing-the-best-casino-games__factors-section,
    .page-blog-choosing-the-best-casino-games__game-types-section,
    .page-blog-choosing-the-best-casino-games__tips-section,
    .page-blog-choosing-the-best-casino-games__why-choose-us,
    .page-blog-choosing-the-best-casino-games__faq-section,
    .page-blog-choosing-the-best-casino-games__conclusion {
        padding: 40px 0;
    }

    .page-blog-choosing-the-best-casino-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-choosing-the-best-casino-games__grid,
    .page-blog-choosing-the-best-casino-games__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-choosing-the-best-casino-games__card {
        padding: 20px;
    }

    .page-blog-choosing-the-best-casino-games__card-title {
        font-size: 1.2em;
    }

    .page-blog-choosing-the-best-casino-games__text-block {
        font-size: 0.95em;
    }

    /* Mobile image responsiveness */
    .page-blog-choosing-the-best-casino-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile button responsiveness */
    .page-blog-choosing-the-best-casino-games__cta-button,
    .page-blog-choosing-the-best-casino-games__btn-primary,
    .page-blog-choosing-the-best-casino-games__btn-secondary,
    .page-blog-choosing-the-best-casino-games a[class*="button"],
    .page-blog-choosing-the-best-casino-games a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
      text-align: center;
    }
    
    .page-blog-choosing-the-best-casino-games__cta-buttons,
    .page-blog-choosing-the-best-casino-games__button-group,
    .page-blog-choosing-the-best-casino-games__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
      display: flex;
      flex-direction: column; /* Ensure vertical stacking for multiple buttons */
    }

    .page-blog-choosing-the-best-casino-games__hero-section {
        padding-top: 10px !important;
    }
    .page-blog-choosing-the-best-casino-games__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
    }
}

@media (max-width: 480px) {
    .page-blog-choosing-the-best-casino-games__main-title {
        font-size: 1.8em;
    }

    .page-blog-choosing-the-best-casino-games__section-title {
        font-size: 1.3em;
    }

    .page-blog-choosing-the-best-casino-games__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-choosing-the-best-casino-games__faq-answer {
        padding: 15px;
    }
}