/* Navigation */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

/* Logo Animation */
@keyframes logo-glow {
    0%, 100% {
        color: #fff;
        text-shadow: 
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #ff0000,
            0 0 42px #ff0000,
            0 0 82px #ff0000,
            0 0 92px #ff0000,
            0 0 102px #ff0000,
            0 0 151px #ff0000;
    }
    50% {
        color: #fff;
        text-shadow: 
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #ff0000,
            0 0 42px #ff0000,
            0 0 82px #ff0000,
            0 0 92px #ff0000,
            0 0 151px #ff0000,
            0 0 200px #ff0000;
    }
}

@keyframes fly-bat {
    0% {
        transform: translate(0, 0) rotate(var(--r));
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) rotate(calc(var(--r) + 360deg));
        opacity: 0;
    }
}

.logo {
    font-family: 'Metal Mania', cursive;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: none;
    background: linear-gradient(180deg, #fff 85%, #ff0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 1));
    font-weight: 900;
    transform: scaleY(3) scaleX(0.4);
    margin-right: 2rem;
    padding: 0.5rem 0;
}

.logo::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.5));
    clip-path: polygon(
        0% 0%, 3% 100%, 6% 40%,
        9% 100%, 12% 20%, 15% 100%,
        18% 40%, 21% 100%, 24% 30%,
        27% 100%, 30% 50%, 33% 100%,
        36% 30%, 39% 100%, 42% 20%,
        45% 100%, 48% 40%, 51% 100%,
        54% 30%, 57% 100%, 60% 50%,
        63% 100%, 66% 40%, 69% 100%,
        72% 20%, 75% 100%, 78% 40%,
        81% 100%, 84% 30%, 87% 100%,
        90% 50%, 93% 100%, 96% 40%,
        100% 0%
    );
    transform: scaleY(0.4) scaleX(0.4) translateY(-10px);
}

/* Remove the bat animations and first-letter styles */
.logo::before,
.logo::first-letter {
    display: none;
}

.logo::before {
    --x: -100px;
    --y: -50px;
    --r: -45deg;
    left: 0;
    animation: fly-bat 2s infinite;
}

.logo::after {
    --x: 100px;
    --y: -50px;
    --r: 45deg;
    right: 0;
    animation: fly-bat 2s infinite 0.5s;
}

.logo:hover {
    transform: scaleY(1.8) scaleX(0.8);
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.8));
}

.logo:hover::before,
.logo:hover::after {
    animation-duration: 1s;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
}

/* Social Links in Header */
header .social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

header .social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

header .social-icon:hover {
    color: var(--neon-red);
    transform: translateY(-2px);
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red);
    background: rgba(255, 0, 0, 0.2);
}

/* Menu Button */
.menu-btn {
    display: none;
    margin-left: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    header .social-links {
        position: fixed;
        bottom: 2rem;
        top: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        padding: 1rem;
        border-radius: 2rem;
        backdrop-filter: blur(10px);
        margin: 0;
    }
} 

/* Fixed Player Container */
.player-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    -webkit-transform: translate3d(0,0,0) !important;
}

/* SoundCloud Player */
.soundcloud-player {
    position: fixed !important;
    bottom: 20px !important;
    right: 340px !important;
    width: 300px !important;
    height: 100px !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border-radius: 10px !important;
    padding: 10px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    pointer-events: auto !important;
    -webkit-transform: translate3d(0,0,0) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.soundcloud-player iframe {
    position: relative !important;
    border-radius: 10px !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5) !important;
    transition: transform 0.3s ease !important;
    width: 100% !important;
    height: 80px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.soundcloud-player:hover iframe {
    transform: scale(1);
}

/* Fixed Player Controls */
.player-controls-fixed {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 300px !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border-radius: 10px !important;
    padding: 10px !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    pointer-events: auto !important;
    -webkit-transform: translate3d(0,0,0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.play-pause-btn {
    display: none;
}

.volume-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #fff 0%, #fff 100%, rgba(255, 255, 255, 0.3) 100%);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.volume-slider:hover {
    height: 10px;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.3);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-red);
    box-shadow: 
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #fff;
    box-shadow: 
        0 0 15px #fff,
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.4);
}

.volume-icon {
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 0.8);
}

.volume-icon:hover {
    color: #fff;
    transform: scale(1.1);
    text-shadow: 
        0 0 15px #fff,
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.4);
}

/* Show volume percentage */
.volume-control::after {
    content: attr(data-volume);
    position: absolute;
    right: -45px;
    color: #fff;
    font-size: 1rem;
    min-width: 40px;
    text-align: left;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Latest Track Section */
.latest-track {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    margin-top: 100vh;
    position: relative;
    z-index: 2;
}

.latest-track-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.latest-track-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #ff0000,
        0 0 42px #ff0000;
    animation: logo-glow 2s infinite;
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
}

.track-artwork {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.track-artwork .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-artwork .play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.track-card:hover .play-overlay {
    opacity: 1;
}

.track-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.track-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.track-info .play-btn {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
}

.track-info .play-btn:hover {
    background: #ff0000;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Mobile Styles for Latest Track */
@media (max-width: 768px) {
    .track-card {
        flex-direction: column;
        max-width: 300px;
    }

    .track-artwork {
        width: 100%;
        height: 300px;
    }

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

/* Ensure main content has enough height for scrolling */
main {
    min-height: 300vh;
    position: relative;
    z-index: 1;
    padding-bottom: 100vh;
} 

/* Mobile responsiveness for fixed elements */
@media (max-width: 768px) {
    .soundcloud-player {
        right: 20px !important;
        bottom: 90px !important;
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
        position: fixed !important;
        transform: translateZ(0) !important;
        -webkit-transform: translate3d(0,0,0) !important;
        left: auto !important;
        top: auto !important;
    }

    .player-controls-fixed {
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
        position: fixed !important;
        transform: translateZ(0) !important;
        -webkit-transform: translate3d(0,0,0) !important;
        left: auto !important;
        top: auto !important;
    }
} 

.music-section, .music-grid, .music-card, .music-img, .card-content, .track-stats, .section-title {
    display: none;
} 

/* About Page Styles */
.about-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: logo-glow 2s infinite;
}

.about-content-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
}

.about-image-container {
    flex: 0 0 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.about-profile-img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateZ(20px);
}

.about-text-content {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.about-section-block {
    margin-bottom: 2.5rem;
}

.about-section-block:last-child {
    margin-bottom: 0;
}

.about-subtitle {
    font-size: 2rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.about-text-content p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Mobile styles for about page */
@media (max-width: 768px) {
    .about-content-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text-content {
        padding: 1.5rem;
    }

    .about-subtitle {
        font-size: 1.8rem;
    }

    .about-text-content p {
        font-size: 1.1rem;
    }
} 

.about-text {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #fff,
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 70px rgba(255, 255, 255, 0.6);
    animation: text-glow 2s infinite;
    position: relative;
    z-index: 10;
}

.about-text::before,
.about-text::after {
    content: '🦇';
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
}

.about-text:first-child::before {
    --x: -150px;
    --y: -100px;
    --r: -45deg;
    left: 0;
    animation: bat-fly-about 3s infinite;
}

.about-text:first-child::after {
    --x: 150px;
    --y: -100px;
    --r: 45deg;
    right: 0;
    animation: bat-fly-about 3s infinite 0.5s;
}

.about-text:last-child::before {
    --x: -120px;
    --y: -80px;
    --r: -30deg;
    left: 0;
    animation: bat-fly-about 3s infinite 1s;
}

.about-text:last-child::after {
    --x: 120px;
    --y: -80px;
    --r: 30deg;
    right: 0;
    animation: bat-fly-about 3s infinite 1.5s;
}

.about-text:hover::before,
.about-text:hover::after {
    animation-duration: 2s;
}

@keyframes bat-fly-about {
    0% {
        transform: translate(0, 0) rotate(var(--r)) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) rotate(calc(var(--r) + 360deg)) scale(0.5);
        opacity: 0;
    }
}

.about-content {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: none;
    background: none;
    box-shadow: none;
} 

.about-text.emotion {
    display: none;
}

.about-text.music {
    display: none;
} 

/* Vinyl Player Container */
.vinyl-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    will-change: transform !important;
    -webkit-transform: translate3d(-50%, -50%, 0) !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
}

/* Spinning Vinyl */
.vinyl-record {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        #1a1a1a 0%,
        #000000 20%,
        #1a1a1a 21%,
        #000000 30%,
        #1a1a1a 31%,
        #000000 40%,
        #1a1a1a 41%,
        #000000 100%
    );
    position: relative;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.9);
    animation: spin 4s linear infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(
        circle at center,
        #4a4a4a 0%,
        #2a2a2a 40%,
        #1a1a1a 60%,
        #000000 100%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.1),
        inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    animation: shine 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg) perspective(1000px) rotateX(20deg);
    }
    to {
        transform: rotate(360deg) perspective(1000px) rotateX(20deg);
    }
}

@keyframes shine {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vinyl-record:hover {
    transform: perspective(1000px) rotateX(30deg) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.vinyl-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Volume Control Next to Vinyl */
.vinyl-controls {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 0.8rem !important;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    backdrop-filter: blur(10px) !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
    position: relative !important;
    z-index: 999999 !important;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px;
}

/* Hide original SoundCloud player */
.soundcloud-player {
    display: none !important;
}

.player-controls-fixed {
    display: none !important;
} 

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .vinyl-container {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .vinyl-record {
        width: 250px !important;
        height: 250px !important;
    }

    .vinyl-controls {
        padding: 0.8rem !important;
    }
} 

@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap'); 