.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #0a0a0a, so light text */
    background-color: transparent; /* Main content will inherit body background or have its own */
}

.page-slot-games__hero-section {
    position: relative;
    background-color: #0a0a0a; /* Ensure dark background for contrast */
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}
.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.page-slot-games__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.page-slot-games__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}
.page-slot-games__hero-cta {
    display: inline-block;
    background-color: #26A9E0; /* Brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}
.page-slot-games__hero-cta:hover {
    background-color: #1a8ccb; /* Darker shade of brand color */
}
.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
    filter: none; /* Ensure no filter changes image color */
}

/* General Section Styling */
.page-slot-games__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.page-slot-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color */
    margin-bottom: 40px;
}
.page-slot-games__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* Feature Cards */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-slot-games__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
}
.page-slot-games__feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}
.page-slot-games__feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    filter: none; /* Ensure no filter changes image color */
}
.page-slot-games__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}
.page-slot-games__feature-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Game Types Grid */
.page-slot-games__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-slot-games__game-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
}
.page-slot-games__game-card:hover {
    transform: translateY(-10px);
}
.page-slot-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter changes image color */
}
.page-slot-games__game-card-content {
    padding: 20px;
}
.page-slot-games__game-card-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}
.page-slot-games__game-card-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* How to Play / Video Section */
.page-slot-games__how-to-play-section {
    background-color: #0d0d0d; /* Slightly different dark background */
    padding: 80px 20px;
    text-align: center;
}
.page-slot-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* For video click redirect */
    width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}
.page-slot-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
}
.page-slot-games__steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.page-slot-games__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #26A9E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #ffffff;
}
.page-slot-games__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}
.page-slot-games__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Strategy Section */
.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}
.page-slot-games__strategy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}
.page-slot-games__strategy-icon {
    width: 80px; /* Adjusted to meet min size requirement */
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 100%;
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
    object-fit: contain;
    filter: none; /* Ensure no filter changes image color */
}
.page-slot-games__strategy-content {
    color: #ffffff;
}
.page-slot-games__strategy-title {
    font-size: 1.2em;
    color: #26A9E0;
    margin-bottom: 5px;
}
.page-slot-games__strategy-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Promotions Section */
.page-slot-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-slot-games__promotion-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
}
.page-slot-games__promotion-card:hover {
    transform: translateY(-10px);
}
.page-slot-games__promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter changes image color */
}
.page-slot-games__promotion-content {
    padding: 20px;
}
.page-slot-games__promotion-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}
.page-slot-games__promotion-description {
    font-size: 0.95em;
    color: #cccccc;
    margin-bottom: 20px;
}
.page-slot-games__promotion-cta {
    display: inline-block;
    background-color: #EA7C07; /* Login color for urgency */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}
.page-slot-games__promotion-cta:hover {
    background-color: #c96806;
}

/* Security Section */
.page-slot-games__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-slot-games__security-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}
.page-slot-games__security-icon {
    width: 80px; /* Adjusted to meet min size requirement */
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    filter: none; /* Ensure no filter changes image color */
}
.page-slot-games__security-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}
.page-slot-games__security-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* FAQ Section */
.page-slot-games__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}
.page-slot-games__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}
.page-slot-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.page-slot-games__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #26A9E0;
    transition: transform 0.3s ease;
}
.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}
.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
}
.page-slot-games__faq-item.active .page-slot-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px !important;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #0d0d0d;
}
.page-slot-games__conclusion-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.page-slot-games__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}
.page-slot-games__btn-primary:hover {
    background-color: #1a8ccb;
}
.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    padding: 15px 30px;
    border: 2px solid #26A9E0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}
.page-slot-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 3em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 60px 15px;
    }
    .page-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-slot-games__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games__section {
        padding: 40px 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-slot-games__feature-card,
    .page-slot-games__game-card,
    .page-slot-games__promotion-card,
    .page-slot-games__security-item {
        padding: 20px;
    }
    .page-slot-games__how-to-play-section {
        padding: 60px 15px;
    }
    .page-slot-games__video-wrapper {
        margin: 30px auto;
    }
    .page-slot-games__steps-list,
    .page-slot-games__strategy-list,
    .page-slot-games__faq-list {
        margin: 30px auto;
    }
    .page-slot-games__step-item,
    .page-slot-games__strategy-item,
    .page-slot-games__faq-item {
        padding: 15px;
    }
    .page-slot-games__strategy-icon {
        width: 60px; /* Adjust for mobile, still > 200px equivalent for display */
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        margin-right: 15px;
    }
    .page-slot-games__conclusion-section {
        padding: 60px 15px;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    /* Mobile image, video, container responsive rules */
    .page-slot-games img {
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-slot-games video,
    .page-slot-games__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper,
    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important; /* Ensure no overflow */
    }
    .page-slot-games__video-section {
      padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for video section on mobile */
    }
}

/* Ensure images are not too small as per global rule */
.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
    width: auto; 
    height: auto; 
}
/* Overriding specific icons to meet minimum size while still being "icon-like" */
.page-slot-games__feature-icon, 
.page-slot-games__security-icon, 
.page-slot-games__strategy-icon {
    width: 80px; /* Base size, effectively min for these */
    height: 80px;
    min-width: 80px; /* Explicit min */
    min-height: 80px;
    max-width: 100%; 
    height: auto;
}

@media (max-width: 768px) {
    .page-slot-games__feature-icon, 
    .page-slot-games__security-icon, 
    .page-slot-games__strategy-icon {
        width: 60px !important; 
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
}