/* style/blog-how-to-play-classic-slot-games-on-f1689.css */

:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-dark: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-how-to-play-classic-slot-games-on-f1689 {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-dark);
    line-height: 1.6;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__light-bg {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
    color: var(--text-main);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__heading {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Hero Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    position: relative;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image covers the area, cropping if necessary */
    border-radius: 10px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__description {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__btn-primary,
.page-blog-how-to-play-classic-slot-games-on-f1689__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__feature-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__feature-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__feature-description {
    font-size: 1em;
    color: var(--text-main);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Guide Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__step-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__step-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__step-description {
    font-size: 1em;
    color: var(--text-main);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Game Types Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    max-width: 100%;
    display: block;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__card-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__card-description {
    font-size: 0.95em;
    color: var(--text-main);
}

/* Strategies Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__list-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-color);
    color: var(--text-main);
    font-size: 1.05em;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__list-item strong {
    color: var(--secondary-color);
}

/* Safety Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__safety-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__safety-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__safety-description {
    font-size: 1em;
    color: var(--text-main);
}

/* FAQ Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid transparent; /* default */
    list-style: none; /* For <summary> tag */
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-item[open] .page-blog-how-to-play-classic-slot-games-on-f1689__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    width: 20px;
    text-align: center;
    line-height: 1;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-main);
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-blog-how-to-play-classic-slot-games-on-f1689__faq-link:hover {
    color: var(--secondary-color);
}

/* Conclusion Section */
.page-blog-how-to-play-classic-slot-games-on-f1689__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* General image styling */
.page-blog-how-to-play-classic-slot-games-on-f1689 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-play-classic-slot-games-on-f1689__heading {
        font-size: 2em;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__description {
        font-size: 1.1em;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-play-classic-slot-games-on-f1689 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__section {
        padding: 30px 0;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__hero-image-wrapper {
        max-height: 400px;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__hero-image {
        object-fit: contain !important; /* Mobile hero image: contain, not cover */
        height: auto !important;
        max-height: 100% !important;
        width: 100% !important;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__description {
        font-size: 1em;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-blog-how-to-play-classic-slot-games-on-f1689__btn-primary,
    .page-blog-how-to-play-classic-slot-games-on-f1689__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__grid-2-col,
    .page-blog-how-to-play-classic-slot-games-on-f1689__guide-steps,
    .page-blog-how-to-play-classic-slot-games-on-f1689__grid-3-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__feature-item,
    .page-blog-how-to-play-classic-slot-games-on-f1689__step-item,
    .page-blog-how-to-play-classic-slot-games-on-f1689__card,
    .page-blog-how-to-play-classic-slot-games-on-f1689__safety-item {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Universal image responsive for content area */
    .page-blog-how-to-play-classic-slot-games-on-f1689 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__container,
    .page-blog-how-to-play-classic-slot-games-on-f1689__section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__card-image {
        height: 180px; /* Adjust card image height for mobile */
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-how-to-play-classic-slot-games-on-f1689__faq-answer {
        padding: 15px 20px;
    }

    /* No specific winner list or game grid for this blog page, so no specific mobile rules for them. */
}