/* ==========================================================================
   Utilities — sr-only, reveal animations, print
   ========================================================================== */

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reveal animation */
.dp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease),
                transform 0.6s var(--ease);
}

.dp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .dp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-dim {
    color: var(--c-text-dim);
}

/* Spacing */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: var(--s-24); }
.mb-24 { margin-bottom: var(--s-24); }
.mt-48 { margin-top: var(--s-48); }
.mb-48 { margin-bottom: var(--s-48); }

/* Print */
@media print {
    .dp-header,
    .dp-footer,
    .dp-age-gate,
    .dp-hero__bg,
    .dp-hero__overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .dp-main {
        padding-top: 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .dp-card,
    .dp-event-card,
    .dp-tournament-card,
    .dp-testimonial-card {
        border-color: #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
}
