/* style/jackpot-leaderboard-monthly-top.css */
.page-jackpot-leaderboard-monthly-top {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6; /* Light background for readability */
}

.page-jackpot-leaderboard-monthly-top__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-jackpot-leaderboard-monthly-top__hero-section {
    background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%); /* Deep Ocean Blue to Gold */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-jackpot-leaderboard-monthly-top__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-jackpot-leaderboard-monthly-top__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Gold for main title */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-leaderboard-monthly-top__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-jackpot-leaderboard-monthly-top__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep Ocean Blue for section titles */
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
}

.page-jackpot-leaderboard-monthly-top__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-jackpot-leaderboard-monthly-top__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.page-jackpot-leaderboard-monthly-top__description .highlight {
    color: #003366;
    font-weight: bold;
}

.page-jackpot-leaderboard-monthly-top__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep Ocean Blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-jackpot-leaderboard-monthly-top__cta-button:hover {
    background-color: #e6b800; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-jackpot-leaderboard-monthly-top__cta-button--small {
    font-size: 1em;
    padding: 12px 25px;
    margin-top: 20px;
}

.page-jackpot-leaderboard-monthly-top__cta-button--large {
    font-size: 1.4em;
    padding: 18px 35px;
    margin-top: 30px;
}

.page-jackpot-leaderboard-monthly-top__cta-button--secondary {
    background-color: #003366; /* Deep Ocean Blue button */
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
}

.page-jackpot-leaderboard-monthly-top__cta-button--secondary:hover {
    background-color: #002244; /* Darker blue on hover */
    border-color: #e6b800;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-section,
.page-jackpot-leaderboard-monthly-top__winner-stories,
.page-jackpot-leaderboard-monthly-top__top-games-section,
.page-jackpot-leaderboard-monthly-top__strategy-section,
.page-jackpot-leaderboard-monthly-top__responsible-gambling,
.page-jackpot-leaderboard-monthly-top__final-cta {
    padding: 60px 0;
    background-color: #fff; /* White background for content sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fdfdfd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table th,
.page-jackpot-leaderboard-monthly-top__leaderboard-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table th {
    background-color: #003366; /* Deep Ocean Blue header */
    color: #FFCC00; /* Gold text for header */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-jackpot-leaderboard-monthly-top__leaderboard-table tbody tr:hover {
    background-color: #e0f2f7; /* Light blue on hover */
}

.page-jackpot-leaderboard-monthly-top__story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-jackpot-leaderboard-monthly-top__story-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-jackpot-leaderboard-monthly-top__story-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-jackpot-leaderboard-monthly-top__story-text {
    font-size: 1.1em;
    color: #444;
    text-align: justify;
    max-width: 800px;
}

.page-jackpot-leaderboard-monthly-top__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-jackpot-leaderboard-monthly-top__game-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-leaderboard-monthly-top__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-jackpot-leaderboard-monthly-top__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-jackpot-leaderboard-monthly-top__game-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-jackpot-leaderboard-monthly-top__game-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.page-jackpot-leaderboard-monthly-top__game-button {
    display: inline-block;
    background-color: #CC0000; /* Red accent for game buttons */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-jackpot-leaderboard-monthly-top__game-button:hover {
    background-color: #990000;
}

.page-jackpot-leaderboard-monthly-top__strategy-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-left: 5px solid #FFCC00; /* Gold border for strategy items */
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.page-jackpot-leaderboard-monthly-top__strategy-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-jackpot-leaderboard-monthly-top__strategy-text {
    font-size: 1.1em;
    color: #444;
    text-align: justify;
}

.page-jackpot-leaderboard-monthly-top__responsible-gambling {
    background-color: #e0f2f7; /* Light blue background for responsible gambling */
    color: #003366;
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-jackpot-leaderboard-monthly-top__responsible-gambling .page-jackpot-leaderboard-monthly-top__section-title {
    color: #003366;
}

.page-jackpot-leaderboard-monthly-top__responsible-gambling .page-jackpot-leaderboard-monthly-top__description {
    color: #002244;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-leaderboard-monthly-top__final-cta {
    background-color: #003366; /* Deep Ocean Blue background */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
}

.page-jackpot-leaderboard-monthly-top__final-cta .page-jackpot-leaderboard-monthly-top__section-title {
    color: #FFCC00;
}

.page-jackpot-leaderboard-monthly-top__final-cta .page-jackpot-leaderboard-monthly-top__description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-jackpot-leaderboard-monthly-top__final-cta .page-jackpot-leaderboard-monthly-top__description a {
    color: #FFCC00;
    text-decoration: underline;
    font-weight: bold;
}

.page-jackpot-leaderboard-monthly-top__final-cta .page-jackpot-leaderboard-monthly-top__description a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-jackpot-leaderboard-monthly-top__main-title {
        font-size: 2.8em;
    }
    .page-jackpot-leaderboard-monthly-top__subtitle {
        font-size: 1.2em;
    }
    .page-jackpot-leaderboard-monthly-top__section-title {
        font-size: 2em;
    }
    .page-jackpot-leaderboard-monthly-top__story-card {
        flex-direction: column;
    }
    .page-jackpot-leaderboard-monthly-top__story-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-jackpot-leaderboard-monthly-top__main-title {
        font-size: 2.2em;
    }
    .page-jackpot-leaderboard-monthly-top__subtitle {
        font-size: 1em;
    }
    .page-jackpot-leaderboard-monthly-top__section-title {
        font-size: 1.8em;
    }
    .page-jackpot-leaderboard-monthly-top__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-jackpot-leaderboard-monthly-top__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-jackpot-leaderboard-monthly-top__leaderboard-table th,
    .page-jackpot-leaderboard-monthly-top__leaderboard-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-jackpot-leaderboard-monthly-top__game-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-jackpot-leaderboard-monthly-top__main-title {
        font-size: 1.8em;
    }
    .page-jackpot-leaderboard-monthly-top__section-title {
        font-size: 1.5em;
    }
    .page-jackpot-leaderboard-monthly-top__description,
    .page-jackpot-leaderboard-monthly-top__story-text,
    .page-jackpot-leaderboard-monthly-top__game-description,
    .page-jackpot-leaderboard-monthly-top__strategy-text {
        font-size: 0.9em;
    }
    .page-jackpot-leaderboard-monthly-top__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-jackpot-leaderboard-monthly-top__story-card, .page-jackpot-leaderboard-monthly-top__game-card, .page-jackpot-leaderboard-monthly-top__strategy-item {
        padding: 20px;
    }
}