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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #001233 0%, #000814 50%, #001d3d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Noise overlay for punk effect */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    animation: noise 0.2s infinite;
}

@keyframes noise {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.08; }
}

.container {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 18, 51, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #FF6B35 0%, #004E89 100%) 1;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3), 0 0 100px rgba(0, 78, 137, 0.2);
    max-width: 900px;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 10;
    margin: 6rem auto 2rem;
    flex: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: pulse 3s infinite ease-in-out;
    filter: drop-shadow(0 0 20px #FF6B35);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Glitch effect for title */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #FF6B35;
    letter-spacing: 0.1em;
    animation: glitch-main 3s infinite;
    text-shadow:
        2px 2px 0px #004E89,
        -2px -2px 0px #00A8E8;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-before 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    color: #00A8E8;
}

.glitch::after {
    animation: glitch-after 2.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    color: #004E89;
}

@keyframes glitch-main {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-before {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-5px, 5px); }
    66% { transform: translate(5px, -5px); }
}

@keyframes glitch-after {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(5px, -5px); }
    66% { transform: translate(-5px, 5px); }
}

.subtitle {
    font-size: 1.3rem;
    color: #00A8E8;
    margin-bottom: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Word Carousel */
.word-carousel {
    position: relative;
    height: 80px;
    margin: 2rem 0;
    overflow: hidden;
}

.carousel-word {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF6B35;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 10px #FF6B35,
        0 0 20px #FF6B35,
        0 0 30px #004E89;
    white-space: nowrap;
}

.carousel-word.active {
    animation: wordSlide 3s ease-in-out;
}

@keyframes wordSlide {
    0% { opacity: 0; transform: translateX(-50%) translateY(30px); }
    10%, 90% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-30px); }
}

/* Feature Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #FF6B35;
    transition: all 0.3s ease;
    min-width: 150px;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: iconFloat 3s infinite ease-in-out;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature-text {
    color: #00A8E8;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: badgeGlow 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(255, 107, 53, 0.8), 0 0 60px rgba(0, 78, 137, 0.6); }
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00FF00;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Music Player */
.music-player {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 78, 137, 0.2);
    border: 2px solid #004E89;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.music-player:hover {
    background: rgba(0, 78, 137, 0.3);
    box-shadow: 0 0 30px rgba(0, 168, 232, 0.4);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FF6B35;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
}

.play-btn:active {
    transform: scale(0.95);
}

.pause-icon {
    display: none;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: inline;
}

.track-info {
    flex: 1;
    text-align: left;
    min-width: 200px;
}

.track-name {
    color: #00A8E8;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.track-bpm {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 600;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-icon {
    font-size: 1.5rem;
}

#volumeSlider {
    width: 120px;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 107, 53, 0.3);
    outline: none;
    -webkit-appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FF6B35;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

#volumeSlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FF6B35;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 18, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #FF6B35;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #00A8E8;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FF6B35;
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.nav-link.active {
    color: #FF6B35;
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

body {
    padding-top: 80px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    border: 2px solid #FF6B35;
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
}

.cta-btn.secondary {
    background: rgba(0, 78, 137, 0.3);
    color: #00A8E8;
    border: 2px solid #00A8E8;
}

.cta-btn.secondary:hover {
    background: rgba(0, 78, 137, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 168, 232, 0.4);
}

.upload-cta-grid {
    margin: 3rem auto 2rem;
    text-align: center;
}

.cool-upload-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.4rem 2.8rem;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
    font-size: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7), rgba(0, 168, 232, 0.8));
    color: white;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 50px rgba(0, 168, 232, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: coolPulse 3s ease-in-out infinite;
}

.cool-upload-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cool-upload-btn:hover::after {
    opacity: 1;
}

.cool-upload-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 60px rgba(0, 168, 232, 0.6);
}

.cool-upload-btn .upload-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes coolPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 0 55px rgba(255, 107, 53, 0.5), 0 0 70px rgba(0, 168, 232, 0.4);
    }
}

/* Stats Counter Section */
.stats-counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem auto;
    padding: 2.5rem;
    background: rgba(0, 18, 51, 0.7);
    border: 2px solid #004E89;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 78, 137, 0.3);
    max-width: 90%;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
    min-width: 150px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FF6B35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    margin-bottom: 0.5rem;
    animation: pulseText 2s infinite alternate;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #00A8E8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes pulseText {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.05); opacity: 0.9; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 2rem;
    }

    /* Adjust main-nav border when menu is open */
    .main-nav.active {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 18, 51, 0.98);
        padding: 1rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 2px solid #FF6B35;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hide copyright when nav is active on small screens */
    .main-nav.active .nav-copyright {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        text-align: center;
    }
    .glitch {
        font-size: 2.5rem;
    }

    .carousel-word {
        font-size: 1.5rem;
    }

    .features {
        gap: 1rem;
    }

    .feature-card {
        min-width: 120px;
        padding: 1rem;
    }

    .music-player {
        justify-content: center;
    }

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

/* Featured Track Showcase (using .song-card styling) */
.featured-track {
    margin-top: 3rem;
    width: 100%;
}

.track-showcase {
    position: relative;
}

.featured-header {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
}

.featured-subtitle {
    color: #00A8E8;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* New Featured Song Card Styles */
.featured-song-card {
    background: rgba(0, 18, 51, 0.8);
    border: 3px solid;
    border-image: linear-gradient(135deg, #FF6B35 0%, #004E89 100%) 1;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3), 0 0 100px rgba(0, 78, 137, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(0, 78, 137, 0.05));
    z-index: 0;
    pointer-events: none;
}

.featured-song-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.18), transparent 40%),
        radial-gradient(circle at 80% 0%, rgba(0, 168, 232, 0.2), transparent 45%),
        linear-gradient(90deg, rgba(255, 107, 53, 0.12), transparent 55%);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.featured-song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 50px rgba(255, 107, 53, 0.5), 0 0 120px rgba(0, 78, 137, 0.4);
}

.featured-song-card-player {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.play-btn-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #FF6B35;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 107, 53, 1);
}

.play-btn-large.playing {
    background: linear-gradient(135deg, #00A8E8 0%, #0077B6 100%);
    border-color: #00A8E8;
    box-shadow: 0 0 30px rgba(0, 168, 232, 0.8);
}

.featured-song-card-info {
    flex-grow: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.featured-song-card-info .song-meta {
    display: flex;
    gap: 0.8rem;
    margin: 0.6rem 0 1rem;
    flex-wrap: wrap;
}

.featured-song-card-info .meta-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #00A8E8;
    background: rgba(0, 168, 232, 0.15);
    color: #00A8E8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-song-card-info .meta-tag.genre {
    border-color: #FF6B35;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.15);
}

.featured-song-card-info .song-title {
    font-size: 2rem;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.featured-song-card-info .song-artist {
    font-size: 1.2rem;
    color: #00A8E8;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-song-card-info .song-description {
    color: #e0e7ff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-song-card-info .song-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-song-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 168, 232, 0.2);
}

.featured-song-card .share-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 168, 232, 0.15);
    border: 2px solid #00A8E8;
    color: #00A8E8;
    transition: all 0.2s ease;
}

.featured-song-card .share-btn:hover {
    background: rgba(0, 168, 232, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.35);
}

.track-showcase .share-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 30, 70, 0.95);
    border: 1px solid #004E89;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.6rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 170px;
    backdrop-filter: blur(6px);
}

.track-showcase .share-menu.hidden {
    display: none;
}

.track-showcase .share-option {
    background: rgba(0, 78, 137, 0.15);
    border: 1px solid transparent;
    color: #00A8E8;
    padding: 0.65rem 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.track-showcase .share-option:hover {
    background: rgba(0, 78, 137, 0.35);
    color: #FF6B35;
    border-color: rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
    .featured-song-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .featured-song-card-info {
        text-align: center;
    }

    .featured-song-card-info .song-title {
        font-size: 1.5rem;
    }

    .featured-song-card-info .song-artist {
        font-size: 1rem;
    }

    .featured-song-card-actions {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        padding-left: 0;
        border-left: none;
    }

    .play-btn-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .track-showcase .share-menu {
        right: 12px;
        left: 12px;
        top: auto;
        bottom: -12px;
    }
}

/* Site Footer */
.site-footer {
    background: rgba(0, 18, 51, 0.95);
    border-top: 2px solid #FF6B35;
    padding: 2rem;
    text-align: center;
    width: 100%;
    margin-top: auto;
}


/* Site Footer */
.site-footer {
    background: rgba(0, 18, 51, 0.95);
    border-top: 2px solid #FF6B35;
    padding: 2rem;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.site-footer p {
    color: #00A8E8;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #FF8C5A;
    text-decoration: underline;
}
