/* style/da-ga.css */
.page-da-ga {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

.page-da-ga__hero-section {
    padding-top: 10px; /* Rely on body padding-top from shared.css for header offset */
    padding-bottom: 60px;
    background-color: #0A0A0A;
}

.page-da-ga__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px 15px;
}

.page-da-ga__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-da-ga__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: #F2C14E; /* Primary */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-da-ga__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111;
    border: 2px solid transparent;
}

.page-da-ga__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
    background: transparent;
    color: #FFD36B; /* Glow */
    border: 2px solid #FFD36B; /* Glow */
}

.page-da-ga__btn-secondary:hover {
    background: #FFD36B;
    color: #111111;
    transform: translateY(-2px);
}

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

.page-da-ga__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.page-da-ga__content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 15px;
    box-sizing: border-box;
}

.page-da-ga__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Primary */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-da-ga__paragraph {
    font-size: 1.1em;
    color: #FFF6D6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-da-ga__introduction-section {
    background-color: #111111; /* Card BG */
    padding: 60px 0;
}

.page-da-ga__btn-inline {
    margin-top: 20px;
}

.page-da-ga__gameplay-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-da-ga__grid-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__image-content {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-da-ga__item-title {
    font-size: 1.5em;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-da-ga__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-da-ga__list li {
    margin-bottom: 10px;
    color: #FFF6D6;
    position: relative;
    padding-left: 25px;
}

.page-da-ga__list li::before {
    content: '•';
    color: #F2C14E;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-da-ga__betting-guide-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG */
}

.page-da-ga__steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-da-ga__step-item {
    flex: 1 1 280px;
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-da-ga__step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2C14E; /* Primary */
    color: #111111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    border: 3px solid #0A0A0A;
}

.page-da-ga__step-title {
    font-size: 1.4em;
    color: #FFD36B; /* Glow */
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-da-ga__step-description {
    color: #FFF6D6;
}

.page-da-ga__tips-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-da-ga__tip-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-da-ga__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-da-ga__card-title {
    font-size: 1.3em;
    color: #FFD36B; /* Glow */
    margin-bottom: 10px;
}

.page-da-ga__card-description {
    color: #FFF6D6;
}

.page-da-ga__promo-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG */
    text-align: center;
}

.page-da-ga__faq-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-da-ga__faq-list {
    margin-top: 30px;
}

.page-da-ga__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: #F2C14E; /* Primary */
    cursor: pointer;
    background-color: #1a1a1a;
    list-style: none; /* For details/summary */
}

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

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

.page-da-ga__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFF6D6;
}

.page-da-ga__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1em;
    color: #FFF6D6;
    background-color: #111111; /* Card BG */
}

.page-da-ga__faq-answer p {
    margin-bottom: 0;
}

.page-da-ga__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #111111 0%, #0A0A0A 100%);
    text-align: center;
}

.page-da-ga__cta-content {
    padding: 40px 15px;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 15px;
    border: 1px solid #3A2A12;
}

.page-da-ga__btn-large {
    padding: 16px 32px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-da-ga .highlight {
    color: #FFD36B;
    font-weight: bold;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-da-ga__main-title {
        font-size: 2.8em;
    }
    .page-da-ga__section-title {
        font-size: 2.2em;
    }
    .page-da-ga__hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-da-ga__hero-content {
        text-align: center;
    }
    .page-da-ga__hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-da-ga__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }
    .page-da-ga__hero-container {
        padding: 20px 10px !important;
        gap: 20px !important;
    }
    .page-da-ga__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
    }
    .page-da-ga__hero-description {
        font-size: 1em !important;
        margin-bottom: 20px !important;
    }
    .page-da-ga__hero-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary {
        padding: 12px 20px !important;
        font-size: 1em !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto; /* Center buttons if they are block */
    }
    .page-da-ga__hero-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-da-ga__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* General Content Sections */
    .page-da-ga__content-container {
        padding: 20px 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-da-ga__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px !important;
    }
    .page-da-ga__paragraph {
        font-size: 0.95em !important;
    }
    .page-da-ga__btn-inline {
        margin-top: 15px !important;
    }

    /* Gameplay Section */
    .page-da-ga__grid-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .page-da-ga__grid-item {
        padding: 20px !important;
    }
    .page-da-ga__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Betting Guide Section (Steps) */
    .page-da-ga__steps-list {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .page-da-ga__step-item {
        flex: 1 1 100% !important;
        padding: 20px !important;
    }

    /* Tips Section */
    .page-da-ga__tips-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .page-da-ga__tip-card {
        padding: 15px !important;
    }
    .page-da-ga__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Promo Section */
    .page-da-ga__promo-section {
        padding: 40px 0 !important;
    }

    /* FAQ Section */
    .page-da-ga__faq-section {
        padding: 40px 0 !important;
    }
    .page-da-ga__faq-question {
        padding: 15px 20px !important;
        font-size: 1.1em !important;
    }
    .page-da-ga__faq-answer {
        padding: 10px 20px 20px !important;
        font-size: 0.9em !important;
    }

    /* CTA Section */
    .page-da-ga__cta-section {
        padding: 50px 0 !important;
    }
    .page-da-ga__cta-content {
        padding: 30px 15px !important;
    }
    .page-da-ga__btn-large {
        padding: 14px 25px !important;
        font-size: 1.1em !important;
    }

    /* Universal image and container handling for mobile */
    .page-da-ga img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-da-ga__section,
    .page-da-ga__card,
    .page-da-ga__container,
    .page-da-ga__grid-item,
    .page-da-ga__step-item,
    .page-da-ga__tip-card,
    .page-da-ga__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-da-ga__content-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}