/* style/slot-games.css */

/* Base Styles for .page-slot-games */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8;
}

/* Global Container */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Titles and Descriptions */
.page-slot-games__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-slot-games__section-description {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    padding-bottom: 0;
    margin-top: 0;
    overflow: hidden;
}

.page-slot-games__hero-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.page-slot-games__hero-image {
    width: 100%;
    line-height: 0;
}

.page-slot-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Intro Section */
.page-slot-games__intro-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-slot-games__main-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFD700; /* Brand gold for main title */
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-slot-games__description {
    font-size: 19px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-tertiary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-slot-games__btn-secondary {
    background-color: #000000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn-secondary:hover {
    background-color: #333333;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-tertiary {
    background-color: #e0e0e0;
    color: #333333;
    border: 1px solid #cccccc;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.page-slot-games__btn-tertiary:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.page-slot-games__btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

/* Game Types Section */
.page-slot-games__game-types-section {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

.page-slot-games__game-types-section .page-slot-games__section-title {
    color: #FFD700;
}

.page-slot-games__game-types-section .page-slot-games__section-description {
    color: #cccccc;
}

.page-slot-games__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slot-games__game-type-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #333333;
}

.page-slot-games__game-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games__game-type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-slot-games__game-type-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #FFD700;
}

.page-slot-games__game-type-card p {
    font-size: 16px;
    padding: 0 25px 30px;
    color: #555555;
}

/* Advantages Section */
.page-slot-games__advantages-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-slot-games__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-slot-games__advantage-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-slot-games__advantage-item h3 {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slot-games__advantage-item p {
    font-size: 16px;
    color: #555555;
}

/* Guide Section */
.page-slot-games__guide-section {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

.page-slot-games__guide-section .page-slot-games__section-title {
    color: #FFD700;
}

.page-slot-games__guide-section .page-slot-games__section-description {
    color: #cccccc;
}

.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-slot-games__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    color: #333333;
    min-height: 280px; /* Ensure consistent card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-card h3 {
    font-size: 22px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-slot-games__step-card p {
    font-size: 16px;
    color: #555555;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-slot-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slot-games__promo-card {
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #ffffff;
}

.page-slot-games__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games__promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-slot-games__promo-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #FFD700;
}

.page-slot-games__promo-card p {
    font-size: 16px;
    padding: 0 25px 25px;
    color: #cccccc;
}

.page-slot-games__promo-card .page-slot-games__btn-primary {
    margin-bottom: 30px;
}

/* Tips Section */
.page-slot-games__tips-section {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

.page-slot-games__tips-section .page-slot-games__section-title {
    color: #FFD700;
}

.page-slot-games__tips-section .page-slot-games__section-description {
    color: #cccccc;
}

.page-slot-games__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__tips-list li {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 17px;
    color: #f0f0f0;
    border-left: 5px solid #FFD700;
}

.page-slot-games__tips-list li strong {
    color: #FFD700;
}

.page-slot-games__tips-section .page-slot-games__btn-primary {
    margin-top: 40px;
}

/* Support Section */
.page-slot-games__support-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-slot-games__support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-slot-games__support-text p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
}

.page-slot-games__contact-methods ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-slot-games__contact-methods li {
    font-size: 17px;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-slot-games__contact-methods li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    top: 0;
}

.page-slot-games__support-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #000000;
}

.page-slot-games__faq-section .page-slot-games__section-title {
    color: #FFD700;
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #222222;
    border: 1px solid #333333;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-slot-games__faq-question:hover {
    background: #333333;
    border-color: #555555;
}

.page-slot-games__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #ffffff;
}

.page-slot-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #cccccc;
    font-size: 16px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
    background: #1a1a1a;
    border-radius: 0 0 5px 5px;
    border: 1px solid #333333;
    border-top: none;
}

/* Call to Action Section */
.page-slot-games__call-to-action {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-slot-games__call-to-action img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
/* Mobile first approach, desktop overrides */

/* All images base responsive styles */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* All buttons base responsive styles */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-tertiary,
.page-slot-games a[class*="button"],
.page-slot-games a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Button containers base responsive styles */
.page-slot-games__cta-buttons,
.page-slot-games__button-group,
.page-slot-games__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .page-slot-games__game-type-card img {
        height: 200px;
    }
    .page-slot-games__support-content {
        grid-template-columns: 1fr;
    }
    .page-slot-games__support-image {
        order: -1; /* Image above text on smaller screens */
    }
    .page-slot-games__main-title {
        font-size: 36px;
    }
    .page-slot-games__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__container {
        padding: 0 15px;
    }

    .page-slot-games__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-slot-games__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-slot-games__main-title {
        font-size: 32px;
    }

    .page-slot-games__description {
        font-size: 17px;
        margin-bottom: 30px;
    }

    /* Mobile images forced responsive */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Content sections padding */
    .page-slot-games__intro-section,
    .page-slot-games__game-types-section,
    .page-slot-games__advantages-section,
    .page-slot-games__guide-section,
    .page-slot-games__promotions-section,
    .page-slot-games__tips-section,
    .page-slot-games__support-section,
    .page-slot-games__faq-section,
    .page-slot-games__call-to-action {
        padding: 40px 0;
    }

    /* Buttons responsive */
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games__btn-tertiary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 25px !important;
        font-size: 16px !important;
    }

    .page-slot-games__btn-large {
        padding: 15px 30px !important;
        font-size: 18px !important;
    }

    .page-slot-games__game-type-card img {
        
    }

    .page-slot-games__game-type-card h3 {
        font-size: 20px;
    }

    .page-slot-games__advantage-item h3 {
        font-size: 19px;
    }

    .page-slot-games__step-card {
        padding: 25px;
        min-height: auto;
    }

    .page-slot-games__step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
        top: -15px;
        border-width: 3px;
    }

    .page-slot-games__promo-card img {
        
    }

    .page-slot-games__promo-card h3 {
        font-size: 20px;
    }

    .page-slot-games__tips-list li {
        font-size: 15px;
        padding: 15px 20px;
    }

    .page-slot-games__support-text p,
    .page-slot-games__contact-methods li {
        font-size: 15px;
    }

    .page-slot-games__faq-question {
        padding: 15px;
    }

    .page-slot-games__faq-question h3 {
        font-size: 16px;
    }

    .page-slot-games__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }

    .page-slot-games__faq-item.active .page-slot-games__faq-answer {
        padding: 15px !important;
    }
}