/* style/slots-games-video.css */
.page-slots-games-video {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1D33; /* Slightly lighter dark blue for main background */
}

.page-slots-games-video__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-games-video__hero-section {
    background: linear-gradient(135deg, #1A2B47, #0F1D33);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-video__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:slots_background,abstract_particles,kubet]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-slots-games-video__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-slots-games-video__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-slots-games-video__main-title .highlight {
    color: #FFD700;
}

.page-slots-games-video__hero-description {
    font-size: 1.3em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-slots-games-video__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-slots-games-video__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-slots-games-video__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2B47; /* Dark blue */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-games-video__btn--primary:hover {
    background-color: #E5C100; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games-video__btn--secondary {
    background-color: #1A2B47; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(26, 43, 71, 0.4);
}

.page-slots-games-video__btn--secondary:hover {
    background-color: #2F4060; /* Slightly lighter dark blue */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 43, 71, 0.6);
}

.page-slots-games-video__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-slots-games-video__btn--inline {
    margin-top: 20px;
}

.page-slots-games-video__section {
    padding: 80px 0;
    background-color: #13243F; /* Slightly different dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-slots-games-video__section:nth-of-type(even) {
    background-color: #1A2B47;
}

.page-slots-games-video__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-slots-games-video__section-title .highlight {
    color: #FFD700;
}

.page-slots-games-video__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px;
    line-height: 1.6;
}

.page-slots-games-video__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.page-slots-games-video__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-slots-games-video__text-content {
    flex: 1;
}

.page-slots-games-video__text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-slots-games-video__text-content .keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-slots-games-video__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-slots-games-video__text-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-slots-games-video__text-content li {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-slots-games-video__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-slots-games-video__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-games-video__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-slots-games-video__text-link:hover {
    color: #E5C100;
    text-decoration: underline;
}

/* Popular Games Section */
.page-slots-games-video__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-video__game-card {
    background-color: #1A2B47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-video__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-slots-games-video__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 5px solid #FFD700;
}

.page-slots-games-video__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 25px 0 15px;
}

.page-slots-games-video__game-description {
    font-size: 1em;
    color: #B0B0B0;
    padding: 0 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-slots-games-video__full-list-cta {
    text-align: center;
    margin-top: 60px;
}

/* Tips & Strategies Section */
.page-slots-games-video__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-video__tip-card {
    background-color: #1A2B47;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-video__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-slots-games-video__tip-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-slots-games-video__tip-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-games-video__tip-card p {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.7;
}

/* Promotions Section */
.page-slots-games-video__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-video__promo-card {
    background-color: #1A2B47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-video__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-slots-games-video__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 5px solid #FFD700;
}

.page-slots-games-video__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 25px 0 15px;
}

.page-slots-games-video__promo-card p {
    font-size: 1em;
    color: #B0B0B0;
    padding: 0 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* FAQ Section */
.page-slots-games-video__faq-item {
    background-color: #1A2B47;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-video__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-slots-games-video__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-slots-games-video__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots-games-video__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-slots-games-video__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px 10px 0;
}

/* Final CTA Section */
.page-slots-games-video__final-cta {
    background: linear-gradient(45deg, #1A2B47, #0F1D33);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0;
}

.page-slots-games-video__final-cta-content {
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-video__main-title {
        font-size: 2.8em;
    }
    .page-slots-games-video__section-title {
        font-size: 2.2em;
    }
    .page-slots-games-video__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-slots-games-video__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-slots-games-video__image-wrapper {
        order: -1; /* Image first on mobile for reverse layout */
    }
    .page-slots-games-video__hero-section {
        padding: 80px 0;
    }
    .page-slots-games-video__section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-slots-games-video__main-title {
        font-size: 2.2em;
    }
    .page-slots-games-video__hero-description {
        font-size: 1.1em;
    }
    .page-slots-games-video__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-video__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-games-video__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-video__sub-title {
        font-size: 1.5em;
    }
    .page-slots-games-video__text-content p, .page-slots-games-video__text-content li, .page-slots-games-video__game-description, .page-slots-games-video__tip-card p, .page-slots-games-video__promo-card p, .page-slots-games-video__faq-answer {
        font-size: 0.95em;
    }
    .page-slots-games-video__game-grid, .page-slots-games-video__tips-grid, .page-slots-games-video__promo-cards {
        grid-template-columns: 1fr;
    }
    .page-slots-games-video__section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-video__hero-section {
        padding: 60px 0;
    }
    .page-slots-games-video__main-title {
        font-size: 1.8em;
    }
    .page-slots-games-video__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-video__section {
        padding: 40px 0;
    }
    .page-slots-games-video__cta-buttons {
        gap: 10px;
    }
    .page-slots-games-video__btn {
        width: 90%;
        margin: 0 auto;
    }
}