@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide-in-item {
    opacity: 0;
}

.slide-in-item.in-view {
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.back-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-4px);
}

.back-btn svg {
    transition: transform 0.3s ease;
}

.back-btn:hover svg {
    transform: translateX(-3px);
}

.page-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
}

.hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin: 0 0 1.5rem;
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.6;
    margin: 0 0 3rem;
    animation: fadeIn 1s ease-out 0.7s forwards;
    opacity: 0;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

.beefs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem 4rem;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6rem 0;
}

.beef-section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    line-height: 1;
}

.section-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.5;
}

.meta-divider {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.5;
}

.beef-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
}

.beef-badge-wrap {
    position: sticky;
    top: 6rem;
}

.victory-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.victory-badge svg {
    color: #ffd700;
}

.victory-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.victory-badge.win {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.victory-badge.win svg {
    color: #ffd700;
}

.victory-badge.unresolved {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.victory-badge.unresolved svg {
    color: rgba(255, 255, 255, 0.5);
}

.victory-badge.large {
    padding: 1.5rem 2rem;
    flex-direction: row;
    gap: 1rem;
}

.beef-content {
    max-width: 900px;
}

.beef-story h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    letter-spacing: 0.02em;
}

.beef-story h3:first-child {
    margin-top: 0;
}

.beef-story p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.beef-hero-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.beef-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.6s ease;
}

.beef-hero-visual:hover .beef-hero-img {
    transform: scale(1.03);
}

.beef-hero-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.beef-intro {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.8;
}

.timeline-section {
    margin: 3rem 0;
}

.timeline-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.timeline-section h3 svg {
    color: #ffd700;
}

.timeline-grid {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.timeline-item.highlight {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
}

.timeline-date {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    font-weight: 600;
}

.timeline-item p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

.diss-showcase {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.diss-cover-wrap {
    position: relative;
}

.diss-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diss-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    white-space: nowrap;
}

.diss-badge svg {
    color: #000;
}

.diss-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.diss-tracks {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.diss-tracks li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.diss-track-name {
    font-weight: 600;
    font-size: 1rem;
}

.diss-track-date {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.diss-track-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

.quotable-lines {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quotable-lines li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.7;
}

.quotable-lines li svg {
    flex-shrink: 0;
    opacity: 0.4;
    margin-top: 0.2rem;
}

.high-road-note {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.high-road-note .note-icon {
    color: #ffd700;
    flex-shrink: 0;
}

.high-road-note h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.high-road-note p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}

.tracks-block {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tracks-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.tracks-block h3 svg {
    color: #ffd700;
}

.tracks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracks-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tracks-list li:last-child {
    border-bottom: none;
}

.track-name {
    font-weight: 600;
    font-size: 1rem;
}

.track-info {
    font-size: 0.8rem;
    opacity: 0.5;
}

.track-quote {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.track-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.track-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.track-card .track-name {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.track-card .track-date {
    display: block;
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.track-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.outcome-block {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-top: 3rem;
}

.outcome-block.large {
    padding: 2.5rem;
}

.outcome-icon {
    color: #ffd700;
    flex-shrink: 0;
}

.outcome-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.outcome-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0 0 1rem;
}

.outcome-content p:last-child {
    margin-bottom: 0;
}

.kendrick-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.showcase-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.7;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.showcase-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}

.analysis-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

.analysis-block.full {
    flex-direction: column;
    gap: 0;
}

.analysis-icon {
    color: #ffd700;
    flex-shrink: 0;
}

.analysis-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.analysis-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}

.analysis-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.analysis-block p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.analysis-block p:last-child {
    margin-bottom: 0;
}

.minor-beefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.minor-beef-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.minor-beef-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.minor-beef-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.minor-beef-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.status-badge {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.status-badge.reconciled {
    border-color: rgba(100, 200, 100, 0.4);
    color: rgba(150, 255, 150, 0.8);
}

.status-badge.unresolved {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.6;
}

.status-badge.complicated {
    border-color: rgba(255, 200, 100, 0.4);
    color: rgba(255, 220, 150, 0.8);
}

.minor-beef-year {
    display: block;
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.minor-beef-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    margin: 0;
}

.record-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.record-stat {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.record-stat:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.record-stat .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.record-stat.win .stat-number {
    color: #ffd700;
}

.record-stat.unresolved .stat-number {
    opacity: 0.5;
}

.record-stat.reconciled .stat-number {
    color: rgba(150, 255, 150, 0.7);
}

.record-stat .stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.record-stat p {
    font-size: 0.8rem;
    opacity: 0.4;
    margin: 0;
}

.analysis-section {
    max-width: 900px;
    margin: 0 auto;
}

.bottom-line-block {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 3rem;
}

.bottom-line-icon {
    color: #ffd700;
    flex-shrink: 0;
}

.bottom-line-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.bottom-line-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}

.stats-banner {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 4rem;
}

.banner-stat {
    text-align: center;
}

.banner-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.banner-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.page-footer {
    margin-top: 6rem;
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 0.75rem;
    opacity: 0.4;
    margin: 0.3rem 0;
}

@media (max-width: 1200px) {
    .beefs-container {
        padding: 0 2rem 3rem;
    }

    .beef-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beef-badge-wrap {
        position: static;
    }

    .victory-badge {
        flex-direction: row;
        width: fit-content;
    }

    .diss-showcase {
        grid-template-columns: 1fr;
    }

    .diss-cover-wrap {
        max-width: 300px;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .back-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
    }

    .back-btn span {
        display: none;
    }

    .page-hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .beefs-container {
        padding: 0 1.5rem 2rem;
    }

    .section-divider {
        margin: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .meta-divider {
        display: none;
    }

    .beef-hero-img {
        height: 250px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .kendrick-showcase {
        grid-template-columns: 1fr;
    }

    .minor-beefs-grid {
        grid-template-columns: 1fr;
    }

    .record-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .record-stat {
        padding: 2rem 1.5rem;
    }

    .record-stat .stat-number {
        font-size: 4rem;
    }

    .banner-content {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .page-footer {
        padding: 3rem 1.5rem;
    }

    .page-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .back-btn {
        padding: 0.6rem 1rem;
    }

    .page-hero {
        height: 60vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .beefs-container {
        padding: 0 1rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .diss-showcase,
    .tracks-block,
    .outcome-block,
    .analysis-block,
    .minor-beef-card {
        padding: 1.5rem;
    }

    .outcome-block,
    .analysis-block,
    .bottom-line-block,
    .high-road-note {
        flex-direction: column;
        gap: 1rem;
    }

    .showcase-img {
        height: 150px;
    }

    .banner-content {
        padding: 2.5rem 1.5rem;
    }

    .banner-number {
        font-size: 2rem;
    }

    .banner-label {
        font-size: 0.7rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .minor-beef-card:hover,
    .track-card:hover,
    .timeline-item:hover,
    .showcase-card:hover,
    .record-stat:hover {
        transform: none;
    }

    .minor-beef-card:active,
    .track-card:active,
    .showcase-card:active {
        transform: scale(0.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slide-in-item {
        opacity: 1;
    }

    .hero-bg-image {
        animation: none;
    }
}