/* style/index-review-sinbet.css */
:root {
    --primary-color: #0A2239;
    --secondary-color: #FFD700;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --bg-light: #f1f3f5;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

.page-index-review-sinbet {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-light); /* Assuming body is dark from shared.css */
    background-color: var(--dark-bg-1); /* This will be overridden by shared.css */
}

/* HERO Section */
.page-index-review-sinbet__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 180px; /* Desktop: Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #2A4E6B);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-index-review-sinbet__hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-index-review-sinbet__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-index-review-sinbet__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-sinbet__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-index-review-sinbet__hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.page-index-review-sinbet__hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-sinbet__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-index-review-sinbet__cta-button:hover {
    background: linear-gradient(90deg, #FF8C42, #FF6B35);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-sinbet__cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-index-review-sinbet__cta-button-large:hover {
    background: linear-gradient(90deg, #8BC34A, #4CAF50);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-sinbet__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* General Section Styling */
.page-index-review-sinbet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-review-sinbet__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.page-index-review-sinbet__section-description {
    font-size: 18px;
    color: var(--text-color-light);
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px auto;
    line-height: 1.6;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Review Content Section */
.page-index-review-sinbet__review-content-section {
  padding: 60px 20px;
  background: var(--dark-bg-1); 
  color: var(--text-color-light);
}

.page-index-review-sinbet__review-content-container {
  max-width: 1100px; /* Adjusted width for review content */
  margin: 0 auto;
}

.page-index-review-sinbet__review-content-card {
  background: #1A344A; /* Slightly lighter dark background for card */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet__review-content-card h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-sinbet__review-content-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-index-review-sinbet__review-body {
  color: var(--text-color-light);
  line-height: 1.8;
}

.page-index-review-sinbet__review-body p {
  margin-bottom: 18px;
  font-size: 17px;
}

.page-index-review-sinbet__review-body a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-sinbet__review-body a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Intro Section */
.page-index-review-sinbet__intro-section {
    padding: 60px 20px;
    background-color: #122A40;
    color: var(--text-color-light);
}

.page-index-review-sinbet__intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-review-sinbet__intro-item {
    background: #1A344A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet__intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-review-sinbet__intro-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.page-index-review-sinbet__intro-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-sinbet__intro-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

/* Core Games Section */
.page-index-review-sinbet__core-games-section {
    padding: 60px 20px;
    background-color: var(--dark-bg-1);
    color: var(--text-color-light);
}

.page-index-review-sinbet__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-review-sinbet__game-category-card {
    background: #1A344A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet__game-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-review-sinbet__game-category-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.page-index-review-sinbet__game-category-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-sinbet__game-category-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-index-review-sinbet__btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-review-sinbet__btn-small:hover {
    background: linear-gradient(90deg, #FF8C42, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-review-sinbet__promotions-section {
    padding: 60px 20px;
    background-color: #122A40;
    color: var(--text-color-light);
}

.page-index-review-sinbet__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-review-sinbet__promo-card {
    background: #1A344A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-review-sinbet__promo-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.page-index-review-sinbet__promo-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-sinbet__promo-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-index-review-sinbet__btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-review-sinbet__btn-promo:hover {
    background: linear-gradient(90deg, #8BC34A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.page-index-review-sinbet__blog-section {
    padding: 60px 20px;
    background-color: var(--dark-bg-1);
    color: var(--text-color-light);
}

.page-index-review-sinbet__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-review-sinbet__blog-card {
    background: #1A344A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-sinbet__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-review-sinbet__blog-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-sinbet__blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
}

.page-index-review-sinbet__blog-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-review-sinbet__blog-card h3 a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-review-sinbet__blog-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-index-review-sinbet__btn-read-more {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-review-sinbet__btn-read-more:hover {
    background: linear-gradient(90deg, #FF8C42, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-index-review-sinbet__faq-section {
    padding: 60px 20px;
    background-color: #122A40;
    color: var(--text-color-light);
}

.page-index-review-sinbet__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-review-sinbet__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-sinbet__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 25px;
    opacity: 0;
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    background: #1A344A;
    border-radius: 0 0 8px 8px;
    color: #cccccc;
}

.page-index-review-sinbet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-color-light);
}

.page-index-review-sinbet__faq-question:hover {
    background: #1A344A;
    border-color: rgba(255, 255, 255, 0.2);
}

.page-index-review-sinbet__faq-question:active {
    background: #2A4E6B;
}

.page-index-review-sinbet__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--secondary-color);
}

.page-index-review-sinbet__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-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: 32px;
    height: 32px;
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-toggle {
    color: #FFD700;
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-index-review-sinbet__faq-answer p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-sinbet__faq-answer p a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-index-review-sinbet__hero-title {
        font-size: 38px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 17px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 32px;
    }
    .page-index-review-sinbet__review-content-card h2 {
        font-size: 28px;
    }
    .page-index-review-sinbet__review-content-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-index-review-sinbet__hero-section {
        padding-top: 160px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-sinbet__hero-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-index-review-sinbet__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        margin-top: 20px;
    }
    .page-index-review-sinbet__cta-button-large {
        padding: 14px 35px;
        font-size: 18px;
        margin-top: 25px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-index-review-sinbet__section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .page-index-review-sinbet__review-content-section {
        padding: 40px 15px;
    }
    .page-index-review-sinbet__review-content-card {
        padding: 30px 20px;
    }
    .page-index-review-sinbet__review-content-card h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .page-index-review-sinbet__review-content-card h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-index-review-sinbet__review-body p {
        font-size: 15px;
        line-height: 1.7;
    }

    .page-index-review-sinbet__intro-section, 
    .page-index-review-sinbet__core-games-section, 
    .page-index-review-sinbet__promotions-section, 
    .page-index-review-sinbet__blog-section, 
    .page-index-review-sinbet__faq-section {
        padding: 40px 15px;
    }

    .page-index-review-sinbet__intro-grid, 
    .page-index-review-sinbet__game-categories, 
    .page-index-review-sinbet__promo-grid, 
    .page-index-review-sinbet__blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-index-review-sinbet__intro-image, 
    .page-index-review-sinbet__game-category-image, 
    .page-index-review-sinbet__promo-image, 
    .page-index-review-sinbet__blog-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .page-index-review-sinbet__intro-item, 
    .page-index-review-sinbet__game-category-card, 
    .page-index-review-sinbet__promo-card, 
    .page-index-review-sinbet__blog-card {
        padding: 25px;
    }

    .page-index-review-sinbet__intro-item h3, 
    .page-index-review-sinbet__game-category-card h3, 
    .page-index-review-sinbet__promo-card h3 {
        font-size: 20px;
    }
    .page-index-review-sinbet__intro-item p, 
    .page-index-review-sinbet__game-category-card p, 
    .page-index-review-sinbet__promo-card p {
        font-size: 15px;
    }

    .page-index-review-sinbet__blog-card h3 {
        font-size: 18px;
    }

    .page-index-review-sinbet__faq-question {
        padding: 15px 20px;
    }
    .page-index-review-sinbet__faq-question h3 {
        font-size: 16px;
    }
    .page-index-review-sinbet__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-index-review-sinbet__faq-answer {
        padding: 0 20px;
    }
    .page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-answer {
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-index-review-sinbet__hero-title {
        font-size: 26px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 14px;
    }
    .page-index-review-sinbet__cta-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    .page-index-review-sinbet__cta-button-large {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 24px;
    }
    .page-index-review-sinbet__review-content-card h2 {
        font-size: 22px;
    }
    .page-index-review-sinbet__review-content-card h3 {
        font-size: 18px;
    }
    .page-index-review-sinbet__review-body p {
        font-size: 14px;
    }
    .page-index-review-sinbet__intro-item h3, 
    .page-index-review-sinbet__game-category-card h3, 
    .page-index-review-sinbet__promo-card h3 {
        font-size: 18px;
    }
    .page-index-review-sinbet__intro-item p, 
    .page-index-review-sinbet__game-category-card p, 
    .page-index-review-sinbet__promo-card p {
        font-size: 14px;
    }
    .page-index-review-sinbet__blog-card h3 {
        font-size: 16px;
    }
    .page-index-review-sinbet__blog-card p {
        font-size: 13px;
    }
    .page-index-review-sinbet__btn-small, 
    .page-index-review-sinbet__btn-promo, 
    .page-index-review-sinbet__btn-read-more {
        font-size: 13px;
        padding: 8px 18px;
    }
    .page-index-review-sinbet__faq-question h3 {
        font-size: 14px;
    }
    .page-index-review-sinbet__faq-toggle {
        font-size: 22px;
        width: 26px;
        height: 26px;
    }
}