/* ВАШ ПОЛНЫЙ CSS КОД */
:root {
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --accent-purple: #8b5cf6;
    --accent-magenta: #c026d3;
    --accent-cyan: #06b6d4;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --fog-color: rgba(139, 92, 246, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
}

.fog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--fog-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 38, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: fogShift 20s ease-in-out infinite;
}

@keyframes fogShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://djpumpui.com/images/site-dj-pumpui.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.8) 30%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--accent-purple);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.artist-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.artist-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-purple), transparent, var(--accent-magenta), transparent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.artist-avatar:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) brightness(0.9);
    transition: all 0.5s ease;
}

.artist-avatar:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-avatar:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.artist-name {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    color: #ffcc00;
    text-shadow: 0 0 20px #660099, 0 0 30px #660099, 0 0 40px #660099;
}

.genre {
    font-size: 1rem;
    color: #660099;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    font-weight: 500;
}

.slogan {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

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

section {
    padding: 3rem 2rem;
    position: relative;
    background: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--text-primary);
    opacity: 0.9;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.section-title.visible::after {
    opacity: 1;
    width: 100px;
}

.audio-player {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.audio-player:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.track-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.track-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.track-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.track-item:hover::before {
    left: 100%;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-purple);
    transform: translateX(5px);
}

.track-item.active {
    background: rgba(139, 92, 246, 0.15);
    border-left-color: var(--accent-cyan);
    transform: translateX(5px);
}

.track-item.playing {
    background: rgba(139, 92, 246, 0.2);
    border-left-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.track-cover {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.track-cover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-magenta), var(--accent-cyan));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-item:hover .track-cover::before,
.track-item.active .track-cover::before,
.track-item.playing .track-cover::before {
    opacity: 1;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.track-item:hover .track-cover,
.track-item.active .track-cover,
.track-item.playing .track-cover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.track-item:hover .track-cover img,
.track-item.active .track-cover img,
.track-item.playing .track-cover img {
    filter: brightness(1.1);
}

.track-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.track-info {
    flex: 1;
}

.track-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-pause-btn {
    background: var(--accent-purple);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.play-pause-btn:hover {
    background: var(--accent-magenta);
    transform: scale(1.1);
}

.play-pause-btn.playing {
    background: var(--accent-cyan);
}

.track-item.playing .track-cover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.track-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.track-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.track-album-name {
    color: var(--accent-cyan);
    font-weight: 600;
}

.track-streaming {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    min-width: 32px;
    height: 24px;
}

.streaming-link.svg-logo {
    padding: 0.3rem;
}

.streaming-link.text-logo {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
}

.streaming-link:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.streaming-link.spotify:hover {
    border-color: #1DB954;
    color: #1DB954;
}

.streaming-link.itunes:hover {
    border-color: #FA57B5;
    color: #FA57B5;
}

.streaming-link.vk-music:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.streaming-link.yandex-music:hover {
    border-color: var(--accent-magenta);
    color: var(--accent-magenta);
}

.streaming-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.track-visualizer {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 2px;
    padding: 5px;
    border-radius: 6px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.track-visualizer.playing {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.visualizer-bar {
    width: 4px;
    min-height: 2px;
    border-radius: 3px 3px 0 0;
    transition: all 0.1s ease;
    background: linear-gradient(to top, 
        var(--accent-purple), 
        var(--accent-magenta), 
        var(--accent-cyan));
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--dark-surface);
    border-radius: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.video-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 400;
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 1px;
}

.social-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link.spotify:hover {
    background: #1DB954;
    border-color: #1DB954;
}

.social-link.itunes:hover {
    background: #FA57B5;
    border-color: #FA57B5;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-link.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
}

.social-link.tiktok:hover {
    background: #69C9D0;
    border-color: #69C9D0;
}

.social-link.bandcamp:hover {
    background: #629AA9;
    border-color: #629AA9;
}

.social-link.vk-music:hover {
    background: #0077FF;
    border-color: #0077FF;
}

.social-link.yandex-music:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.copyright {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        min-width: 90px;
        padding: 0.7rem 1rem;
    }

    .track-visualizer {
        width: 100px;
        height: 35px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 35px;
    }

    .nav-container {
        padding: 0 0.5rem;
    }
    
    .artist-avatar {
        width: 160px;
        height: 160px;
        margin: 0 auto 1rem;
    }
    
    .artist-name {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 0.5rem;
    }
    
    .genre {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .slogan {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    #hero {
        padding-top: 50px;
        height: auto;
        min-height: 450px;
        padding-bottom: 1rem;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        min-width: 85px;
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }
    
    section {
        padding: 1rem 1rem;
    }

    #music {
        padding-top: 0.5rem;
    }

    .copyright {
        padding: 1rem 1rem;
        font-size: 0.75rem;
    }

    .track-item {
        display: block;
        padding: 1.2rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1.5rem;
        text-align: center;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .audio-player {
        padding: 1rem 0.5rem;
        margin: 0;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .track-cover {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem;
        float: none;
    }

    .track-content {
        display: block;
    }

    .track-info {
        margin-bottom: 1rem;
    }

    .track-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .track-meta {
        font-size: 0.9rem;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .track-controls {
        display: block;
        text-align: center;
    }

    .track-visualizer {
        width: 180px;
        height: 70px;
        margin: 0 auto 1rem;
        justify-content: space-between;
        padding: 8px 10px;
        gap: 3px;
        overflow: hidden;
    }

    .visualizer-bar {
        width: 5px;
        min-height: 4px;
        border-radius: 4px 4px 0 0;
        flex: 1;
        max-width: 8px;
    }

    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .track-streaming {
        gap: 0.4rem;
        justify-content: center;
    }

    .streaming-link {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
        min-width: 28px;
        height: 22px;
    }
    
    .streaming-link.svg-logo {
        padding: 0.2rem;
    }
    
    .streaming-link.text-logo {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .streaming-icon {
        width: 12px;
        height: 12px;
    }

    .header-bg {
        opacity: 0.1;
        background-size: 200% auto;
        background-position: center 30%;
        background-repeat: no-repeat;
    }

    .header-bg::after {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.9) 20%,
            rgba(10, 10, 10, 0.85) 40%,
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .fog-overlay {
        opacity: 0.4;
    }

    .decoration-line {
        margin: 1rem auto;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
    .artist-name {
        font-size: 1.7rem;
    }

    .artist-avatar {
        width: 140px;
        height: 140px;
    }

    .genre {
        font-size: 0.9rem;
    }

    .slogan {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.4rem;
    }

    .social-link {
        min-width: 75px;
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
    }

    .track-visualizer {
        width: 160px;
        height: 65px;
        gap: 2px;
    }

    .track-item {
        padding: 1rem;
        margin-left: 0.3rem;
        margin-right: 0.3rem;
    }

    .track-cover {
        width: 130px;
        height: 130px;
    }

    #hero {
        padding-top: 45px;
        min-height: 400px;
    }

    .track-title {
        font-size: 1.1rem;
    }

    .track-meta {
        font-size: 0.8rem;
        gap: 0.8rem;
    }

    .play-pause-btn {
        width: 55px;
        height: 55px;
    }

    .header-bg {
        background-size: 250% auto;
        background-position: center 35%;
        opacity: 0.08;
    }
}

/* Горизонтальная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    #hero {
        padding-top: 45px;
        height: auto;
        min-height: 350px;
    }

    .artist-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto 0.5rem;
    }

    .artist-name {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .genre {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .slogan {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .main-nav {
        padding: 0.4rem 1rem;
    }

    .logo-img {
        height: 30px;
    }

    .track-cover {
        width: 100px;
        height: 100px;
    }

    .track-visualizer {
        height: 60px;
        width: 140px;
    }

    .header-bg {
        background-size: 180% auto;
        background-position: center 25%;
    }
}

.decoration-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 2rem auto;
    max-width: 300px;
}

.error-message {
    color: #ff6b6b;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    display: none;
}

.loading {
    color: var(--accent-cyan);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    display: none;
}