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

.page-jackpot-leaderboard-game-specific-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-jackpot-leaderboard-game-specific-hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-jackpot-leaderboard-game-specific-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,pattern,geometric]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-jackpot-leaderboard-game-specific-hero > div {
    position: relative;
    z-index: 2;
}

.page-jackpot-leaderboard-game-specific-heading-primary {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-jackpot-leaderboard-game-specific-subheading {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-jackpot-leaderboard-game-specific-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-jackpot-leaderboard-game-specific-btn-primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep Sea Blue */
    border: 2px solid #FFCC00;
}

.page-jackpot-leaderboard-game-specific-btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #002244;
    transform: translateY(-3px);
}

.page-jackpot-leaderboard-game-specific-btn-secondary {
    background-color: #003366; /* Deep Sea Blue */
    color: #FFCC00; /* Gold */
    border: 2px solid #FFCC00;
}

.page-jackpot-leaderboard-game-specific-btn-secondary:hover {
    background-color: #004488;
    border-color: #e6b800;
    color: #fff;
    transform: translateY(-3px);
}

.page-jackpot-leaderboard-game-specific-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-jackpot-leaderboard-game-specific-section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-jackpot-leaderboard-game-specific-heading-secondary {
    font-size: 2.5em;
    color: #003366; /* Deep Sea Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-jackpot-leaderboard-game-specific-heading-secondary::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold */
    border-radius: 2px;
}

.page-jackpot-leaderboard-game-specific-heading-tertiary {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-jackpot-leaderboard-game-specific-highlight {
    color: #CC0000; /* Red for emphasis */
    font-weight: bold;
}

.page-jackpot-leaderboard-game-specific-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-jackpot-leaderboard-game-specific-grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-jackpot-leaderboard-game-specific-grid-item:hover {
    transform: translateY(-5px);
}

.page-jackpot-leaderboard-game-specific-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-jackpot-leaderboard-game-specific-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-jackpot-leaderboard-game-specific-list li {
    background-color: #f2f7fb;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFCC00; /* Gold accent */
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-jackpot-leaderboard-game-specific-list li p {
    margin-top: 10px;
    color: #555;
}

.page-jackpot-leaderboard-game-specific-list-bullet {
    list-style: disc;
    padding-left: 20px;
}

.page-jackpot-leaderboard-game-specific-list-ordered {
    list-style: decimal;
    padding-left: 20px;
}

.page-jackpot-leaderboard-game-specific-list-ordered li {
    background-color: #eaf3f9;
    border-left-color: #003366;
}

.page-jackpot-leaderboard-game-specific-game-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.page-jackpot-leaderboard-game-specific-game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #FFCC00;
}

.page-jackpot-leaderboard-game-specific-game-info {
    padding: 25px;
}

.page-jackpot-leaderboard-game-specific-game-info p {
    margin-bottom: 15px;
    color: #555;
}

.page-jackpot-leaderboard-game-specific-mt-large {
    margin-top: 80px;
}

.page-jackpot-leaderboard-game-specific-mt-small {
    margin-top: 20px;
}

.page-jackpot-leaderboard-game-specific-link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-jackpot-leaderboard-game-specific-link:hover {
    text-decoration: underline;
    color: #FFCC00;
}

/* Accordion Styles */
.page-jackpot-leaderboard-game-specific-accordion {
    margin-top: 40px;
}

.page-jackpot-leaderboard-game-specific-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-jackpot-leaderboard-game-specific-accordion-header {
    background-color: #003366;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-jackpot-leaderboard-game-specific-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-jackpot-leaderboard-game-specific-accordion-header.active {
    background-color: #004488;
}

.page-jackpot-leaderboard-game-specific-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-jackpot-leaderboard-game-specific-accordion-content {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-jackpot-leaderboard-game-specific-accordion-content.open {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-jackpot-leaderboard-game-specific-accordion-content p {
    margin-bottom: 10px;
    color: #444;
}

/* Floating CTA */
.page-jackpot-leaderboard-game-specific-floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #CC0000; /* Red accent for urgency */
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1000;
    animation: page-jackpot-leaderboard-game-specific-pulse 2s infinite;
    transition: background-color 0.3s ease;
}

.page-jackpot-leaderboard-game-specific-floating-cta:hover {
    background-color: #a30000;
}

.page-jackpot-leaderboard-game-specific-floating-text {
    font-weight: bold;
    font-size: 1.1em;
}

.page-jackpot-leaderboard-game-specific-floating-button {
    background-color: #FFCC00;
    color: #003366;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9em;
}

@keyframes page-jackpot-leaderboard-game-specific-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-jackpot-leaderboard-game-specific-heading-primary {
        font-size: 2.8em;
    }
    .page-jackpot-leaderboard-game-specific-heading-secondary {
        font-size: 2em;
    }
    .page-jackpot-leaderboard-game-specific-game-card {
        flex-direction: column;
    }
    .page-jackpot-leaderboard-game-specific-game-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-jackpot-leaderboard-game-specific-hero {
        padding: 60px 0;
    }
    .page-jackpot-leaderboard-game-specific-heading-primary {
        font-size: 2.2em;
    }
    .page-jackpot-leaderboard-game-specific-subheading {
        font-size: 1.1em;
    }
    .page-jackpot-leaderboard-game-specific-section {
        padding: 40px 0;
    }
    .page-jackpot-leaderboard-game-specific-heading-secondary {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-jackpot-leaderboard-game-specific-heading-tertiary {
        font-size: 1.5em;
    }
    .page-jackpot-leaderboard-game-specific-grid {
        grid-template-columns: 1fr;
    }
    .page-jackpot-leaderboard-game-specific-game-image {
        height: 180px;
    }
    .page-jackpot-leaderboard-game-specific-floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        gap: 8px;
    }
    .page-jackpot-leaderboard-game-specific-floating-text {
        font-size: 1em;
    }
    .page-jackpot-leaderboard-game-specific-floating-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .page-jackpot-leaderboard-game-specific-heading-primary {
        font-size: 1.8em;
    }
    .page-jackpot-leaderboard-game-specific-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-jackpot-leaderboard-game-specific-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-jackpot-leaderboard-game-specific-accordion-content {
        padding: 15px 20px;
    }
    .page-jackpot-leaderboard-game-specific-floating-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        border-radius: 10px;
        padding: 10px;
    }
    .page-jackpot-leaderboard-game-specific-floating-button {
        width: 100%;
        margin-top: 5px;
    }
}