/* style/resources-daga-rules.css */
.page-resources-daga-rules {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-daga-rules__hero {
    background: linear-gradient(135deg, #0A6847, #FFD700);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-daga-rules__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:daga,pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-resources-daga-rules__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-daga-rules__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-daga-rules__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-daga-rules__back-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-daga-rules__back-link:hover {
    background-color: #FFD700;
    color: #0A6847;
    border-color: #FFD700;
}

.page-resources-daga-rules__article-content {
    padding: 40px 0;
}

.page-resources-daga-rules__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 30px;
}

.page-resources-daga-rules__heading {
    font-size: 2.2em;
    color: #0A6847;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-daga-rules__sub-heading {
    font-size: 1.8em;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-daga-rules p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.page-resources-daga-rules ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #444;
}

.page-resources-daga-rules ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #444;
}

.page-resources-daga-rules li {
    margin-bottom: 0.5em;
}

.page-resources-daga-rules__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-daga-rules__cta-buttons {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-daga-rules__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-daga-rules__button--primary {
    background-color: #0A6847;
    color: #ffffff;
    border: 2px solid #0A6847;
}

.page-resources-daga-rules__button--primary:hover {
    background-color: #074a33;
    transform: translateY(-2px);
}

.page-resources-daga-rules__button--secondary {
    background-color: #FFD700;
    color: #0A6847;
    border: 2px solid #FFD700;
}

.page-resources-daga-rules__button--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-daga-rules__title {
        font-size: 2.5em;
    }

    .page-resources-daga-rules__subtitle {
        font-size: 1.2em;
    }

    .page-resources-daga-rules__heading {
        font-size: 1.8em;
    }

    .page-resources-daga-rules__sub-heading {
        font-size: 1.5em;
    }

    .page-resources-daga-rules p,
    .page-resources-daga-rules ul,
    .page-resources-daga-rules ol {
        font-size: 1em;
    }

    .page-resources-daga-rules__container {
        padding: 20px;
    }

    .page-resources-daga-rules__button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-resources-daga-rules__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-daga-rules__title {
        font-size: 2em;
    }

    .page-resources-daga-rules__subtitle {
        font-size: 1em;
    }

    .page-resources-daga-rules__hero {
        padding: 60px 15px;
    }

    .page-resources-daga-rules__container {
        padding: 15px;
    }
}