/* style/da-ga.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-da-ga {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3, .page-da-ga h4 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-da-ga h1 {
    font-size: 3.2em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-da-ga h2 {
    font-size: 2.5em;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    margin-top: 50px;
}

.page-da-ga h3 {
    font-size: 1.8em;
    color: var(--text-dark);
}

.page-da-ga h4 {
    font-size: 1.4em;
    color: var(--secondary-color);
}

.page-da-ga p {
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: justify;
}

.page-da-ga ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-da-ga ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-da-ga .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.page-da-ga .cta-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-da-ga .cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Hero Section */
.page-da-ga .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a30000 50%, var(--secondary-color) 100%);
    color: var(--text-light);
    overflow: hidden;
}

.page-da-ga .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-da-ga .hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 900px; /* Adjust max-width for image */
}

.page-da-ga .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-da-ga .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-da-ga .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-da-ga .hero-content p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Section Styling */
.page-da-ga .section-intro, .page-da-ga .section-why-choose, .page-da-ga .section-bet-types, .page-da-ga .section-tips, .page-da-ga .section-how-to-join, .page-da-ga .section-promotions, .page-da-ga .section-security, .page-da-ga .section-faq, .page-da-ga .section-conclusion {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-da-ga .section-why-choose, .page-da-ga .section-how-to-join {
    background-color: #ffffff;
}

.page-da-ga .section-promotions {
    background-color: var(--bg-light);
}

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

.page-da-ga .feature-item, .page-da-ga .tip-card, .page-da-ga .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga .feature-item:hover, .page-da-ga .tip-card:hover, .page-da-ga .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-da-ga .feature-icon, .page-da-ga .step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 5px;
}

.page-da-ga .feature-item h3, .page-da-ga .tip-card h3, .page-da-ga .step-item h4 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-da-ga .tip-summary {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--secondary-color);
}

/* FAQ Styling */
.page-da-ga .faq-list {
    margin-top: 40px;
}

.page-da-ga .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-da-ga .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-da-ga .faq-question:hover {
    background: #f0f0f0;
}

.page-da-ga .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-dark);
    text-align: left;
    flex-grow: 1;
}

.page-da-ga .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-da-ga .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: var(--bg-light);
}

.page-da-ga .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-da-ga .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-da-ga .faq-answer p {
    margin: 0;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-da-ga .hero-content h1 {
        font-size: 3em;
    }
    .page-da-ga .hero-content p {
        font-size: 1.1em;
    }
    .page-da-ga h2 {
        font-size: 2em;
    }
    .page-da-ga h3 {
        font-size: 1.6em;
    }
    .page-da-ga .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-da-ga .hero-section {
        padding: 60px 15px 40px;
    }
    .page-da-ga .hero-content h1 {
        font-size: 2.5em;
    }
    .page-da-ga .hero-content p {
        font-size: 1em;
    }
    .page-da-ga h2 {
        font-size: 1.8em;
        margin-top: 40px;
    }
    .page-da-ga h3 {
        font-size: 1.4em;
    }
    .page-da-ga .container {
        padding: 15px;
    }
    .page-da-ga .features-grid, .page-da-ga .tips-grid, .page-da-ga .step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-da-ga .feature-item, .page-da-ga .tip-card, .page-da-ga .step-item {
        padding: 20px;
    }
    .page-da-ga .feature-icon, .page-da-ga .step-icon {
        width: 80px;
        height: 80px;
    }
    .page-da-ga .faq-question {
        padding: 15px 20px;
    }
    .page-da-ga .faq-question h3 {
        font-size: 1.1em;
    }
    .page-da-ga .faq-toggle {
        font-size: 20px;
    }
    .page-da-ga .faq-answer {
        padding: 0 20px;
    }
    .page-da-ga .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-da-ga .hero-content h1 {
        font-size: 2em;
    }
    .page-da-ga .hero-content p {
        font-size: 0.9em;
    }
    .page-da-ga h2 {
        font-size: 1.5em;
    }
    .page-da-ga .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
}