/* style/game-library-slot-themes.css */
.page-game-library-slot-themes {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #001a33; /* Darker blue for overall page background */
    line-height: 1.6;
}

.page-game-library-slot-themes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-library-slot-themes__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Deep blue to darker blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-library-slot-themes__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1); /* Light gold accent */
    border-radius: 50%;
    filter: blur(80px);
}

.page-game-library-slot-themes__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(0, 51, 102, 0.2); /* Dark blue accent */
    border-radius: 50%;
    filter: blur(100px);
}

.page-game-library-slot-themes__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-library-slot-themes__subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-library-slot-themes__subtitle a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-game-library-slot-themes__subtitle a:hover {
    text-decoration: underline;
}

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

.page-game-library-slot-themes__btn.primary-btn {
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-game-library-slot-themes__btn.primary-btn:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-library-slot-themes__btn.secondary-btn {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-game-library-slot-themes__btn.secondary-btn:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-library-slot-themes__section {
    padding: 60px 0;
    background-color: #002244; /* Slightly lighter deep blue */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-library-slot-themes__section:nth-child(even) {
    background-color: #001a33; /* Alternating background for sections */
}

.page-game-library-slot-themes__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-library-slot-themes__section p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-library-slot-themes__section p a,
.page-game-library-slot-themes__section ul li a,
.page-game-library-slot-themes__section ol li a,
.page-game-library-slot-themes__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-game-library-slot-themes__section p a:hover,
.page-game-library-slot-themes__section ul li a:hover,
.page-game-library-slot-themes__section ol li a:hover,
.page-game-library-slot-themes__link-text:hover {
    text-decoration: underline;
}

.page-game-library-slot-themes__section ul,
.page-game-library-slot-themes__section ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-game-library-slot-themes__section ol {
    list-style-type: decimal;
}

.page-game-library-slot-themes__section ul li,
.page-game-library-slot-themes__section ol li {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.page-game-library-slot-themes__section ul li strong {
    color: #FFD700;
}

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

.page-game-library-slot-themes__theme-card {
    background-color: #003366; /* Deep blue for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #004488;
}

.page-game-library-slot-themes__theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-library-slot-themes__theme-card h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card titles */
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-game-library-slot-themes__theme-card p {
    font-size: 1em;
    color: #cccccc;
}

.page-game-library-slot-themes__theme-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-game-library-slot-themes__image-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-game-library-slot-themes__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

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

.page-game-library-slot-themes__cta-group .page-game-library-slot-themes__btn:first-child {
    margin-right: 20px;
}

.page-game-library-slot-themes .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-library-slot-themes__title {
        font-size: 2.8em;
    }
    .page-game-library-slot-themes__section-title {
        font-size: 2.2em;
    }
    .page-game-library-slot-themes__hero {
        padding: 80px 0;
    }
    .page-game-library-slot-themes__section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .page-game-library-slot-themes__title {
        font-size: 2.2em;
    }
    .page-game-library-slot-themes__subtitle {
        font-size: 1.1em;
    }
    .page-game-library-slot-themes__section-title {
        font-size: 1.8em;
    }
    .page-game-library-slot-themes__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-library-slot-themes__btn.secondary-btn {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-game-library-slot-themes__theme-grid {
        grid-template-columns: 1fr;
    }
    .page-game-library-slot-themes__section p,
    .page-game-library-slot-themes__section ul li,
    .page-game-library-slot-themes__section ol li {
        font-size: 1em;
    }
    .page-game-library-slot-themes__cta-group .page-game-library-slot-themes__btn:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-game-library-slot-themes__cta-group .page-game-library-slot-themes__btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-game-library-slot-themes__title {
        font-size: 1.8em;
    }
    .page-game-library-slot-themes__subtitle {
        font-size: 0.9em;
    }
    .page-game-library-slot-themes__section-title {
        font-size: 1.5em;
    }
    .page-game-library-slot-themes__hero {
        padding: 60px 0;
    }
    .page-game-library-slot-themes__section {
        padding: 40px 0;
    }
    .page-game-library-slot-themes__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}