:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-slot-jackpot {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

.page-slot-jackpot__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-slot-jackpot__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-slot-jackpot__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-slot-jackpot__main-title {
    color: var(--gold-color);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
}

.page-slot-jackpot__description {
    color: var(--text-secondary-color);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-slot-jackpot__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-slot-jackpot__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-slot-jackpot__section-title {
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.3;
}

.page-slot-jackpot__sub-title {
    color: var(--text-main-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-jackpot__text-content {
    color: var(--text-secondary-color);
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-jackpot__introduction-section,
.page-slot-jackpot__game-types-section,
.page-slot-jackpot__mobile-section,
.page-slot-jackpot__faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.page-slot-jackpot__why-choose-section,
.page-slot-jackpot__promotions-section,
.page-slot-jackpot__responsible-gaming-section,
.page-slot-jackpot__final-cta-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

.page-slot-jackpot__dark-section {
    color: var(--text-main-color);
    background-color: var(--deep-green-color);
}

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

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

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

.page-slot-jackpot__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-jackpot__feature-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-slot-jackpot__feature-title {
    color: var(--gold-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-slot-jackpot__feature-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

.page-slot-jackpot__button-group {
    text-align: center;
    margin-top: 50px;
}

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

.page-slot-jackpot__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-jackpot__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-jackpot__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-slot-jackpot__card-content {
    padding: 25px;
}

.page-slot-jackpot__card-title {
    color: var(--gold-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slot-jackpot__card-description {
    color: var(--text-secondary-color);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-slot-jackpot__card-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-slot-jackpot__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-slot-jackpot__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-slot-jackpot__ordered-list,
.page-slot-jackpot__unordered-list {
    list-style-type: none;
    padding-left: 0;
}

.page-slot-jackpot__ordered-list li,
.page-slot-jackpot__unordered-list li {
    margin-bottom: 15px;
    color: var(--text-secondary-color);
    position: relative;
    padding-left: 25px;
}

.page-slot-jackpot__ordered-list li strong {
    color: var(--gold-color);
}

.page-slot-jackpot__ordered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-slot-jackpot__unordered-list li::before {
    content: "\2022"; /* Bullet point */
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-slot-jackpot__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-jackpot__promotions-list,
.page-slot-jackpot__responsible-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 40px;
}

.page-slot-jackpot__promotion-item,
.page-slot-jackpot__responsible-list li {
    background-color: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
    font-size: 1.05em;
}

.page-slot-jackpot__promotion-item strong,
.page-slot-jackpot__responsible-list li strong {
    color: var(--gold-color);
}

.page-slot-jackpot__mobile-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-slot-jackpot__mobile-text {
    text-align: center;
}

.page-slot-jackpot__mobile-image-wrapper {
    text-align: center;
}

.page-slot-jackpot__faq-list {
    margin-top: 40px;
}

.page-slot-jackpot__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.page-slot-jackpot__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-slot-jackpot__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-jackpot__faq-qtext {
    flex-grow: 1;
}

.page-slot-jackpot__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-slot-jackpot__faq-item[open] .page-slot-jackpot__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-jackpot__faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary-color);
    font-size: 1em;
    text-align: justify;
}

.page-slot-jackpot__faq-answer p {
    margin-bottom: 0;
}

.page-slot-jackpot__final-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Desktop specific styles */
@media (min-width: 769px) {
    .page-slot-jackpot__main-title {
        font-size: 3.5em;
    }
    .page-slot-jackpot__description {
        font-size: 1.2em;
    }
    .page-slot-jackpot__section-title {
        font-size: 3em;
    }
    .page-slot-jackpot__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-slot-jackpot__mobile-content-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left;
    }
    .page-slot-jackpot__mobile-text {
        order: 1;
        text-align: left;
    }
    .page-slot-jackpot__mobile-image-wrapper {
        order: 2;
    }
}

/* Tablet specific styles */
@media (max-width: 1024px) {
    .page-slot-jackpot__hero-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .page-slot-jackpot__main-title {
        font-size: 2.8em;
    }
    .page-slot-jackpot__description {
        font-size: 1em;
    }
    .page-slot-jackpot__section-title {
        font-size: 2.2em;
    }
    .page-slot-jackpot__introduction-section,
    .page-slot-jackpot__why-choose-section,
    .page-slot-jackpot__game-types-section,
    .page-slot-jackpot__how-to-play-section,
    .page-slot-jackpot__promotions-section,
    .page-slot-jackpot__mobile-section,
    .page-slot-jackpot__responsible-gaming-section,
    .page-slot-jackpot__faq-section,
    .page-slot-jackpot__final-cta-section {
        padding: 60px 0;
    }
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .page-slot-jackpot {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-jackpot__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-jackpot__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-slot-jackpot__main-title {
        font-size: 2em;
    }
    .page-slot-jackpot__description {
        font-size: 0.95em;
    }
    .page-slot-jackpot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slot-jackpot__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-jackpot__sub-title {
        font-size: 1.5em;
    }
    .page-slot-jackpot__features-grid,
    .page-slot-jackpot__game-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-jackpot__feature-item,
    .page-slot-jackpot__card {
        padding: 20px;
    }
    .page-slot-jackpot__card-image {
        height: 200px; /* Adjust height for mobile */
    }
    .page-slot-jackpot__card-content {
        padding: 20px;
    }
    .page-slot-jackpot__card-title {
        font-size: 1.2em;
    }
    .page-slot-jackpot__card-description {
        font-size: 0.85em;
    }
    .page-slot-jackpot__content-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-jackpot__mobile-content-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-jackpot__mobile-text,
    .page-slot-jackpot__mobile-image-wrapper {
        order: unset;
    }
    .page-slot-jackpot__promotion-item,
    .page-slot-jackpot__responsible-list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-slot-jackpot__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-slot-jackpot__faq-answer {
        padding: 0 15px 15px;
    }

    /* Mobile image responsive adaptations */
    .page-slot-jackpot img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-jackpot__hero-image-wrapper,
    .page-slot-jackpot__feature-icon,
    .page-slot-jackpot__card-image,
    .page-slot-jackpot__image-wrapper,
    .page-slot-jackpot__mobile-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Mobile button responsive adaptations */
    .page-slot-jackpot__cta-button,
    .page-slot-jackpot__card-button,
    .page-slot-jackpot a[class*="button"],
    .page-slot-jackpot a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-slot-jackpot__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    /* Ensure containers with buttons also adapt */
    .page-slot-jackpot__hero-content,
    .page-slot-jackpot__mobile-text,
    .page-slot-jackpot__promotions-section .page-slot-jackpot__container,
    .page-slot-jackpot__final-cta-section .page-slot-jackpot__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-jackpot__main-title {
        font-size: 1.8em;
    }
    .page-slot-jackpot__section-title {
        font-size: 1.6em;
    }
    .page-slot-jackpot__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-slot-jackpot__feature-title {
        font-size: 1.3em;
    }
    .page-slot-jackpot__card-title {
        font-size: 1.1em;
    }
}