/* Compiled site styles moved to public for direct linking */
:root {
    --rose-color: #e45858;
    --text-color: #2b2b2b;
}

/* Custom rose cursor for entire site */
* {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

body,
html {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

a,
button,
[role="button"] {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

body.homepage {
    background: #fff;
    margin: 0;
    color: var(--text-color);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    overflow: hidden
}

.rose-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.rose-bg {
    width: min(78vw, 700px);
    max-width: 100%;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
    margin: 0 auto
}

.site-title {
    position: absolute;
    inset: auto 0 auto 0;
    text-align: center;
    color: #2f2f2f;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: clamp(32px, 6vw, 84px);
    pointer-events: none
}

.mini-rose {
    width: 80px;
    height: 80px;
    display: block
}

.footer-note {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    max-width: 480px;
    font-size: 11px;
    line-height: 1.3;
    color: #666;
    font-weight: 700;
    font-family: 'Source Code Variable';
}

#rose-img {
    cursor: pointer
}

.fancy-heading {
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 1px
}

.menu-list-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.menu-list ul {
    margin: 0;
    padding: 0;
}

.menu-list ul li {
    margin: 1.5rem 0;
}

.menu-list .menu-link {
    color: #1f1f1f;
    text-decoration: none;
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
}

.menu-list .menu-link:hover {
    color: var(--rose-color);
    text-decoration: underline
}

/* ============================================
   MOBILE RESPONSIVE - ONLY FOR MOBILE DEVICES
   ============================================ */
@media (max-width: 767px) {
    /* Home page - keep it exactly like desktop */
    body.homepage {
        overflow: hidden !important;
        height: 100vh !important;
    }
    
    .rose-hero {
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .rose-bg {
        width: min(85vw, 500px) !important;
        max-width: 100% !important;
    }
    
    /* Footer stays visible on mobile */
    .footer-note {
        position: fixed !important;
        font-size: 9px !important;
        padding: 0.3rem !important;
        right: 0.5rem !important;
        bottom: 0.5rem !important;
        max-width: 200px !important;
        z-index: 100 !important;
        line-height: 1.2 !important;
    }
    
    /* Other pages can scroll */
    body:not(.homepage) {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
    }
    
    main:not(.rose-hero) {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
    }
    
    /* Bigger touch target for rose icon */
    .mini-rose {
        width: 40px;
        height: 40px;
    }
}

/* Peek-style release slider */
.releases-page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.releases-header {
    text-align: left;
    padding: 1rem 0 0 0;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.release-peek-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
    width: 100%;
    margin-top: -3rem;
}

.release-peek-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform .6s ease;
    will-change: transform;
    padding: 0 12vw;
}

.release-peek-slide {
    flex: 0 0 34vw;
    max-width: 480px;
    position: relative;
    opacity: .35;
    transform: scale(.82);
    transition: transform .6s ease, opacity .6s ease;
}

.release-peek-slide img {
    width: 100%;
    height: 64vh;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, .35);
}

.release-peek-slide.active {
    opacity: 1;
    transform: scale(1);
}

.release-peek-slide.active img {
    outline: 2px solid rgba(0, 0, 0, .15);
}

.peek-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -62px;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    color: #222;
    opacity: 0;
    transition: opacity .4s ease;
}

.release-peek-slide.active .peek-caption {
    opacity: 1;
}

.release-details {
    text-align: center;
    margin-top: 1rem;
}

.release-details h2 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.peek-nav {
    background: none;
    border: 0;
    color: #222;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    padding: 12px 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s ease, transform .3s ease;
}

.peek-nav:hover {
    color: var(--rose-color);
    transform: scale(1.1);
}

.peek-nav.prev {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.peek-nav.next {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:767px) {
    .release-peek-track {
        gap: 32px;
        padding: 0 18vw;
    }

    .release-peek-slide {
        flex: 0 0 58vw;
    }

    .release-peek-slide img {
        height: 56vh;
    }

    .peek-caption {
        bottom: -54px;
        font-size: 12px;
    }
}

/* About page styling */
.about-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.about-title {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
    color: #1a1a1a;
}

.about-rose {
    width: clamp(60px, 10vw, 100px);
    height: auto;
    opacity: 0.9;
}

.about-bio {
    text-align: left;
}

.bio-text {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(11px, 1.4vw, 14px);
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bio-credit {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: 1.4;
    color: #666;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-page {
        padding: 0 1.5rem 2rem;
    }

    .about-header {
        margin-bottom: 2rem;
        margin-top: -1rem;
    }
}

/* About details page - remove top margin */
.row.g-4 {
    margin-top: 0 !important;
}

.row.g-4 .col-12:first-child {
    padding-top: 0;
    margin-top: 0;
}

.row.g-4 .fancy-heading {
    margin-top: 0;
    padding-top: 0;
}

/* Make lead text bolder */
.lead {
    font-weight: 600;
}

/* About typography page */
.about-typography-page {
    padding: 2rem 0;
    max-width: 100%;
}

.about-type-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-type-title {
    font-family: "Bodoni MT", "Didot", "Playfair Display", "Times New Roman", Times, serif;
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    margin: 0;
    color: #1a1a1a;
    line-height: 1;
}

/* Live Sets page full-height layout */
/* Live Sets redesigned layout */
.live-sets-wrapper {
    padding: 0;
}

.live-main-player {
    max-height: 60vh;
}

.live-main-player iframe {
    border: 0;
}

.live-active-meta {
    padding-bottom: 1rem;
}

.live-info-panel {
    position: sticky;
    top: 2rem;
}

.live-video-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.live-video-list::-webkit-scrollbar {
    width: 6px;
}

.live-video-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.live-video-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.live-video-list::-webkit-scrollbar-thumb:hover {
    background: var(--rose-color);
}

.live-video-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: .875rem;
    background: #fafafa;
    transition: background .25s ease, border-color .25s ease;
}

.live-video-item:hover {
    background: #f1f1f1;
    border-color: #ccc;
}

.live-video-item.active {
    background: #fff;
    border-color: #ddd;
    box-shadow: none;
}

.live-thumb {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    background: #222;
    flex-shrink: 0;
}

.live-label {
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .live-info-panel {
        position: static;
        padding-top: 1rem;
    }
}

.about-type-subtitle {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(14px, 2vw, 20px);
    font-style: italic;
    font-weight: 600;
    color: #999;
    margin: 0;
    align-self: flex-end;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.typography-samples {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
    text-align: center;
}

.type-sample {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.sample-inline {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
}

.type-sample-1 {
    margin-bottom: 1.5rem;
}

.sample-label {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(12px, 1.8vw, 18px);
    font-weight: 400;
    color: #e74c3c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sample-note {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(11px, 1.5vw, 16px);
    font-style: italic;
    font-weight: 600;
    color: #666;
    margin-left: 1rem;
}

.type-sample-2 {
    margin-bottom: 2rem;
}

.sample-main {
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
    line-height: 1;
}

.sample-detail {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(11px, 1.6vw, 18px);
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 0.25rem;
}

.type-sample-3 {
    margin-top: 1rem;
}

.sample-specs {
    font-family: "Oswald", system-ui, sans-serif;
    font-size: clamp(13px, 1.8vw, 20px);
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.sample-meta {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(10px, 1.4vw, 15px);
    font-style: italic;
    color: #999;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    /* About & Contact Pages */
    .about-typography-page {
        padding: 0 !important;
        min-height: 100vh !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-y: auto !important;
    }

    .about-type-header {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
        width: 100%;
        text-align: left !important;
        padding: 1rem 0 0 1rem !important;
        flex-shrink: 0;
    }

    .about-type-title {
        font-size: clamp(36px, 11vw, 55px) !important;
    }

    .typography-samples {
        gap: 0.5rem !important;
        padding: 1rem 1.5rem !important;
        margin: auto !important;
        width: 100%;
        max-width: 100%;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .typography-samples p {
        font-size: clamp(16px, 4vw, 22px) !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .contact-section-title {
        font-size: 17px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    .contact-email {
        font-size: 15px !important;
        word-break: break-all;
        line-height: 1.3 !important;
        display: block !important;
        margin-bottom: 1rem !important;
    }

    .type-sample {
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }

    .social-links-section {
        margin-top: 0.5rem !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .social-icons {
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .social-icon {
        font-size: 26px !important;
        margin: 0 8px !important;
        padding: 0 !important;
        display: inline-block !important;
    }

    .type-sample.sample-inline {
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Releases Page */
    .releases-page-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .releases-header {
        padding: 70px 1rem 0 1rem;
    }

    .release-peek-wrapper {
        margin-top: 1rem;
        padding: 1rem 0;
    }

    .release-peek-track {
        padding: 0 5vw;
        gap: 10px;
    }

    .release-peek-slide {
        flex: 0 0 70vw;
        max-width: 300px;
    }

    .release-peek-slide.is-active {
        transform: scale(1);
        opacity: 1;
    }

    .release-details h2 {
        font-size: 20px !important;
    }

    .release-details p {
        font-size: 12px !important;
    }

    /* Squadra Page */
    .releases-page-wrapper .releases-header {
        padding: 1rem 0 0 1rem !important;
        margin-bottom: 3rem !important;
        flex-shrink: 0;
    }
    
    .squadra-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .squadra-member {
        width: 100% !important;
        max-width: 400px !important;
        text-align: center !important;
    }

    .squadra-member img {
        height: auto !important;
        max-height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .squadra-caption h5 {
        margin-top: 0.5rem !important;
        font-size: 16px !important;
    }

    .squadra-role {
        font-size: 14px !important;
        margin: 0 !important;
    }

    /* Rose Menu Page */
    .menu-list-wrapper {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .menu-list {
        width: 100%;
        padding: 1rem;
    }

    .menu-list ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu-list ul li {
        margin: 1.2rem 0 !important;
    }

    .menu-list .menu-link {
        font-size: clamp(28px, 7vw, 36px) !important;
        line-height: 1.3 !important;
    }

    /* Live Sets Page */
    .live-sets-wrapper {
        height: auto !important;
        min-height: 100vh;
    }

    .live-sets-wrapper .about-type-header {
        padding: 70px 1rem 0 1rem;
        margin-bottom: 1rem !important;
    }

    .live-sets-content-row {
        flex-direction: column !important;
        height: auto !important;
    }

    .live-main-player {
        max-height: 50vh;
        width: 100% !important;
    }

    .live-list-column {
        width: 100% !important;
        max-height: none !important;
        padding: 1rem !important;
    }

    .live-set-item {
        padding: 0.75rem !important;
    }

    .live-set-item h3 {
        font-size: 14px !important;
    }

    .live-set-item .live-meta {
        font-size: 11px !important;
    }
}

/* Galleria marquee animation */
.galleria-page-wrapper {
    padding: 2rem 0;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.marquee-content {
    display: flex;
    gap: 0;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-slide {
    flex-shrink: 0;
    width: clamp(320px, 40vw, 500px);
    height: clamp(260px, 35vw, 430px);
}

.marquee-slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .galleria-page-wrapper {
        display: flex !important;
        flex-direction: column !important;
        height: 100vh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0 !important;
        padding: 1rem 0 0 1rem !important;
        margin-bottom: 0 !important;
        font-size: clamp(36px, 11vw, 55px) !important;
        text-align: left !important;
    }
    
    .marquee-wrapper {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        margin-top: 0 !important;
    }
    
    .marquee-content {
        gap: 0 !important;
        animation-duration: 30s !important;
    }

    .marquee-slide {
        width: 280px !important;
        height: 200px !important;
    }
    
    .marquee-slide img {
        object-fit: cover !important;
    }
}

/* Squadra clickable images */
.squadra-img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.squadra-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

#imageModal .modal-dialog {
    max-width: 90vw;
}

#imageModal .modal-backdrop {
    background-color: rgba(255, 255, 255, 0.95);
}

#imageModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

#imageModal .modal-body img {
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    max-width: 100%;
    display: block;
}

.image-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* Squadra carousel */
.squadra-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    padding: 2rem;
    flex-wrap: wrap;
    margin-top: -1.8rem;
}

.squadra-member {
    flex: 0 1 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.squadra-member img {
    width: 100%;
    max-width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.squadra-caption {
    margin-top: 1rem;
    text-align: center;
}

.squadra-caption h5 {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.squadra-role {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    margin: 0.25rem 0 0 0;
}

/* Large screen vertical centering for squadra */
@media (min-width: 1400px) {
    .squadra-grid {
        flex: 1;
        align-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Make squadra page scrollable on mobile */
    .releases-page-wrapper {
        height: auto !important;
        min-height: 100vh;
        overflow-y: visible !important;
    }
    
    .squadra-carousel-wrapper {
        height: auto;
        overflow: visible;
        padding-bottom: 3rem;
    }
    
    .squadra-carousel {
        max-width: 100%;
        height: auto;
    }

    .squadra-slide-row {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        height: auto;
    }

    .squadra-member {
        flex: 1 1 auto;
        margin-bottom: 1rem;
    }
    
    .squadra-member img {
        width: 100%;
        height: auto;
    }
    
    .carousel-inner {
        height: auto !important;
        min-height: auto !important;
    }
    
    .carousel-item {
        height: auto !important;
    }
}

/* Contact page styling */
.contact-section-title {
    font-family: 'Coolvetica', sans-serif;
    font-size: clamp(18px, 3vw, 36px);
    font-weight: 700;
    font-style: normal;
    color: #e74c3c;
    letter-spacing: 2px;
    line-height: 1;
}

.contact-section-title.press-title {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.contact-email {
    font-family: 'Coolvetica', sans-serif;
    font-size: clamp(20px, 3.5vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #e74c3c;
}

/* Social links section */
.social-links-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

.social-icon i {
    display: block;
}

/* Large screen vertical centering for all pages */
@media (min-width: 1400px) {
    /* About page */
    .about-typography-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .about-type-header {
        flex-shrink: 0;
        margin-bottom: 0;
        padding: 1rem 0 0 0;
    }
    
    .typography-samples {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Live Sets page */
    .live-sets-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .live-sets-wrapper .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0;
    }
    
    .live-sets-wrapper > .row {
        flex: 1;
        display: flex;
        align-content: center;
    }
    
    /* Galleria page */
    .galleria-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0;
    }
    
    .marquee-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        margin-top: 0;
    }
}

/* Laptop screen vertical centering (like releases page) */
@media (min-width: 1024px) and (max-width: 1399px) {
    /* About page */
    .about-typography-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0;
    }
    
    .typography-samples {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Contact page (uses about-typography-page class) */
    
    /* Galleria page */
    .galleria-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0 !important;
    }
    
    .marquee-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        margin-top: 0;
    }
    
    /* Live Sets page */
    .live-sets-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .live-sets-wrapper .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0;
    }
    
    .live-sets-wrapper > .row {
        flex: 1;
        display: flex;
        align-content: center;
    }
    
    /* Squadra page (uses releases-page-wrapper) already works */
}