:root {
    --bg-color: #f5f5f5;
    --text-color: #333;
    --button-bg: #007bff;
    --button-hover: #0056b3;
    --container-bg: white;
    --gallery-bg: #fff;
    --gallery-border: #eee;
    --media-bg: #fff;
    --media-border: #ddd;
}

body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --button-bg: #0056b3;
    --button-hover: #004085;
    --container-bg: #2d2d2d;
    --gallery-bg: #2d2d2d;
    --gallery-border: #333;
    --media-bg: #333;
    --media-border: #444;
}

/* NSFW Mode Styles */
body.nsfw .title,
body.nsfw .title h1 {
    opacity: 0.2;
    color: black !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease !important;
}

/* Debug Styles (temporarily disabled) */
/* .debug-title {
    border: 2px solid red !important;
    background-color: rgba(255, 0, 0, 0.1) !important;
}

.debug-title h1 {
    border: 2px solid blue !important;
    background-color: rgba(0, 0, 255, 0.1) !important;
} */

/* Animation for title */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

/* Main Title Styles */
.title {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: fadeIn 1.5s ease-out forwards;
    z-index: 100 !important;
    text-align: center !important;
    margin: 0 !important;
    color: white !important; /* Default white color for normal mode */
    transition: color 0.3s ease !important;
    padding: 0 !important;
    pointer-events: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

.title h1 {
    opacity: 0.3;
    font-family: 'Arial Black', 'Arial Bold', sans-serif !important;
    font-size: clamp(48px, 15vw, 150px) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    display: inline-block !important;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    line-height: 1.1 !important;
}

.title h1 .year {
    display: block !important;
    font-size: 0.4em !important;
    letter-spacing: 0.3em !important;
    margin-top: 10px !important;
    opacity: 0.9 !important;
}

.title h1 span {
    display: inline-block;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    margin: 0 2px;
    position: relative;
    z-index: 10001;
}

.title h1 span.year {
    margin-left: 20px;
    font-size: 0.6em;
    vertical-align: middle;
    letter-spacing: 0.3em;
    opacity: 0.9;
}

/* Hover effect on title letters */
.title h1:hover span:not(.year) {
    transform: translateY(-5px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        top: 10px;
        padding: 10px 0;
    }
    
    .title h1 {
        font-size: clamp(24px, 10vw, 48px);
        letter-spacing: 0.1em;
        padding: 10px 15px;
    }
    
    .title h1 span.year {
        display: block;
        margin: 5px 0 0 0;
        letter-spacing: 0.2em;
        font-size: 0.5em;
    }
}

.title h1 {
    margin: 0;
    padding: 0;
    letter-spacing: 0.5em;
}

.title span {
    display: inline-block;
    margin: 0 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.title span:hover {
    transform: translateY(-3px);
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 4px 6px rgba(0, 0, 0, 0.4);
}

.title .year {
    display: block;
    margin-top: 0.5em;
    font-size: 0.8em;
    letter-spacing: 0.3em;
    opacity: 0.8;
}

/* Adjust font size for smaller screens */
@media (max-width: 768px) {
    .title {
        font-size: 10vw;
        padding: 5px 0;
        letter-spacing: 0.3em;
    }
}

/* Further adjustment for very small screens */
@media (max-width: 480px) {
    .title {
        font-size: 12vw;
        letter-spacing: 0.2em;
    }
    .title .year {
        letter-spacing: 0.2em;
    }
    
    /* Adjust blur for better mobile performance */
    #blur-bg {
        filter: blur(10px) brightness(0.7);
        -webkit-filter: blur(10px) brightness(0.7);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Add a semi-transparent overlay to improve readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

/* Vegas Slider Container */
#vegas-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

/* Blurred background */
/* Blur effect container */
#blur-bg {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    /* Standard blur effect */
    filter: blur(20px) brightness(0.7);
    /* Safari/Chrome specific */
    -webkit-filter: blur(20px) brightness(0.7);
    /* Force hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prevent blur from being clipped */
    margin: -20px;
    padding: 20px;
    /* Performance optimization */
    will-change: transform, filter;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform-style: preserve-3d;
}

/* Ensure content stays above the blur */
#original-img {
    position: relative;
    z-index: 10;
}

/* Ensure content stays above the slider */
.content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Add a semi-transparent overlay for better readability */
.content-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
    pointer-events: none;
}

/* Make sure the slider slides are properly positioned */
.vegas-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover; /* Default to cover */
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Class for slides that should contain the image */
.swiper-slide.contain-slide {
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent; /* Remove black background */
}

/* Container for the blurred background */
.swiper-slide.contain-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px); /* was 10 */
    filter: brightness(0.65);
    z-index: -1;
}

/* Container for the sharp image */
.swiper-slide.contain-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: var(--button-bg);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content-wrapper {
    position: relative;
    z-index: 1;
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dark-mode-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 0.4;
    border-radius: 50%;
    border: 3px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dark-mode-toggle:hover {
    border-color: #666;
    background: #f8f8f8;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dark-mode-toggle.dark-mode {
    border-color: #444;
    background: #2d2d2d;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.dark-mode-toggle.dark-mode:hover {
    border-color: #555;
    background: #3d3d3d;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.dark-mode-toggle span {
    font-size: 20px;
    color: #666;
}

.dark-mode-toggle.dark-mode span {
    color: #999;
}

.gallery-button {
    padding: 15px 30px;
    font-size: 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.gallery-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure content is visible over the slider */
.title, .gallery-container {
    position: relative;
    z-index: 10;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Vegas Slider */
#vegas-slider {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    transition: opacity 4s ease-in-out;
}

#vegas-slider.vegas-container {
    opacity: 1 !important;
}

#vegas-slider .vegas-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure content is above the slider */
.content-wrapper {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* Fix for Vegas container */
.vegas-container {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure full viewport coverage */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Countdown Panel Styles */
.countdown-panel {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background-color: var(--container-bg);
    border: 1px solid var(--gallery-border);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10000; /* Increased z-index to be above slider */
    max-height: 80vh;
    overflow-y: auto;
    display: block !important; /* Ensure it's always block */
}

.countdown-panel.open {
    right: 0;
}

/* Countdown Toggle Button */
#countdownToggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    z-index: 10000;
    background: transparent;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.2;
    color: white; /* Always white for the button text */
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Style for the hide button text */
#countdownToggle.hide-mode {
    color: var(--hide-button-color, black);
}

#countdownToggle:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(-90deg) scale(1.1);
}

#countdownToggle svg {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

/* Quicklinks Toggle Button */
#quicklinksToggle {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 10000;
    background: transparent;
    border: none;
    padding: 10px 15px 10px 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.2;
    color: white;
    /* -webkit-text-stroke: 1px white;
    -webkit-text-fill-color: transparent; */
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left center;
}

#quicklinksToggle:hover {
    opacity: 1;
    transform: rotate(-90deg) scale(1.1);
}

#quicklinksToggle svg {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    stroke: white;
    fill: none;
    transform: rotate(-90deg);
}

.countdown-toggle:hover {
    background-color: var(--button-hover);
}

.countdown-content {
    padding: 15px;
    font-size: 14px;
    letter-spacing: normal;
}

.countdown-content h3 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 18px;
    color: var(--text-color);
    letter-spacing: normal;
}

.countdown-table {
    font-size: 14px;
    letter-spacing: normal;
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 0 0;
}

.countdown-table th, 
.countdown-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid var(--gallery-border);
}

.countdown-table th {
    background-color: var(--gallery-bg);
    font-weight: bold;
}

.countdown-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 480px) {
    .countdown-panel {
        width: 90%;
        right: -90%;
    }
}

/* Menu Styles */
.main-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    opacity: 0.4;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item {
    position: relative;
}

.menu-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 16px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: initial;
    letter-spacing: 0.5px;
    opacity: 0.1;
    min-width: 80px;
    text-align: center;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.menu-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 140px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease-out;
    pointer-events: none;
    transform-origin: bottom center;
}

.menu-dropdown a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.menu-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 20px;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Panel */
.about-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.about-button {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 0.1;
}

.about-button:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    opacity: 0.6;
}

/* About Modal */
.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

/* Vegas Slider */
#vegas-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    background: #000; /* Fallback background color */
}

/* Ensure Vegas Slider fills the viewport */
.vegas-container,
.vegas-slide,
.vegas-slide-inner {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

/* Make sure images cover the entire container */
.vegas-slide img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.about-modal.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.about-modal-content {
    position: relative;
    background-color: rgba(40, 40, 40, 0.95);
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    color: white;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-modal.show .about-modal-content {
    transform: translateY(0);
}

.close-about {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-about:hover {
    color: white;
}

.about-content h2 {
    margin-top: 0;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 300;
}

.bio {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Bio Picture */
.bio-pic {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
}

/* SFW Bio Picture */
#aboutModal .bio-pic {
    border-radius: 50%;
    border-color: #4a6fa5;
    box-shadow: 0 0 0 4px rgba(74, 111, 165, 0.3);
}

/* NSFW Bio Picture */
#aboutModalNSFW .bio-pic {
    border-radius: 10% 30% 10% 30%;
    border-color: #a54a6f;
    box-shadow: 0 0 0 4px rgba(165, 74, 111, 0.3);
}

.bio-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#aboutModal .bio-pic:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

#aboutModalNSFW .bio-pic:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 20px rgba(165, 74, 111, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bio-pic {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .bio-pic {
        width: 120px;
        height: 120px;
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link i {
    margin-right: 8px;
    font-size: 18px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Quicklinks Panel */
.quicklinks-panel {
    border-radius: 8px 8px 0 0;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(-100% - 40px));
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s, background-color 0.3s ease, color 0.3s ease;
    will-change: transform, opacity, background-color, color;
    background-color: var(--quicklinks-bg, #ffffff);
    color: var(--quicklinks-text, #333333);
}

.quicklinks-panel.open {
    transform: translateX(0);
    opacity: 0.5;
    visibility: visible;
}

.quicklinks-section {
    margin-bottom: 20px;
}

.quicklinks-section h4 {
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--quicklinks-border, #e0e0e0);
    color: var(--quicklinks-text, #333333);
}

.quicklinks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.quicklink-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--quicklinks-item-bg, #f5f5f5);
    border-radius: 6px;
    color: var(--quicklinks-text, #333333);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--quicklinks-border, #e0e0e0);
    box-sizing: border-box;
    width: 100%;
}

.quicklink-item:hover {
    background: var(--quicklinks-item-hover, #e8e8e8);
    color: var(--quicklinks-text-hover, #000000);
    transform: translateX(4px);
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.quicklink-item:active {
    transform: translateX(4px) scale(0.98);
}

.quicklink-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1em;
    color: var(--quicklinks-icon, #555555);
}

.quicklinks-error {
    color: #e74c3c;
    padding: 12px;
    background: #fdecea;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .quicklinks-panel {
        width: 280px;
        max-height: 60vh;
    }
    
    .quicklink-item {
        padding: 12px 15px;
        font-size: 0.95em;
    }
}