/* style/da-ga.css */

/* --- General Page Styling --- */
.page-da-ga {
    font-family: 'Arial', sans-serif;
    color: #333; /* Darker text for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for main content */
}

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

.page-da-ga__section {
    padding: 60px 0;
    text-align: center;
}

.page-da-ga__section:nth-child(even) {
    background-color: #f0f0f0; /* Slightly different background for alternating sections */
}

.page-da-ga__section-title {
    font-size: 2.8em;
    color: #0A2463; /* Primary brand color */
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-da-ga__subsection-title {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-da-ga p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

/* --- Buttons --- */
.page-da-ga__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.1em;
    margin: 10px;
    border: none;
}

.page-da-ga__btn--primary {
    background-color: #FFD700; /* Secondary brand color (Gold) */
    color: #0A2463; /* Primary brand color (Dark Blue) */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-da-ga__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-da-ga__btn--secondary {
    background-color: #0A2463; /* Primary brand color (Dark Blue) */
    color: #FFD700; /* Secondary brand color (Gold) */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(10, 36, 99, 0.4);
}

.page-da-ga__btn--secondary:hover {
    background-color: #1a3a7c; /* Slightly darker blue on hover */
    transform: translateY(-2px);
}

.page-da-ga__btn--small {
    padding: 8px 18px;
    font-size: 0.95em;
    margin: 5px;
}

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

/* --- Hero Section --- */
.page-da-ga__hero {
    background: linear-gradient(135deg, #0A2463, #1e4a9e); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-da-ga__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
    font-weight: 900;
}

.page-da-ga__hero-description {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-da-ga__hero-actions {
    margin-top: 30px;
}

.page-da-ga__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* No filter to change color */
}

/* --- About Section --- */
.page-da-ga__about p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-da-ga__feature-list li:hover {
    transform: translateY(-5px);
}

.page-da-ga__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    /* No filter to change color */
}

.page-da-ga__feature-list h4 {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-da-ga__feature-list p {
    font-size: 1em;
    color: #666;
}

/* --- How To Play Section --- */
.page-da-ga__how-to-play p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-da-ga__step-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-da-ga__step-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-da-ga__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /* No filter to change color */
}

.page-da-ga__step-list h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-da-ga__step-list p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-da-ga__cta-text {
    font-size: 1.2em;
    margin-top: 40px;
    color: #0A2463;
    font-weight: bold;
}

.page-da-ga__cta-text a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-da-ga__cta-text a:hover {
    color: #e6c200;
    text-decoration: underline;
}


/* --- Types Section --- */
.page-da-ga__types p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-da-ga__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* No filter to change color */
}

.page-da-ga__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin: 20px 15px 10px;
}

.page-da-ga__card-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px 20px;
}

.page-da-ga__note {
    font-style: italic;
    margin-top: 30px;
    color: #777;
}

/* --- Tips Section --- */
.page-da-ga__tip-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-da-ga__tip-list li {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0A2463;
}

.page-da-ga__tip-title {
    font-size: 1.4em;
    color: #FFD700; /* Gold for tip titles */
    margin-bottom: 10px;
}

.page-da-ga__tip-list p {
    font-size: 1em;
    color: #555;
}

/* --- Promotions Section --- */
.page-da-ga__promotions p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-da-ga__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-da-ga__promo-card:hover {
    transform: translateY(-5px);
}

.page-da-ga__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* No filter to change color */
}

.page-da-ga__promo-title {
    font-size: 1.6em;
    color: #0A2463;
    margin: 20px 15px 10px;
}

.page-da-ga__promo-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px 20px;
}

/* --- FAQ Section --- */
.page-da-ga__faq {
    background-color: #f0f0f0;
}

.page-da-ga__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-da-ga__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-da-ga__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-da-ga__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}


.page-da-ga__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

.page-da-ga__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content length */
    padding-top: 15px;
    padding-bottom: 5px;
}


/* --- Final CTA Section --- */
.page-da-ga__final-cta {
    background: linear-gradient(45deg, #0A2463, #1e4a9e);
    color: #fff;
    padding: 80px 0;
}

.page-da-ga__final-cta .page-da-ga__section-title {
    color: #FFD700;
}

.page-da-ga__final-cta p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-da-ga__final-cta-actions {
    margin-top: 30px;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-da-ga__hero-title {
        font-size: 3em;
    }
    .page-da-ga__hero-description {
        font-size: 1.2em;
    }
    .page-da-ga__section-title {
        font-size: 2.2em;
    }
    .page-da-ga__subsection-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-da-ga__hero {
        padding: 80px 0 50px;
    }
    .page-da-ga__hero-title {
        font-size: 2.5em;
    }
    .page-da-ga__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-da-ga__hero-actions .page-da-ga__btn {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
    .page-da-ga__section {
        padding: 40px 0;
    }
    .page-da-ga__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-da-ga__subsection-title {
        font-size: 1.6em;
        margin-top: 30px;
    }
    .page-da-ga__feature-list,
    .page-da-ga__step-list,
    .page-da-ga__card-grid,
    .page-da-ga__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-da-ga__feature-list li,
    .page-da-ga__step-list li,
    .page-da-ga__card,
    .page-da-ga__promo-card {
        padding: 20px;
    }
    .page-da-ga__final-cta {
        padding: 60px 0;
    }
    .page-da-ga__final-cta p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-da-ga__final-cta-actions .page-da-ga__btn {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-da-ga__hero-title {
        font-size: 2em;
    }
    .page-da-ga__hero-description {
        font-size: 1em;
    }
    .page-da-ga__section-title {
        font-size: 1.5em;
    }
    .page-da-ga__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-da-ga__final-cta .page-da-ga__section-title {
        font-size: 1.8em;
    }
}

/* Ensure contrast for text on various backgrounds */
.page-da-ga__hero-description strong,
.page-da-ga__hero-description a {
    color: #FFD700; /* Gold on dark blue for emphasis */
}

.page-da-ga__faq-question {
    color: #0A2463; /* Dark blue on white/light gray */
}

.page-da-ga__faq-answer {
    color: #555; /* Dark gray on white/light gray */
}

.page-da-ga__note {
    color: #666; /* Medium gray on light background */
}