/* Base styles for the page */
.page-blog-2024-top-casino-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    background-color: #f9f9f9; /* Light background for the main content area */
}

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

/* Hero Section */
.page-blog-2024-top-casino-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #f0f8ff; /* Light blue tint for hero background */
}

.page-blog-2024-top-casino-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-blog-2024-top-casino-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-blog-2024-top-casino-games__hero-content {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.page-blog-2024-top-casino-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-blog-2024-top-casino-games__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-2024-top-casino-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* General Section Styling */
.page-blog-2024-top-casino-games__section {
    padding: 60px 0;
}

.page-blog-2024-top-casino-games__section-title {
    font-size: 2.5rem;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-2024-top-casino-games__section-title--white {
    color: #ffffff;
}

.page-blog-2024-top-casino-games__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-2024-top-casino-games__text-block--white {
    color: #f0f0f0;
}

/* Buttons */
.page-blog-2024-top-casino-games__btn-primary,
.page-blog-2024-top-casino-games__btn-secondary,
.page-blog-2024-top-casino-games__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-2024-top-casino-games__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-blog-2024-top-casino-games__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-blog-2024-top-casino-games__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-2024-top-casino-games__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-blog-2024-top-casino-games__btn-tertiary {
    background-color: transparent;
    color: #26A9E0;
    border: 1px solid #26A9E0;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.page-blog-2024-top-casino-games__btn-tertiary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-blog-2024-top-casino-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Introduction Section */
.page-blog-2024-top-casino-games__introduction-section {
    background-color: #ffffff;
}

/* Games Showcase Section */
.page-blog-2024-top-casino-games__games-showcase-section {
    background-color: #26A9E0; /* Brand primary color as dark background */
    color: #ffffff;
}

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

.page-blog-2024-top-casino-games__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-2024-top-casino-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-2024-top-casino-games__game-card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-2024-top-casino-games__game-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: #333333; /* Dark text on white card background */
}

.page-blog-2024-top-casino-games__game-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-2024-top-casino-games__game-card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-blog-2024-top-casino-games__game-card-title a:hover {
    text-decoration: underline;
}

.page-blog-2024-top-casino-games__game-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Advantages Section */
.page-blog-2024-top-casino-games__advantages-section {
    background-color: #f0f8ff;
}

.page-blog-2024-top-casino-games__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-2024-top-casino-games__advantage-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-2024-top-casino-games__advantage-item:hover {
    transform: translateY(-5px);
}

.page-blog-2024-top-casino-games__advantage-title {
    font-size: 1.3rem;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Tips Section */
.page-blog-2024-top-casino-games__tips-section {
    background-color: #ffffff;
}

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

.page-blog-2024-top-casino-games__tip-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-2024-top-casino-games__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-2024-top-casino-games__tip-card-image {
    width: 100%;
    height: 200px; /* Fixed height for tips image */
    object-fit: cover;
    display: block;
}

.page-blog-2024-top-casino-games__tip-card-title {
    font-size: 1.4rem;
    color: #26A9E0;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.page-blog-2024-top-casino-games__tip-card-description {
    font-size: 1rem;
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-blog-2024-top-casino-games__faq-section {
    background-color: #f0f8ff; /* Light background for FAQ */
}

details.page-blog-2024-top-casino-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-blog-2024-top-casino-games__faq-item summary.page-blog-2024-top-casino-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-2024-top-casino-games__faq-item summary.page-blog-2024-top-casino-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-2024-top-casino-games__faq-item summary.page-blog-2024-top-casino-games__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-2024-top-casino-games__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-blog-2024-top-casino-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #26A9E0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-blog-2024-top-casino-games__faq-item .page-blog-2024-top-casino-games__faq-answer {
  padding: 0 25px 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  color: #555555;
}
.page-blog-2024-top-casino-games__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-blog-2024-top-casino-games__final-cta-section {
    background-color: #26A9E0;
    color: #ffffff;
    text-align: center;
}

.page-blog-2024-top-casino-games__cta-content {
    padding: 60px 20px;
}

/* Images Global Responsiveness */
.page-blog-2024-top-casino-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
    .page-blog-2024-top-casino-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-2024-top-casino-games__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO Section Mobile */
    .page-blog-2024-top-casino-games__hero-section {
        padding-top: 10px;
    }

    .page-blog-2024-top-casino-games__hero-image {
        object-fit: contain !important; /* Ensure image is fully visible */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio on mobile if it causes issues */
        height: auto !important; /* Allow height to adjust */
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .page-blog-2024-top-casino-games__hero-content {
        margin: 20px auto;
        padding: 0 15px;
    }

    .page-blog-2024-top-casino-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-2024-top-casino-games__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-2024-top-casino-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-2024-top-casino-games__btn-primary,
    .page-blog-2024-top-casino-games__btn-secondary,
    .page-blog-2024-top-casino-games__btn-tertiary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* General Section Mobile */
    .page-blog-2024-top-casino-games__section {
        padding: 40px 0;
    }

    .page-blog-2024-top-casino-games__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-blog-2024-top-casino-games__text-block {
        font-size: 1rem;
        padding: 0 15px;
        text-align: left; /* Adjust text alignment for mobile readability */
    }

    /* Games Showcase Mobile */
    .page-blog-2024-top-casino-games__games-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px;
    }

    .page-blog-2024-top-casino-games__game-card-image {
        height: 180px; /* Slightly smaller height for mobile cards */
    }

    .page-blog-2024-top-casino-games__game-card-content {
        padding: 20px;
    }

    .page-blog-2024-top-casino-games__game-card-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .page-blog-2024-top-casino-games__game-card-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* Advantages Section Mobile */
    .page-blog-2024-top-casino-games__advantages-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px;
    }
}