/* style/slots-games-video.css */
.page-slots-games-video {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
    background-color: #0A2342;
    line-height: 1.6;
}

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

/* Hero Section */
.page-slots-games-video__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    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-image: url('[GALLERY:bg:abstract,geometric,dark_blue,gold_accents]'); /* Abstract background */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-slots-games-video__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-slots-games-video__hero-title {
    font-size: 3.5em;
    color: #E0B400; /* Gold for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-video__hero-description {
    font-size: 1.25em;
    color: #F0F0F0;
    margin-bottom: 40px;
    padding: 0 15px;
}

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

.page-slots-games-video__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-slots-games-video__btn--primary {
    background-color: #E0B400; /* Gold */
    color: #0A2342; /* Dark blue text on gold */
    border: 2px solid #E0B400;
}

.page-slots-games-video__btn--primary:hover {
    background-color: #F0C420;
    transform: translateY(-3px);
}

.page-slots-games-video__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-slots-games-video__btn--secondary:hover {
    background-color: rgba(224, 180, 0, 0.1);
    transform: translateY(-3px);
}

.page-slots-games-video__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.page-slots-games-video__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* General Section Styling */
.page-slots-games-video__section-title {
    font-size: 2.5em;
    color: #E0B400;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
}

.page-slots-games-video__section-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Features Section */
.page-slots-games-video__features-section {
    background-color: #0A2342;
    padding: 80px 0;
}

.page-slots-games-video__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-video__feature-item {
    background-color: #1a3a60; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-games-video__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2a4c7a;
}

.page-slots-games-video__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-slots-games-video__feature-heading {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
}

.page-slots-games-video__feature-text {
    font-size: 1em;
    color: #F0F0F0;
}

/* Why Us Section */
.page-slots-games-video__why-us-section {
    background-color: #0A2342;
    padding: 80px 0;
}

.page-slots-games-video__why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-video__why-us-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slots-games-video__why-us-heading {
    font-size: 1.6em;
    color: #E0B400;
    margin-bottom: 15px;
}

.page-slots-games-video__why-us-text {
    font-size: 1em;
    color: #F0F0F0;
    flex-grow: 1;
}

.page-slots-games-video__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
    align-self: flex-start;
}

/* Guide Section */
.page-slots-games-video__guide-section {
    background-color: #0A2342;
    padding: 80px 0;
}

.page-slots-games-video__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slots-games-video__guide-list li {
    background-color: #1a3a60;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-slots-games-video__guide-heading {
    font-size: 1.8em;
    color: #E0B400;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.page-slots-games-video__guide-heading::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E0B400;
    color: #0A2342;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.page-slots-games-video__guide-list {
    counter-reset: item;
}

.page-slots-games-video__guide-text {
    font-size: 1em;
    color: #F0F0F0;
    margin-bottom: 20px;
}

.page-slots-games-video__btn--outline {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-slots-games-video__btn--outline:hover {
    background-color: rgba(224, 180, 0, 0.1);
    transform: translateY(-3px);
}

/* Strategy Section */
.page-slots-games-video__strategy-section {
    background-color: #0A2342;
    padding: 80px 0;
}

.page-slots-games-video__strategy-content {
    margin-top: 40px;
}

.page-slots-games-video__strategy-intro {
    font-size: 1.15em;
    color: #C0C0C0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-video__strategy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-slots-games-video__strategy-list li {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-video__strategy-heading {
    font-size: 1.6em;
    color: #E0B400;
    margin-bottom: 10px;
}

.page-slots-games-video__strategy-text {
    font-size: 1em;
    color: #F0F0F0;
}

.page-slots-games-video__image-right {
    margin-top: 40px;
    text-align: center;
}

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

/* CTA App Section */
.page-slots-games-video__cta-app-section {
    background-color: #1a3a60;
    padding: 80px 0;
    text-align: center;
}

.page-slots-games-video__cta-app-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.page-slots-games-video__cta-app-title {
    font-size: 2.5em;
    color: #E0B400;
    margin-bottom: 20px;
}

.page-slots-games-video__cta-app-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-slots-games-video__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-slots-games-video__cta-app-image-wrapper {
    margin-top: 40px;
}

.page-slots-games-video__cta-app-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-slots-games-video__faq-section {
    background-color: #0A2342;
    padding: 80px 0;
}

.page-slots-games-video__faq-item {
    background-color: #1a3a60;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-video__faq-question {
    font-size: 1.4em;
    color: #E0B400;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-slots-games-video__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-slots-games-video__faq-answer {
    font-size: 1em;
    color: #F0F0F0;
    display: none;
    margin-top: 15px;
}

.page-slots-games-video__faq-answer.active {
    display: block;
}

/* Conclusion Section */
.page-slots-games-video__conclusion-section {
    background-color: #0A2342;
    padding: 80px 0 100px;
    text-align: center;
}

.page-slots-games-video__conclusion-text {
    font-size: 1.15em;
    color: #C0C0C0;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-slots-games-video__responsible-gaming {
    font-size: 0.9em;
    color: #888;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slots-games-video__hero-title {
        font-size: 2.8em;
    }
    .page-slots-games-video__section-title {
        font-size: 2em;
    }
    .page-slots-games-video__hero-image {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-slots-games-video__hero-section {
        padding: 80px 0 40px;
    }
    .page-slots-games-video__hero-title {
        font-size: 2.2em;
    }
    .page-slots-games-video__hero-description {
        font-size: 1.1em;
    }
    .page-slots-games-video__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-video__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-slots-games-video__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-video__feature-grid, .page-slots-games-video__why-us-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-games-video__cta-app-title {
        font-size: 2em;
    }
    .page-slots-games-video__faq-question {
        font-size: 1.2em;
    }
    .page-slots-games-video__guide-heading {
        font-size: 1.5em;
    }
    .page-slots-games-video__strategy-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-slots-games-video__hero-title {
        font-size: 1.8em;
    }
    .page-slots-games-video__hero-description {
        font-size: 1em;
    }
    .page-slots-games-video__btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-games-video__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-video__feature-item, .page-slots-games-video__why-us-item, .page-slots-games-video__guide-list li, .page-slots-games-video__strategy-list li, .page-slots-games-video__faq-item {
        padding: 20px;
    }
    .page-slots-games-video__cta-app-title {
        font-size: 1.8em;
    }
    .page-slots-games-video__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}