/* style/index-about-789win.css */

/* Base Styles for the page content, using body background color #121212 */
.page-index-about-789win {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Let body background from shared.css show through */
}

.page-index-about-789win__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-index-about-789win__section-title {
    font-size: 36px;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-about-789win__sub-title {
    font-size: 28px;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-about-789win__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for readability */
}

/* Buttons */
.page-index-about-789win__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-about-789win__btn-primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000000;
}

.page-index-about-789win__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid #FFD700; /* Gold border */
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-about-789win__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
    border-color: #e6c200;
}

/* Hero Section */
.page-index-about-789win__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    background-color: #003366; /* Main brand color as fallback */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index-about-789win__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-index-about-789win__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Darken image for text readability */
    display: block;
}

.page-index-about-789win__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-index-about-789win__hero-title {
    font-size: 56px;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
}

.page-index-about-789win__hero-description {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Section specific styles */
.page-index-about-789win__section {
    padding: 80px 0;
}

.page-index-about-789win__introduction {
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-index-about-789win__why-choose {
    background-color: #003366; /* Main brand color */
}

.page-index-about-789win__dark-section {
    background-color: #003366;
    color: #ffffff;
}

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

.page-index-about-789win__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-index-about-789win__feature-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
}

.page-index-about-789win__feature-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-about-789win__feature-description {
    font-size: 16px;
    color: #f0f0f0;
}

.page-index-about-789win__mission-vision {
    background-color: #1a1a1a;
}

.page-index-about-789win__content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-index-about-789win__text-content {
    flex: 1;
}

.page-index-about-789win__image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-about-789win__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-index-about-789win__responsible-gambling {
    text-align: center;
}

.page-index-about-789win__responsible-gambling .page-index-about-789win__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-index-about-789win__technology {
    background-color: #1a1a1a;
}

/* FAQ Section */
.page-index-about-789win__faq-area {
    padding-bottom: 80px;
}

.page-index-about-789win__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-index-about-789win__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible background for item */
}

/* FAQ default state - answer hidden */
.page-index-about-789win__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: #f0f0f0;
    font-size: 16px;
}

/* FAQ expanded state - [31m🚨 Use!important and sufficiently large max-height [0m*/
.page-index-about-789win__faq-item.active .page-index-about-789win__faq-answer {
    max-height: 2000px !important; /* [31m🚨 Use!important to ensure priority, value large enough for any content [0m*/
    padding: 20px !important; /* [31m🚨 Use!important [0m*/
    opacity: 1;
    background: rgba(255, 255, 255, 0.1); /* Lighter background for answer */
    border-radius: 0 0 5px 5px;
}

/* Question style */
.page-index-about-789win__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #004488; /* Darker blue for question */
    border: 1px solid #003366;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: #ffffff;
}

.page-index-about-789win__faq-question:hover {
    background: #0055aa; /* Lighter blue on hover */
    border-color: #004488;
}

.page-index-about-789win__faq-question:active {
    background: #0066cc;
}

/* Question title style */
.page-index-about-789win__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Prevent h3 from blocking click events */
    color: #FFD700; /* Gold for question title */
}

/* Toggle icon */
.page-index-about-789win__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click events */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-index-about-789win__faq-item.active .page-index-about-789win__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg); /* Rotate to form 'X' or just change to '-' */
}

/* Images */
.page-index-about-789win img {
    max-width: 100%;
    height: auto;
    display: block;
    /* No filter properties allowed */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-about-789win__hero-title {
        font-size: 48px;
    }
    .page-index-about-789win__hero-description {
        font-size: 20px;
    }
    .page-index-about-789win__section-title {
        font-size: 32px;
    }
    .page-index-about-789win__sub-title {
        font-size: 24px;
    }
    .page-index-about-789win__text-block {
        font-size: 17px;
    }
    .page-index-about-789win__content-with-image {
        flex-direction: column;
        align-items: center;
    }
    .page-index-about-789win__image-wrapper {
        max-width: 80%;
        flex: none;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile general container padding */
    .page-index-about-789win__container {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Hero Section */
    .page-index-about-789win__hero-section {
        padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
        padding-bottom: 40px;
    }
    .page-index-about-789win__hero-content {
        padding: 15px;
    }
    .page-index-about-789win__hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .page-index-about-789win__hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .page-index-about-789win__btn-primary,
    .page-index-about-789win__btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Section titles */
    .page-index-about-789win__section {
        padding: 40px 0;
    }
    .page-index-about-789win__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-index-about-789win__sub-title {
        font-size: 22px;
    }
    .page-index-about-789win__text-block {
        font-size: 16px;
    }

    /* Features Grid */
    .page-index-about-789win__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Content with image */
    .page-index-about-789win__content-with-image {
        flex-direction: column;
        gap: 20px;
    }
    .page-index-about-789win__image-wrapper {
        max-width: 100%;
        margin-top: 20px;
    }

    /* FAQ */
    .page-index-about-789win__faq-list {
        margin-top: 30px;
    }
    .page-index-about-789win__faq-question {
        padding: 15px;
    }
    .page-index-about-789win__faq-question h3 {
        font-size: 16px;
    }
    .page-index-about-789win__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-index-about-789win__faq-answer {
        padding: 0 15px;
    }
    .page-index-about-789win__faq-item.active .page-index-about-789win__faq-answer {
        padding: 15px !important;
    }

    /* Images Mobile Responsive */
    .page-index-about-789win img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-about-789win__section,
    .page-index-about-789win__card,
    .page-index-about-789win__container,
    .page-index-about-789win__hero-section,
    .page-index-about-789win__features-grid,
    .page-index-about-789win__feature-card,
    .page-index-about-789win__content-with-image,
    .page-index-about-789win__image-wrapper,
    .page-index-about-789win__faq-list,
    .page-index-about-789win__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding added to container, not individual elements, to prevent double padding */
    }
}