/* style/jackpot-jackpot-calculation-method.css */

/* Base styles for the page content */
.page-jackpot-jackpot-calculation-method {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text, good contrast with dark background */
    background-color: #1A1A2E; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-jackpot-jackpot-calculation-method__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-jackpot-jackpot-calculation-method__hero {
    background: linear-gradient(135deg, #FFD700, #DC143C);
    color: #1A1A2E;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-jackpot-jackpot-calculation-method__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-jackpot-jackpot-calculation-method__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A2E; /* Dark text on bright background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-jackpot-jackpot-calculation-method__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #333;
}

.page-jackpot-jackpot-calculation-method__hero-button {
    display: inline-block;
    background-color: #1A1A2E;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-jackpot-jackpot-calculation-method__hero-button:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #1A1A2E;
}

.page-jackpot-jackpot-calculation-method__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

/* General Section Styles */
.page-jackpot-jackpot-calculation-method__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-jackpot-jackpot-calculation-method__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-jackpot-jackpot-calculation-method__intro p,
.page-jackpot-jackpot-calculation-method__mechanism p,
.page-jackpot-jackpot-calculation-method__factors p,
.page-jackpot-jackpot-calculation-method__transparency p,
.page-jackpot-jackpot-calculation-method__winning p,
.page-jackpot-jackpot-calculation-method__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

/* List Styles */
.page-jackpot-jackpot-calculation-method__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-jackpot-jackpot-calculation-method__list li {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-jackpot-jackpot-calculation-method__list li strong {
    color: #FFD700;
}

/* Image Styles */
.page-jackpot-jackpot-calculation-method__image-fullwidth {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-jackpot-jackpot-calculation-method__image-left,
.page-jackpot-jackpot-calculation-method__image-right {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .page-jackpot-jackpot-calculation-method__image-left {
        float: left;
        margin-right: 30px;
        margin-bottom: 20px;
    }
    .page-jackpot-jackpot-calculation-method__image-right {
        float: right;
        margin-left: 30px;
        margin-bottom: 20px;
    }
    .page-jackpot-jackpot-calculation-method__transparency::after, /* Clear floats */
    .page-jackpot-jackpot-calculation-method__factors::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Call to Action Section */
.page-jackpot-jackpot-calculation-method__cta {
    background-color: #2A2A4A;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.page-jackpot-jackpot-calculation-method__cta-button {
    display: inline-block;
    background-color: #DC143C;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: 2px solid #DC143C;
}

.page-jackpot-jackpot-calculation-method__cta-button:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-jackpot-jackpot-calculation-method__cta-subtext {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-top: 20px;
}

.page-jackpot-jackpot-calculation-method__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 1;
}

.page-jackpot-jackpot-calculation-method__cta .page-jackpot-jackpot-calculation-method__section-title,
.page-jackpot-jackpot-calculation-method__cta p {
    position: relative;
    z-index: 2;
}

.page-jackpot-jackpot-calculation-method__cta .page-jackpot-jackpot-calculation-method__section-title {
    color: #FFD700;
}

.page-jackpot-jackpot-calculation-method__cta .page-jackpot-jackpot-calculation-method__section-title::after {
    background-color: #FFD700;
}

/* Responsible Gaming Section */
.page-jackpot-jackpot-calculation-method__responsible-gaming {
    background-color: #121220;
    padding: 50px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.page-jackpot-jackpot-calculation-method__responsible-gaming p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
    color: #B0B0B0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-jackpot-jackpot-calculation-method__hero-title {
        font-size: 3em;
    }
    .page-jackpot-jackpot-calculation-method__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-jackpot-jackpot-calculation-method__hero {
        padding: 60px 15px;
        min-height: 350px;
    }
    .page-jackpot-jackpot-calculation-method__hero-title {
        font-size: 2.5em;
    }
    .page-jackpot-jackpot-calculation-method__hero-description {
        font-size: 1.1em;
    }
    .page-jackpot-jackpot-calculation-method__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-jackpot-jackpot-calculation-method__intro p,
    .page-jackpot-jackpot-calculation-method__mechanism p,
    .page-jackpot-jackpot-calculation-method__factors p,
    .page-jackpot-jackpot-calculation-method__transparency p,
    .page-jackpot-jackpot-calculation-method__winning p,
    .page-jackpot-jackpot-calculation-method__responsible-gaming p {
        font-size: 1em;
    }
    .page-jackpot-jackpot-calculation-method__image-left,
    .page-jackpot-jackpot-calculation-method__image-right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .page-jackpot-jackpot-calculation-method__cta {
        padding: 40px 15px;
        margin: 40px auto;
    }
    .page-jackpot-jackpot-calculation-method__cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-jackpot-jackpot-calculation-method__hero-title {
        font-size: 2em;
    }
    .page-jackpot-jackpot-calculation-method__hero-description {
        font-size: 1em;
    }
    .page-jackpot-jackpot-calculation-method__section-title {
        font-size: 1.5em;
    }
    .page-jackpot-jackpot-calculation-method__hero-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-jackpot-jackpot-calculation-method__list li {
        font-size: 0.95em;
        padding: 10px 15px;
    }
}