/* style/da-ga.css */

/* Base styles for the page content */
.page-da-ga {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Default body background is white */
}

.page-da-ga__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.page-da-ga__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-da-ga__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Hero Section */
.page-da-ga__hero-section {
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 60px;
    background-color: #F8F8F8; /* Light background for hero */
}

.page-da-ga__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 16px;
}

.page-da-ga__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #333333; /* Dark text on light background */
}

.page-da-ga__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 800;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-da-ga__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555555;
}

.page-da-ga__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-da-ga__btn-primary {
    background: #26A9E0;
    color: #FFFFFF;
    border: 2px solid transparent;
}

.page-da-ga__btn-primary:hover {
    background: #1e8fc0;
    border-color: #1e8fc0;
}

.page-da-ga__btn-secondary {
    background: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-da-ga__btn-secondary:hover {
    background: #e0f2f7;
    color: #26A9E0;
}

.page-da-ga__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-da-ga__hero-side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* Intro Section */
.page-da-ga__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-da-ga__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-da-ga__feature-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-da-ga__icon-box-media {
    width: 240px;
    height: 240px;
    aspect-ratio: 1 / 1; /* Ensure it's square */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #26A9E0;
    box-sizing: border-box;
}

.page-da-ga__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Make image round */
    display: block;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-da-ga__feature-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-da-ga__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Why Choose Section */
.page-da-ga__why-choose-section {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand primary color background */
    color: #FFFFFF; /* White text on dark background */
}

.page-da-ga__why-choose-section .page-da-ga__section-title {
    color: #FFFFFF; /* White title */
}

.page-da-ga__why-choose-section .page-da-ga__text-block {
    color: #f0f0f0;
}

.page-da-ga__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-da-ga__image-left {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-da-ga__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-da-ga__text-right {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-da-ga__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.page-da-ga__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    color: #f0f0f0;
}

.page-da-ga__list li span {
    margin-right: 10px;
}

/* Betting Types Section */
.page-da-ga__betting-types-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

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

.page-da-ga__bet-type-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.page-da-ga__card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-da-ga__card-description {
    font-size: 1em;
    color: #555555;
}

/* Guide Section */
.page-da-ga__guide-section {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand primary color background */
    color: #FFFFFF; /* White text on dark background */
}

.page-da-ga__guide-section .page-da-ga__section-title {
    color: #FFFFFF;
}

.page-da-ga__guide-section .page-da-ga__text-block {
    color: #f0f0f0;
}

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

.page-da-ga__guide-step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-da-ga__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #26A9E0;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-da-ga__step-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-da-ga__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-da-ga__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-da-ga__btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Tips Section */
.page-da-ga__tips-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

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

.page-da-ga__tip-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.page-da-ga__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* FAQ Section */
.page-da-ga__faq-section {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand primary color background */
    color: #FFFFFF; /* White text on dark background */
}

.page-da-ga__faq-section .page-da-ga__section-title {
    color: #FFFFFF;
}

.page-da-ga__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-da-ga__faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-da-ga__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none; /* For details/summary */
}

.page-da-ga__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}
.page-da-ga__faq-question::marker {
    display: none; /* Hide default marker */
}

.page-da-ga__faq-qtext {
    flex-grow: 1;
}

.page-da-ga__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-da-ga__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.05em;
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.05);
}

/* Final CTA Section */
.page-da-ga__cta-final-section {
    padding: 60px 0;
    background-color: #F8F8F8;
    color: #333333;
    text-align: center;
}

.page-da-ga__cta-final-section .page-da-ga__section-title {
    color: #26A9E0;
}

.page-da-ga__cta-final-content {
    max-width: 800px;
}

/* General image and button responsive styles */
.page-da-ga img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.page-da-ga__section,
.page-da-ga__card,
.page-da-ga__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-da-ga__container {
        padding: 0 15px; /* Adjust padding for mobile */
    }

    .page-da-ga__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-da-ga__hero-container {
        flex-direction: column;
        padding: 40px 15px;
        gap: 30px;
    }

    .page-da-ga__hero-content,
    .page-da-ga__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-da-ga__main-title {
        font-size: 2em;
        text-align: center;
    }

    .page-da-ga__hero-description {
        font-size: 1em;
        text-align: center;
    }

    .page-da-ga__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary,
    .page-da-ga a[class*="button"],
    .page-da-ga a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-da-ga__cta-buttons,
    .page-da-ga__button-group,
    .page-da-ga__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .page-da-ga__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-da-ga__features-grid,
    .page-da-ga__bet-types-grid,
    .page-da-ga__guide-steps,
    .page-da-ga__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-da-ga__icon-box-media {
        width: 200px;
        height: 200px;
        margin: 0 auto 15px;
        border-width: 3px;
    }

    .page-da-ga__icon-box-media img {
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-da-ga__why-choose-section .page-da-ga__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-da-ga__image-left,
    .page-da-ga__text-right {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-da-ga__content-image,
    .page-da-ga__card-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-da-ga img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-da-ga__section,
    .page-da-ga__card,
    .page-da-ga__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-da-ga__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-da-ga__faq-answer {
        font-size: 0.95em;
        padding: 10px 20px 15px;
    }

    .page-da-ga__btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-da-ga__intro-section, .page-da-ga__why-choose-section, .page-da-ga__betting-types-section, .page-da-ga__guide-section, .page-da-ga__tips-section, .page-da-ga__faq-section, .page-da-ga__cta-final-section {
        padding: 40px 0 !important;
    }
}