/* Base styles for the slot-games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
    line-height: 1.6;
    padding-bottom: 50px; /* Ensure space above footer */
}

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

.page-slot-games__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    line-height: 1.3;
}

.page-slot-games__description,
.page-slot-games__text-block,
.page-slot-games__card-text,
.page-slot-games__list-text {
    font-size: 17px;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

.page-slot-games__highlight-text {
    color: #2F6BFF; /* Primary color */
    font-weight: 600;
}

.page-slot-games__brand-name {
    color: #2F6BFF; /* Primary color */
    font-weight: 700;
}

.page-slot-games__keyword {
    font-style: italic;
    font-weight: 500;
}

.page-slot-games__text-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-slot-games__text-link:hover {
    color: #6FA3FF; /* Secondary color */
}

/* Button styles */
.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Added for mobile responsiveness */
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-slot-games__btn-secondary {
    background: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Primary color */
    border: 2px solid #2F6BFF; /* Primary color border */
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.1);
}

.page-slot-games__btn-secondary:hover {
    background: #e0eaff; /* Light hover effect */
    color: #2458cc;
    border-color: #2458cc;
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.2);
}

/* Section specific styles */
.page-slot-games__hero-section {
    display: flex;
    flex-direction: column; /* Force image above content */
    align-items: center;
    background: #F4F7FB; /* Background */
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 50px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
}

.page-slot-games__main-title {
    font-size: 48px;
    font-weight: 800;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slot-games__introduction-section,
.page-slot-games__game-types-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
    padding: 50px 0;
    background: #F4F7FB; /* Background */
}

.page-slot-games__game-types-section .page-slot-games__section-image,
.page-slot-games__strategy-section .page-slot-games__section-image,
.page-slot-games__promotions-section .page-slot-games__section-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.page-slot-games__card {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-slot-games__ordered-list,
.page-slot-games__unordered-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-slot-games__ordered-list li,
.page-slot-games__unordered-list li {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-slot-games__list-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    line-height: 1.4;
}

/* FAQ Section */
.page-slot-games__faq-list {
    margin-top: 40px;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px; /* Slightly larger border-radius */
  border: 1px solid #D6E2FF; /* Border color */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 8px 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; /* Slightly more padding */
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px; /* Larger font size for question */
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
}
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: #f0f5ff; /* Lighter hover background */
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px; /* Consistent with summary font-size */
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}
.page-slot-games__faq-toggle {
  font-size: 28px; /* Larger toggle icon */
  font-weight: bold;
  color: #2F6BFF; /* Primary color for toggle */
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px; /* Larger icon area */
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px; /* Consistent padding */
  background: #F9FBFD; /* Lighter background for answer */
  border-radius: 0 0 10px 10px;
  color: #1F2D3D; /* Text Main */
  font-size: 16px;
}
.page-slot-games__faq-answer p {
    margin-bottom: 0; /* Remove extra margin from last paragraph in answer */
}

/* Contact CTA Section */
.page-slot-games__contact-cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-slot-games__contact-cta-section .page-slot-games__container {
    padding: 50px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary to Secondary gradient */
    box-shadow: 0 15px 40px rgba(47, 107, 255, 0.4);
    color: #FFFFFF;
}

.page-slot-games__contact-cta-section .page-slot-games__section-title {
    color: #FFFFFF;
    margin-bottom: 25px;
    margin-top: 0;
}

.page-slot-games__contact-cta-section .page-slot-games__description {
    color: #e0eaff; /* Lighter text for contrast */
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 18px;
}

.page-slot-games__contact-cta-section .page-slot-games__text-link {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-slot-games__contact-cta-section .page-slot-games__text-link:hover {
    color: #D6E2FF;
}

.page-slot-games__contact-cta-section .page-slot-games__btn-primary {
    background: #FFFFFF;
    color: #2F6BFF;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.page-slot-games__contact-cta-section .page-slot-games__btn-primary:hover {
    background: #f0f5ff;
    color: #2458cc;
    border-color: #f0f5ff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.page-slot-games__contact-cta-section .page-slot-games__btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: none;
}

.page-slot-games__contact-cta-section .page-slot-games__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: none;
}


/* Responsive styles for tablet and mobile */
@media (max-width: 1024px) {
    .page-slot-games__main-title {
        font-size: 42px;
    }
    .page-slot-games__section-title {
        font-size: 32px;
    }
    .page-slot-games__card-title {
        font-size: 20px;
    }
}