/* style/betting-strategies-slots.css */
.page-betting-strategies-slots {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-betting-strategies-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-betting-strategies-slots__hero {
    background: linear-gradient(135deg, #4A2780, #FFD700);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-strategies-slots__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-strategies-slots__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

.page-betting-strategies-slots__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-betting-strategies-slots__btn--primary {
    background-color: #FFD700;
    color: #4A2780;
    border: 2px solid #FFD700;
}

.page-betting-strategies-slots__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-betting-strategies-slots__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-betting-strategies-slots__btn--secondary:hover {
    background-color: #FFD700;
    color: #4A2780;
    transform: translateY(-2px);
}

.page-betting-strategies-slots__btn--center {
    display: block;
    margin: 30px auto 0 auto;
    width: fit-content;
}

.page-betting-strategies-slots__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-betting-strategies-slots__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.page-betting-strategies-slots__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-betting-strategies-slots__section-title {
    font-size: 2.5em;
    color: #4A2780;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-betting-strategies-slots__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-betting-strategies-slots__intro p,
.page-betting-strategies-slots__strategies p,
.page-betting-strategies-slots__why-fi88 p,
.page-betting-strategies-slots__mistakes p,
.page-betting-strategies-slots__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-betting-strategies-slots__image-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-betting-strategies-slots__image-half {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.page-betting-strategies-slots__strategy-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-strategies-slots__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-betting-strategies-slots__strategy-title {
    font-size: 1.8em;
    color: #4A2780;
    margin-bottom: 15px;
}

.page-betting-strategies-slots__strategy-item ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 15px;
    color: #555;
}

.page-betting-strategies-slots__strategy-item ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-betting-strategies-slots__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-strategies-slots__feature-card {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.page-betting-strategies-slots__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-betting-strategies-slots__feature-card h3 {
    font-size: 1.4em;
    color: #4A2780;
    margin-bottom: 15px;
}

.page-betting-strategies-slots__feature-card p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

.page-betting-strategies-slots__mistakes ul {
    list-style-type: decimal;
    padding-left: 30px;
    margin-top: 20px;
    color: #555;
}

.page-betting-strategies-slots__mistakes ul li {
    margin-bottom: 12px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-betting-strategies-slots__conclusion p {
    text-align: center;
}

.page-betting-strategies-slots__sticky-cta {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #4A2780;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none; /* Hidden by default, shown by JS */
}

.page-betting-strategies-slots__sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-betting-strategies-slots__sticky-cta p {
    margin: 0;
    font-size: 1.1em;
    flex-grow: 1;
    text-align: left;
    color: #fff;
}

.page-betting-strategies-slots__highlight-text {
    color: #FFD700;
    font-weight: bold;
}

.page-betting-strategies-slots__btn--sticky {
    background-color: #FFD700;
    color: #4A2780;
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 5px;
    flex-shrink: 0;
}

.page-betting-strategies-slots__btn--sticky:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-strategies-slots__hero-title {
        font-size: 2.5em;
    }
    .page-betting-strategies-slots__section-title {
        font-size: 2em;
    }
    .page-betting-strategies-slots__strategy-title {
        font-size: 1.6em;
    }
    .page-betting-strategies-slots__sticky-cta-content {
        justify-content: center;
        text-align: center;
    }
    .page-betting-strategies-slots__sticky-cta p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-betting-strategies-slots__hero {
        padding: 80px 0;
    }
    .page-betting-strategies-slots__hero-title {
        font-size: 2em;
    }
    .page-betting-strategies-slots__hero-subtitle {
        font-size: 1em;
    }
    .page-betting-strategies-slots__section {
        padding: 40px 0;
    }
    .page-betting-strategies-slots__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-betting-strategies-slots__strategy-item {
        padding: 20px;
    }
    .page-betting-strategies-slots__strategy-title {
        font-size: 1.4em;
    }
    .page-betting-strategies-slots__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-strategies-slots__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-betting-strategies-slots__sticky-cta-content {
        flex-direction: column;
    }
    .page-betting-strategies-slots__sticky-cta p {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-betting-strategies-slots__hero {
        padding: 60px 0;
    }
    .page-betting-strategies-slots__hero-title {
        font-size: 1.8em;
    }
    .page-betting-strategies-slots__section-title {
        font-size: 1.5em;
    }
    .page-betting-strategies-slots__strategy-title {
        font-size: 1.2em;
    }
    .page-betting-strategies-slots__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-betting-strategies-slots__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-strategies-slots__sticky-cta p {
        font-size: 0.9em;
    }
    .page-betting-strategies-slots__btn--sticky {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}