:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-slot-games {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for light background */
    background-color: var(--page-bg); /* Body background from shared.css, this is for page content */
    line-height: 1.6;
}

.page-slot-games__section-spacing {
    padding: 60px 0;
}

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

.page-slot-games__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
}

.page-slot-games__section-title--light {
    color: #ffffff;
}

.page-slot-games__text-block {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__text-block--light {
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-slot-games__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, main offset handled by body in shared.css */
    background-color: var(--page-bg);
}

.page-slot-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-slot-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-main);
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-slot-games__hero-description {
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.page-slot-games__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-slot-games__cta-button--dark-bg {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
}

.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--card-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.page-slot-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary--dark-bg {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-slot-games__btn-secondary--dark-bg:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Intro Section */
.page-slot-games__intro-section .page-slot-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Types Section */
.page-slot-games__dark-bg {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-slot-games__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-slot-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__card--light-bg {
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games__card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Providers Section */
.page-slot-games__game-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    padding-bottom: 25px;
}

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

.page-slot-games__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-slot-games__game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    padding: 0 15px;
}

.page-slot-games__game-provider {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Features Section */
.page-slot-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__feature-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-slot-games__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-slot-games__feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Promotions Section */
.page-slot-games__promotion-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.page-slot-games__promotion-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-slot-games__promotion-content {
    width: 50%;
    padding: 30px;
    text-align: left;
}

.page-slot-games__promotion-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-slot-games__promotion-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-slot-games__promotion-list {
    list-style: disc inside;
    margin-bottom: 25px;
    padding-left: 0;
    font-size: 15px;
    color: var(--text-main);
}

.page-slot-games__promotion-list li {
    margin-bottom: 8px;
}

/* Guide Section */
.page-slot-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-slot-games__step-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-slot-games__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.page-slot-games__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Tips Section */
.page-slot-games__tips-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-slot-games__tips-list li {
    background-color: var(--card-bg);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    border-left: 5px solid var(--primary-color);
}

.page-slot-games__tip-highlight {
    color: var(--primary-color);
}

/* FAQ Section */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
details.page-slot-games__faq-item summary.page-slot-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-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: #f5f5f5;
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 12px 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Final CTA Section */
.page-slot-games__final-cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.page-slot-games__final-cta-container {
    padding: 60px 20px;
}

.page-slot-games__final-cta-container .page-slot-games__text-block--light {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__promotion-card {
        flex-direction: column;
    }
    .page-slot-games__promotion-image,
    .page-slot-games__promotion-content {
        width: 100%;
    }
    .page-slot-games__promotion-content {
        padding: 25px;
        text-align: center;
    }
    .page-slot-games__promotion-list {
        text-align: left;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    .page-slot-games__hero-description {
        font-size: 16px;
    }
    .page-slot-games__cta-button,
    .page-slot-games__btn-secondary {
        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-slot-games__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-slot-games__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-slot-games__section-spacing {
        padding: 40px 0;
    }
    .page-slot-games__text-block, .page-slot-games__text-block--light {
        font-size: 15px;
        padding: 0 10px;
    }
    .page-slot-games__card,
    .page-slot-games__game-card,
    .page-slot-games__feature-item,
    .page-slot-games__step-card {
        padding: 20px;
    }
    .page-slot-games__card-image,
    .page-slot-games__game-image,
    .page-slot-games__feature-icon,
    .page-slot-games__step-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-slot-games__promotion-title {
        font-size: 22px;
    }
    .page-slot-games__promotion-description,
    .page-slot-games__promotion-list li {
        font-size: 14px;
    }
    .page-slot-games__tips-list li {
        font-size: 15px;
        padding: 15px 20px;
    }
    details.page-slot-games__faq-item summary.page-slot-games__faq-question {
        padding: 15px;
    }
    .page-slot-games__faq-qtext {
        font-size: 16px;
    }
    .page-slot-games__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    .page-slot-games__final-cta-container {
        padding: 40px 15px;
    }
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-slot-games__section, .page-slot-games__card, .page-slot-games__container, .page-slot-games__promotion-card, .page-slot-games__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__section-title {
        font-size: 24px;
    }
    .page-slot-games__cta-button,
    .page-slot-games__btn-secondary {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-slot-games__card-title,
    .page-slot-games__game-title,
    .page-slot-games__feature-title,
    .page-slot-games__step-title {
        font-size: 20px;
    }
    .page-slot-games__promotion-title {
        font-size: 20px;
    }
    .page-slot-games__faq-qtext {
        font-size: 15px;
    }
    .page-slot-games__faq-toggle {
        font-size: 22px;
    }
}