.page-da-ga {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa; /* Assuming --secondary-color is light for content readability */
}

.page-da-ga__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-da-ga__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #26A9E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-da-ga__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-da-ga__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-da-ga__hero-content-wrapper {
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(38, 169, 224, 0.8), rgba(38, 169, 224, 0.9));
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.page-da-ga__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-da-ga__intro-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-da-ga__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-da-ga__cta-buttons--center {
    margin-top: 30px;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-da-ga__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-da-ga__btn-primary:hover {
    background-color: #d16b05;
    border-color: #d16b05;
    transform: translateY(-2px);
}

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

.page-da-ga__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #1e87b6;
    border-color: #1e87b6;
    transform: translateY(-2px);
}

.page-da-ga__btn-link {
    display: inline-block;
    margin-top: 15px;
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-da-ga__btn-link:hover {
    color: #1e87b6;
    text-decoration: underline;
}

.page-da-ga__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0;
}

.page-da-ga__section-title--white {
    color: #ffffff;
}

.page-da-ga__section-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-da-ga__section-description--white {
    color: #f0f0f0;
}

.page-da-ga__about-section,
.page-da-ga__guide-section,
.page-da-ga__promotions-section,
.page-da-ga__faq-section {
    padding: 60px 0;
}

.page-da-ga__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 60px 0;
}

.page-da-ga__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-da-ga__text-block {
    flex: 1;
    font-size: 1.1rem;
}

.page-da-ga__text-block p {
    margin-bottom: 15px;
}

.page-da-ga__image-block {
    flex: 1;
    text-align: center;
}

.page-da-ga__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-da-ga__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-da-ga__card--dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__card--dark:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-da-ga__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-da-ga__card--dark .page-da-ga__card-title {
    color: #ffffff;
}

.page-da-ga__card p {
    font-size: 1rem;
    color: #555555;
}

.page-da-ga__card--dark p {
    color: #f0f0f0;
}

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

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

.page-da-ga__step-item:hover {
    transform: translateY(-5px);
}

.page-da-ga__step-icon {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-da-ga__step-icon img {
    
    
    object-fit: contain;
    max-width: 100%;
    display: block;
}

.page-da-ga__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-da-ga__step-item p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

.page-da-ga__tip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-da-ga__tip-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-da-ga__promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-da-ga__promo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-da-ga__promo-content {
    padding: 0 15px;
}

.page-da-ga__promo-content .page-da-ga__card-title {
    margin-top: 0;
}

/* FAQ Styles */
details.page-da-ga__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question::-webkit-details-marker {
    display: none;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question:hover {
    background: #f5f5f5;
}
.page-da-ga__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #333333;
}
.page-da-ga__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-da-ga__faq-item .page-da-ga__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: #555555;
}

.page-da-ga__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

/* General image responsiveness */
.page-da-ga img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-da-ga__hero-content-wrapper {
        padding: 30px 15px;
    }

    .page-da-ga__main-title {
        font-size: 2.8rem;
    }

    .page-da-ga__intro-text {
        font-size: 1.2rem;
    }

    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-da-ga__section-title {
        font-size: 2.5rem;
    }

    .page-da-ga__section-description {
        font-size: 1.1rem;
    }

    .page-da-ga__about-section .page-da-ga__content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-da-ga__text-block, .page-da-ga__image-block {
        flex: none;
        width: 100%;
    }

    .page-da-ga__bet-types-grid,
    .page-da-ga__promotions-grid,
    .page-da-ga__tips-grid,
    .page-da-ga__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .page-da-ga__card,
    .page-da-ga__step-item {
        padding: 25px;
    }

    .page-da-ga__card-title {
        font-size: 1.3rem;
    }

    .page-da-ga__step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 849px) {
    .page-da-ga__hero-image {
        object-fit: contain !important; /* Prevents cropping on smaller screens */
        aspect-ratio: unset !important; /* Allows height to adjust freely */
    }
}

@media (max-width: 768px) {
    .page-da-ga__container {
        padding: 15px;
    }

    .page-da-ga__hero-section {
        padding-top: 10px;
    }

    .page-da-ga__hero-content-wrapper {
        padding: 25px 15px;
    }

    .page-da-ga__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-da-ga__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-da-ga__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-da-ga__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

    .page-da-ga__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-da-ga__about-section,
    .page-da-ga__bet-types-section,
    .page-da-ga__guide-section,
    .page-da-ga__tips-section,
    .page-da-ga__promotions-section,
    .page-da-ga__faq-section,
    .page-da-ga__cta-final-section {
        padding: 40px 0;
    }

    .page-da-ga__content-grid {
        gap: 20px;
    }

    .page-da-ga__text-block p {
        font-size: 1rem;
    }

    .page-da-ga__bet-types-grid,
    .page-da-ga__promotions-grid,
    .page-da-ga__tips-grid,
    .page-da-ga__guide-steps {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        overflow-x: hidden;
    }

    .page-da-ga__card,
    .page-da-ga__step-item {
        padding: 20px;
    }

    .page-da-ga__card-title {
        font-size: 1.2rem;
    }

    .page-da-ga__step-title {
        font-size: 1.2rem;
    }

    .page-da-ga__tip-image,
    .page-da-ga__promo-image,
    .page-da-ga__content-image,
    .page-da-ga__step-icon img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-da-ga__section,
    .page-da-ga__card,
    .page-da-ga__container,
    .page-da-ga__bet-types-section,
    .page-da-ga__guide-section,
    .page-da-ga__tips-section,
    .page-da-ga__promotions-section,
    .page-da-ga__faq-section,
    .page-da-ga__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-da-ga__faq-item summary.page-da-ga__faq-question { padding: 15px; }
    .page-da-ga__faq-qtext { font-size: 15px; }
    details.page-da-ga__faq-item .page-da-ga__faq-answer { padding: 0 15px 15px; }
}