@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.3) 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 3rem;
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

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

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

.hero-info-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.hero-info-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.biography-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;
}

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

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

.section-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.section-logo.ovo-logo {
    height: 80px;
    filter: brightness(0) invert(1);
}

.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 0.5rem;
    line-height: 1;
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.5;
    margin-top: 0.75rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.content-feature {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-feature:hover .feature-img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

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

.info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.info-icon {
    color: #ffd700;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.info-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.65;
    margin: 0;
}

.story-block {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 215, 0, 0.5);
}

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

.degrassi-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.degrassi-feature {
    position: sticky;
    top: 6rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.degrassi-img {
    width: 100%;
    height: auto;
    display: block;
}

.degrassi-info {
    display: flex;
    flex-direction: column;
}

.degrassi-stat {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.degrassi-stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.degrassi-stat p {
    font-size: 0.95rem;
    opacity: 0.6;
    margin: 0;
    line-height: 1.6;
}

.context-note {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}

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

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

.note-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
    margin: 0;
}

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

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

.mixtape-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.mixtape-card.featured {
    border-color: rgba(255, 215, 0, 0.3);
}

.mixtape-card.featured:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.mixtape-visual {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.mixtape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mixtape-card:hover .mixtape-img {
    transform: scale(1.05);
}

.mixtape-year {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.mixtape-content {
    padding: 2rem;
}

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

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

.mixtape-stat {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mixtape-stat.highlight {
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.era-image {
    text-align: center;
}

.era-img {
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.era-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.5;
    font-style: italic;
}

.signing-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signing-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signing-img {
    width: 100%;
    height: auto;
    display: block;
}

.signing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.signing-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

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

.detail-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.detail-info p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

.style-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.style-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
}

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

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

.style-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.style-visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.style-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.style-card:hover .style-img {
    transform: scale(1.05);
}

.style-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.style-content {
    padding: 2rem;
}

.style-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

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

.style-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.75;
}

.style-list li svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #ffd700;
}

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

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

.ovo-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.ovo-visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ovo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ovo-card:hover .ovo-img {
    transform: scale(1.05);
}

.ovo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.ovo-content {
    padding: 2rem;
}

.ovo-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.ovo-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.ovo-meta span {
    font-size: 0.8rem;
    opacity: 0.5;
}

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

.personal-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.personal-main {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.personal-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

.personal-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.personal-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    width: fit-content;
}

.personal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
}

.personal-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.personal-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.personal-content > p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
    margin: 0;
}

.personal-secondary {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.personal-secondary h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

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

.crew-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.crew-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
}

.crew-value {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.impact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.impact-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impact-card:hover .impact-image img {
    transform: scale(1.05);
}

.impact-content {
    padding: 2rem;
}

.impact-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

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

.impact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.7;
}

.impact-list li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #ffd700;
}

.quote-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;
    text-align: center;
    padding: 6rem 4rem;
}

.quote-icon {
    color: rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.quote-author {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.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) {
    .biography-container {
        padding: 0 2rem 3rem;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .degrassi-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .degrassi-feature {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .mixtape-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .impact-grid {
        grid-template-columns: repeat(2, 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-info-row {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

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

    .personal-main {
        grid-template-columns: 1fr;
    }

    .personal-content {
        padding: 2rem;
    }

    .personal-details {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .banner-content {
        padding: 4rem 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;
    }

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

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

    .info-card,
    .mixtape-content,
    .style-content,
    .ovo-content,
    .impact-content {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

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

@media (hover: none) and (pointer: coarse) {
    .info-card:hover,
    .mixtape-card:hover,
    .style-card:hover,
    .ovo-card:hover,
    .impact-card:hover,
    .detail-card:hover {
        transform: none;
    }

    .info-card:active,
    .mixtape-card:active,
    .style-card:active,
    .ovo-card:active,
    .impact-card:active,
    .detail-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;
    }
}