:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

/* Base styles for the page content */
.page-blog-how-to-choose-online-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light backgrounds */
    background: #f8f8f8; /* A very light background, assuming body is light or unknown */
}

/* Ensure text on dark sections is white */
.page-blog-how-to-choose-online-casino__dark-bg {
    background: var(--background-color); /* #0D0E12 */
    color: var(--text-main); /* #FFF3E6 */
}

.page-blog-how-to-choose-online-casino__light-bg {
    background: #ffffff;
    color: #333333;
}

.page-blog-how-to-choose-online-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-online-casino__section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-blog-how-to-choose-online-casino__dark-bg .page-blog-how-to-choose-online-casino__section-title {
    color: var(--secondary-color);
}

/* Hero Section */
.page-blog-how-to-choose-online-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as per instructions */
    background: linear-gradient(180deg, var(--background-color) 0%, #1a1a1a 100%);
    color: var(--text-main);
}

.page-blog-how-to-choose-online-casino__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Important for flex child */
}

.page-blog-how-to-choose-online-casino__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-online-casino__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-online-casino__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-blog-how-to-choose-online-casino__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 20px;
    /* Use clamp for responsive font-size, avoiding large fixed values */
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example: 40px to 56px */
}

.page-blog-how-to-choose-online-casino__intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-blog-how-to-choose-online-casino__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-online-casino__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-online-casino__cta-button--inline {
    margin-top: 40px;
}

.page-blog-how-to-choose-online-casino__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Content Sections */
.page-blog-how-to-choose-online-casino__content-section {
    padding: 80px 0;
}

.page-blog-how-to-choose-online-casino__content-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Feature Grid */
.page-blog-how-to-choose-online-casino__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-online-casino__feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-how-to-choose-online-casino__dark-bg .page-blog-how-to-choose-online-casino__feature-card {
    background: var(--card-bg); /* #17191F */
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-online-casino__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-online-casino__feature-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-choose-online-casino__feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-choose-online-casino__dark-bg .page-blog-how-to-choose-online-casino__feature-title {
    color: var(--secondary-color);
}

/* Warning List */
.page-blog-how-to-choose-online-casino__warning-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-how-to-choose-online-casino__warning-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}

.page-blog-how-to-choose-online-casino__warning-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-blog-how-to-choose-online-casino__warning-item p {
    font-size: 15px;
    color: #e0e0e0;
}

/* Why Choose Us Section */
.page-blog-how-to-choose-online-casino__why-choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-online-casino__why-choose-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-blog-how-to-choose-online-casino__why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-online-casino__why-choose-item img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-choose-online-casino__why-choose-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-choose-online-casino__why-choose-item p {
    font-size: 15px;
    color: #555555;
}

/* CTA Wrapper */
.page-blog-how-to-choose-online-casino__cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

/* Conclusion Section */
.page-blog-how-to-choose-online-casino__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

.page-blog-how-to-choose-online-casino__conclusion-section p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--text-main);
}

/* FAQ Section */
.page-blog-how-to-choose-online-casino__faq-section {
    padding: 80px 0;
}

.page-blog-how-to-choose-online-casino__faq-list {
    margin-top: 40px;
}

details.page-blog-how-to-choose-online-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-blog-how-to-choose-online-casino__faq-item summary.page-blog-how-to-choose-online-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-how-to-choose-online-casino__faq-item summary.page-blog-how-to-choose-online-casino__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-choose-online-casino__faq-item summary.page-blog-how-to-choose-online-casino__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-how-to-choose-online-casino__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333; /* Ensure contrast */
}
.page-blog-how-to-choose-online-casino__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color); /* Use primary color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-choose-online-casino__faq-item .page-blog-how-to-choose-online-casino__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555; /* Ensure contrast */
}

/* Responsive design */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-online-casino__feature-grid,
    .page-blog-how-to-choose-online-casino__why-choose-us {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-blog-how-to-choose-online-casino__hero-image img,
    .page-blog-how-to-choose-online-casino__feature-card img,
    .page-blog-how-to-choose-online-casino__why-choose-item img {
        height: auto; /* Allow height to adjust */
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-online-casino__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-how-to-choose-online-casino__hero-image img {
        border-radius: 4px;
    }
    .page-blog-how-to-choose-online-casino__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem); /* Adjust for smaller screens */
    }
    .page-blog-how-to-choose-online-casino__intro-text {
        font-size: 16px;
    }
    .page-blog-how-to-choose-online-casino__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-how-to-choose-online-casino__cta-button--inline,
    .page-blog-how-to-choose-online-casino__cta-button--large {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-choose-online-casino__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-blog-how-to-choose-online-casino__content-section {
        padding: 50px 0;
    }

    .page-blog-how-to-choose-online-casino__container {
        padding: 0 15px;
    }

    /* Images */
    .page-blog-how-to-choose-online-casino img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-how-to-choose-online-casino__feature-card img,
    .page-blog-how-to-choose-online-casino__why-choose-item img {
        height: auto;
        min-height: 200px; /* Ensure minimum size */
    }

    .page-blog-how-to-choose-online-casino__feature-card,
    .page-blog-how-to-choose-online-casino__why-choose-item {
        padding: 20px;
    }

    .page-blog-how-to-choose-online-casino__feature-title,
    .page-blog-how-to-choose-online-casino__why-choose-title {
        font-size: 20px;
    }

    .page-blog-how-to-choose-online-casino__warning-item {
        padding: 20px;
    }
    .page-blog-how-to-choose-online-casino__warning-title {
        font-size: 18px;
    }

    details.page-blog-how-to-choose-online-casino__faq-item summary.page-blog-how-to-choose-online-casino__faq-question { padding: 15px; }
    .page-blog-how-to-choose-online-casino__faq-qtext { font-size: 15px; }
    details.page-blog-how-to-choose-online-casino__faq-item .page-blog-how-to-choose-online-casino__faq-answer { padding: 0 15px 15px; }

    /* Button container for responsiveness */
    .page-blog-how-to-choose-online-casino__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure all images in content area are at least 200px wide */
.page-blog-how-to-choose-online-casino__content-section img {
    min-width: 200px;
    min-height: 200px;
}