/* style/games-slots.css */
.page-games-slots {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray for general text */
    background-color: #0d1a2f; /* Darker background for contrast */
}

.page-games-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-slots__hero {
    background: linear-gradient(135deg, #1A2B4C, #0d1a2f); /* Main color to darker */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFD700; /* Gold for hero title */
}

.page-games-slots__hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-games-slots__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for H1 */
    line-height: 1.2;
}

.page-games-slots__hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.6;
}

.page-games-slots__hero-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    opacity: 0.15;
    z-index: 0;
    transform: rotate(15deg);
}

.page-games-slots__hero-image .page-games-slots__image {
    width: 600px;
    height: auto;
}

.page-games-slots__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold accent */
    color: #1A2B4C; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-games-slots__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-games-slots__cta-button--secondary {
    background-color: #1A2B4C;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 20px;
}

.page-games-slots__cta-button--secondary:hover {
    background-color: #0d1a2f;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-games-slots__cta-button--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-games-slots__cta-button--outline:hover {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-games-slots__introduction, .page-games-slots__slot-types, .page-games-slots__how-to-play, .page-games-slots__tips-strategy, .page-games-slots__why-okvip {
    padding: 60px 0;
    background-color: #1A2B4C; /* Main dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-games-slots__introduction h2, .page-games-slots__slot-types h2, .page-games-slots__how-to-play h2, .page-games-slots__tips-strategy h2, .page-games-slots__why-okvip h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
}

.page-games-slots__introduction p, .page-games-slots__how-to-play p, .page-games-slots__tips-strategy p, .page-games-slots__why-okvip p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-games-slots__introduction .page-games-slots__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-games-slots__card {
    background-color: #0d1a2f; /* Darker background for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-slots__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-games-slots__card h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-games-slots__card .page-games-slots__image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-slots__card p {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.page-games-slots__card-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B4C;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-games-slots__card-cta:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-games-slots__how-to-play ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin: 30px 0;
}

.page-games-slots__how-to-play ol li {
    counter-increment: my-awesome-counter;
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.page-games-slots__how-to-play ol li::before {
    content: counter(my-awesome-counter);
    background-color: #FFD700;
    color: #1A2B4C;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}

.page-games-slots__how-to-play a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-games-slots__how-to-play a:hover {
    text-decoration: underline;
}

.page-games-slots__tips-strategy ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-games-slots__tips-strategy ul li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-games-slots__tips-strategy ul li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.page-games-slots__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-slots__feature-item {
    background-color: #0d1a2f;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-slots__feature-item .page-games-slots__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-games-slots__feature-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-slots__feature-item p {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.7;
    text-align: center;
}

.page-games-slots__final-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-slots__final-cta p {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 30px;
}

/* Floating Promo Menu */
.page-games-slots__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700; /* Gold background for promo */
    color: #1A2B4C; /* Dark blue text for promo */
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    max-width: 300px;
    text-align: center;
    transform: translateX(120%); /* Start off-screen */
    transition: transform 0.5s ease-out;
}

.page-games-slots__floating-promo.show {
    transform: translateX(0); /* Slide in */
}

.page-games-slots__floating-promo h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1A2B4C;
}

.page-games-slots__floating-promo p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}

.page-games-slots__floating-cta {
    background-color: #1A2B4C;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.page-games-slots__floating-cta:hover {
    background-color: #0d1a2f;
}

.page-games-slots__floating-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2em;
    color: #1A2B4C;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.page-games-slots__floating-close:hover {
    color: #0d1a2f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-slots__hero h1 {
        font-size: 2.8em;
    }
    .page-games-slots__introduction h2, .page-games-slots__slot-types h2, .page-games-slots__how-to-play h2, .page-games-slots__tips-strategy h2, .page-games-slots__why-okvip h2 {
        font-size: 2em;
    }
    .page-games-slots__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-games-slots__hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-games-slots__hero {
        padding: 80px 0 40px;
    }
    .page-games-slots__hero h1 {
        font-size: 2.2em;
    }
    .page-games-slots__hero p {
        font-size: 1em;
    }
    .page-games-slots__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-slots__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-games-slots__introduction, .page-games-slots__slot-types, .page-games-slots__how-to-play, .page-games-slots__tips-strategy, .page-games-slots__why-okvip {
        padding: 40px 0;
    }
    .page-games-slots__introduction h2, .page-games-slots__slot-types h2, .page-games-slots__how-to-play h2, .page-games-slots__tips-strategy h2, .page-games-slots__why-okvip h2 {
        font-size: 1.8em;
    }
    .page-games-slots__how-to-play ol li, .page-games-slots__tips-strategy ul li {
        font-size: 1em;
        padding-left: 35px;
    }
    .page-games-slots__how-to-play ol li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
    .page-games-slots__floating-promo {
        max-width: 90%;
        left: 50%;
        transform: translateX(calc(50% + 120%)); /* Center and off-screen */
        bottom: 15px;
    }
    .page-games-slots__floating-promo.show {
        transform: translateX(-50%); /* Center and slide in */
    }
}

@media (max-width: 480px) {
    .page-games-slots__hero h1 {
        font-size: 1.8em;
    }
    .page-games-slots__introduction h2, .page-games-slots__slot-types h2, .page-games-slots__how-to-play h2, .page-games-slots__tips-strategy h2, .page-games-slots__why-okvip h2 {
        font-size: 1.5em;
    }
    .page-games-slots__cta-button, .page-games-slots__cta-button--secondary, .page-games-slots__cta-button--outline {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
    .page-games-slots__grid {
        grid-template-columns: 1fr;
    }
    .page-games-slots__final-cta .page-games-slots__cta-button {
        width: auto;
        display: inline-block;
    }
}