/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Metal Mania', cursive;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg,
        #000000 0%,
        #0a0a0a 25%,
        #000000 50%,
        #0a0a0a 75%,
        #000000 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 112, 214, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 112, 219, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: ambientPulse 12s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.7; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.3" fill="rgba(62,61,67,0.02)"/><circle cx="75" cy="75" r="0.2" fill="rgba(30,30,35,0.01)"/><circle cx="50" cy="10" r="0.25" fill="rgba(62,61,67,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}

/* Blood Animations */
.blood-drip {
    position: fixed;
    top: -10px;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(62, 61, 67, 0.8) 0%, rgba(62, 61, 67, 0.4) 50%, transparent 100%);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    z-index: 10;
    animation: bloodFall 8s linear infinite;
}

.blood-drip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(62, 61, 67, 0.9) 0%, rgba(62, 61, 67, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: bloodGlow 2s ease-in-out infinite alternate;
}

@keyframes bloodFall {
    0% {
        transform: translateY(-20px) scaleY(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scaleY(0.8);
        opacity: 0;
    }
}

@keyframes bloodGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.blood-splatter {
    position: fixed;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(62, 61, 67, 0.8) 0%, rgba(62, 61, 67, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    animation: splatterAppear 6s ease-out infinite;
}

.blood-splatter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(62, 61, 67, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: splatterRipple 3s ease-out infinite;
}

@keyframes splatterAppear {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
    }
    80% {
        transform: scale(1) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.8) rotate(360deg);
        opacity: 0;
    }
}

@keyframes splatterRipple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.blood-vein {
    position: fixed;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(62, 61, 67, 0.3) 20%, rgba(62, 61, 67, 0.6) 50%, rgba(62, 61, 67, 0.3) 80%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    animation: veinPulse 10s ease-in-out infinite;
}

@keyframes veinPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: scaleY(1.1);
    }
}

/* Blood Smear Effects */
.blood-smear {
    position: fixed;
    pointer-events: none;
    z-index: 15;
    opacity: 0;
    animation: smearAppear 0.8s ease-out forwards, smearFade 3s ease-in 2s forwards;
}

.blood-smear.smear-1 {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg,
        rgba(62, 61, 67, 0.8) 0%,
        rgba(62, 61, 67, 0.6) 30%,
        rgba(62, 61, 67, 0.4) 60%,
        transparent 100%);
    border-radius: 50% 20% 50% 20%;
    transform: rotate(15deg);
}

.blood-smear.smear-2 {
    width: 90px;
    height: 60px;
    background: linear-gradient(-30deg,
        rgba(62, 61, 67, 0.7) 0%,
        rgba(62, 61, 67, 0.5) 40%,
        rgba(62, 61, 67, 0.3) 70%,
        transparent 100%);
    border-radius: 20% 50% 20% 50%;
    transform: rotate(-25deg);
}

.blood-smear.smear-3 {
    width: 150px;
    height: 40px;
    background: linear-gradient(90deg,
        rgba(62, 61, 67, 0.6) 0%,
        rgba(62, 61, 67, 0.4) 50%,
        rgba(62, 61, 67, 0.2) 80%,
        transparent 100%);
    border-radius: 50% 10% 50% 10%;
    transform: rotate(45deg);
}

.blood-smear.smear-4 {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg,
        rgba(62, 61, 67, 0.9) 0%,
        rgba(62, 61, 67, 0.5) 35%,
        rgba(62, 61, 67, 0.3) 65%,
        transparent 100%);
    border-radius: 10% 50% 10% 50%;
    transform: rotate(-60deg);
}

@keyframes smearAppear {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes smearFade {
    0% { opacity: 0.6; }
    100% { opacity: 0; }
}

/* Blood Trail Effect */
.blood-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(62, 61, 67, 0.8) 0%, rgba(62, 61, 67, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 12;
    animation: trailFade 1.5s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Hover Blood Smear Effect */
.hover-smear {
    position: relative;
    overflow: hidden;
}

.hover-smear::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(62, 61, 67, 0.1) 20%,
        rgba(62, 61, 67, 0.2) 50%,
        rgba(62, 61, 67, 0.1) 80%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: left 0.6s ease;
}

.hover-smear:hover::before {
    left: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Metal Mania', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        0 0 8px rgba(62, 61, 67, 0.4),
        0 0 16px rgba(30, 30, 35, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    color: #ffffff;
}

h1::before, h2::before, h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(62, 61, 67, 0.05) 25%,
        transparent 50%,
        rgba(62, 61, 67, 0.05) 75%,
        transparent 100%);
    animation: textShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes textShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    border: none;
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-family: 'Metal Mania', cursive;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 215, 0, 0.2),
        transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg,
        #1a1a1a 0%,
        #2a2a2a 30%,
        #3e3d43 50%,
        #2a2a2a 70%,
        #1a1a1a 100%);
    color: #ffffff;
    border: 1px solid rgba(62, 61, 67, 0.6);
    box-shadow:
        0 4px 16px rgba(62, 61, 67, 0.3),
        0 0 0 1px rgba(62, 61, 67, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg,
        #2a2a2a 0%,
        #3e3d43 30%,
        #5b595f 50%,
        #3e3d43 70%,
        #2a2a2a 100%);
    color: #ffffff;
    box-shadow:
        0 8px 24px rgba(62, 61, 67, 0.5),
        0 0 0 2px rgba(62, 61, 67, 0.6),
        inset 0 1px 0 rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(62, 61, 67, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg,
        rgba(62, 61, 67, 0.1) 0%,
        rgba(30, 30, 35, 0.05) 50%,
        rgba(62, 61, 67, 0.1) 100%);
    color: #7e7c83;
    border: 1px solid rgba(62, 61, 67, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 16px rgba(62, 61, 67, 0.2),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: linear-gradient(135deg,
        rgba(62, 61, 67, 0.2) 0%,
        rgba(62, 61, 67, 0.1) 30%,
        rgba(62, 61, 67, 0.2) 50%,
        rgba(62, 61, 67, 0.1) 70%,
        rgba(62, 61, 67, 0.2) 100%);
    color: #c2bfc1;
    box-shadow:
        0 8px 24px rgba(62, 61, 67, 0.3),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(5, 5, 5, 0.97) 30%,
        rgba(0, 0, 0, 0.98) 70%,
        rgba(5, 5, 5, 0.97) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(62, 61, 67, 0.4);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.99) 0%,
        rgba(3, 3, 3, 0.98) 30%,
        rgba(0, 0, 0, 0.99) 70%,
        rgba(3, 3, 3, 0.98) 100%);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: #3e3d43;
    text-shadow:
        0 0 8px rgba(138, 43, 226, 0.6),
        0 0 16px rgba(218, 112, 214, 0.3);
    background: linear-gradient(135deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 6s ease-in-out infinite alternate;
    letter-spacing: 3px;
    position: relative;
}

.logo h1::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg,
        rgba(138, 43, 226, 0.2) 0%,
        transparent 50%,
        rgba(138, 43, 226, 0.2) 100%);
    border-radius: 2px;
    z-index: -1;
    animation: logoBorder 6s ease-in-out infinite;
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 8px rgba(138, 43, 226, 0.6), 0 0 16px rgba(218, 112, 214, 0.3);
        background-position: 0% 50%;
    }
    100% {
        text-shadow: 0 0 12px rgba(138, 43, 226, 0.8), 0 0 24px rgba(218, 112, 214, 0.4);
        background-position: 100% 50%;
    }
}

@keyframes logoBorder {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: #5b595f;
    text-shadow: 0 0 6px rgba(62, 61, 67, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3e3d43 0%, #5b595f 50%, #3e3d43 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px rgba(62, 61, 67, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(62, 61, 67, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, #3e3d43 100%);
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('bg.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(10, 0, 0, 0.3) 30%,
        rgba(20, 0, 0, 0.2) 50%,
        rgba(10, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(62, 61, 67, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes pulse {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.02); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg,
        #3e3d43 0%,
        #5b595f 50%,
        #3e3d43 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 8s ease-in-out infinite;
    text-shadow:
        0 0 15px rgba(62, 61, 67, 0.6),
        0 0 30px rgba(30, 30, 35, 0.3);
    letter-spacing: 4px;
    position: relative;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 40px rgba(255, 0, 0, 0.9), 0 0 80px rgba(255, 0, 0, 0.6), 0 0 120px rgba(255, 0, 0, 0.4), 0 0 160px rgba(255, 0, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 60px rgba(255, 0, 0, 1), 0 0 120px rgba(255, 0, 0, 0.8), 0 0 180px rgba(255, 0, 0, 0.5), 0 0 240px rgba(255, 0, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 5px rgba(62, 61, 67, 0.2);
    letter-spacing: 2px;
    position: relative;
}

@keyframes subtitleGlow {
    0% {
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 0, 0, 0.3);
        opacity: 0.8;
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.9);
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 3s infinite;
    color: #3e3d43;
    z-index: 3;
    filter: drop-shadow(0 0 6px rgba(62, 61, 67, 0.3));
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.hero-scroll i {
    font-size: 28px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* About Section */
.about {
    padding: 140px 0;
    background: linear-gradient(135deg,
        #000000 0%,
        #030303 25%,
        #000000 50%,
        #030303 75%,
        #000000 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 70%, rgba(62, 61, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(30, 30, 35, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 12px rgba(138, 43, 226, 0.6),
        0 0 24px rgba(218, 112, 214, 0.4);
    letter-spacing: 3px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.8px;
}

.about-image img {
    border-radius: 0;
    box-shadow:
        0 15px 40px rgba(62, 61, 67, 0.2),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 20px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(62, 61, 67, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.1) brightness(0.95) saturate(1.05);
    position: relative;
}

.about-image img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        rgba(62, 61, 67, 0.1) 0%,
        transparent 50%,
        rgba(62, 61, 67, 0.1) 100%);
    border-radius: 0;
    z-index: -1;
    animation: imageGlow 6s ease-in-out infinite alternate;
}

@keyframes imageGlow {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow:
        0 20px 50px rgba(62, 61, 67, 0.3),
        0 0 0 3px rgba(62, 61, 67, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(0, 0, 0, 0.9);
    filter: contrast(1.15) brightness(1) saturate(1.1);
}

/* Gallery Section */
.gallery {
    padding: 140px 0;
    background: linear-gradient(135deg,
        #030303 0%,
        #000000 25%,
        #030303 50%,
        #000000 75%,
        #030303 100%);
    position: relative;
    overflow: hidden;
}

.gallery h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 12px rgba(138, 43, 226, 0.6),
        0 0 24px rgba(218, 112, 214, 0.4);
    letter-spacing: 3px;
    text-align: center;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(62, 61, 67, 0.3);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) brightness(0.95) saturate(1.02);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow:
        0 15px 40px rgba(62, 61, 67, 0.3),
        0 0 0 2px rgba(62, 61, 67, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    filter: contrast(1.1) brightness(1) saturate(1.05);
}

/* Music Section */
.music {
    padding: 140px 0;
    background: linear-gradient(135deg,
        #000000 0%,
        #030303 50%,
        #000000 100%);
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(62, 61, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.music h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 12px rgba(138, 43, 226, 0.6),
        0 0 24px rgba(218, 112, 214, 0.4);
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.music h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

/* Music Section Layout */
.music-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.videos-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.songs-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.videos-column .player {
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(5, 5, 5, 0.95) 50%,
        rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(62, 61, 67, 0.4);
    border-radius: 0;
    padding: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 2;
}

.videos-column .player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(62, 61, 67, 0.08),
        rgba(30, 30, 35, 0.05),
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.videos-column .player:hover::before {
    left: 100%;
}

.videos-column .player:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(62, 61, 67, 0.3),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 89, 95, 0.6);
}

.videos-column .player h3 {
    margin-bottom: 25px;
    color: #ffd700;
    text-align: center;
    font-size: 1.6rem;
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 3px;
}

.videos-column iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 1px solid rgba(62, 61, 67, 0.4);
    border-radius: 0;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.videos-column iframe:hover {
    border-color: rgba(91, 89, 95, 0.6);
    box-shadow:
        0 20px 60px rgba(62, 61, 67, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.track {
    background: linear-gradient(135deg,
        rgba(15, 15, 15, 0.95) 0%,
        rgba(5, 5, 5, 0.95) 50%,
        rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(62, 61, 67, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: row;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    flex: 1;
}

.track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 61, 67, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track:hover::before {
    opacity: 1;
}

.track:hover {
    background: linear-gradient(135deg,
        rgba(25, 25, 25, 0.95) 0%,
        rgba(15, 15, 15, 0.95) 50%,
        rgba(25, 25, 25, 0.95) 100%);
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 20px 50px rgba(62, 61, 67, 0.3),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 89, 95, 0.5);
}

.track-cover {
    width: 140px;
    height: 140px;
    background: rgba(62, 61, 67, 0.3);
    border: 1px solid rgba(62, 61, 67, 0.5);
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 4px;
}

.track-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.track-info h4 {
    color: #8a2be2;
    margin-bottom: 8px;
    font-size: 1.3rem;
    text-shadow:
        0 0 8px rgba(138, 43, 226, 0.8),
        0 0 16px rgba(138, 43, 226, 0.4);
    letter-spacing: 1px;
}

.track-info p {
    color: #cccccc;
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.track audio {
    width: 100%;
    height: 40px;
    filter: hue-rotate(0deg) saturate(1.1) brightness(0.95);
    border-radius: 0;
    margin-top: 10px;
}

.track audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.95) 0%,
        rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(62, 61, 67, 0.4);
    border-radius: 0;
}

.track audio::-webkit-media-controls-current-time-display,
.track audio::-webkit-media-controls-time-remaining-display {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(62, 61, 67, 0.3);
}

/* Responsive Design for Music Section */
/* Responsive Design for Music Section */
@media (max-width: 1024px) {
    .music-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .videos-column {
        flex: none;
    }
    
    .songs-column {
        flex: none;
    }
    
    .videos-column .player {
        min-height: 300px;
        flex: none;
    }
}

@media (max-width: 768px) {
    .music-layout {
        gap: 1.5rem;
    }
    
    .videos-column .player {
        padding: 1rem;
        min-height: 250px;
    }
    
    .track {
        padding: 1rem;
    }
    
    .track-info h4 {
        font-size: 1rem;
    }
    
    .track-info p {
        font-size: 0.85rem;
    }
}

/* Connect Section */
.connect {
    padding: 140px 0;
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #000000 50%,
        #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 20%, rgba(62, 61, 67, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(30, 30, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.connect h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 12px rgba(138, 43, 226, 0.6),
        0 0 24px rgba(218, 112, 214, 0.4);
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.connect h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        #8a2be2 0%,
        #da70d6 50%,
        #8a2be2 100%);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

.connect p {
    font-size: 1.4rem;
    margin-bottom: 70px;
    color: #ffffff;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 5px rgba(62, 61, 67, 0.2);
    letter-spacing: 0.8px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(5, 5, 5, 0.95) 50%,
        rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(62, 61, 67, 0.4);
    border-radius: 0;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(62, 61, 67, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(62, 61, 67, 0.08) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: linear-gradient(135deg,
        rgba(62, 61, 67, 0.2) 0%,
        rgba(30, 30, 35, 0.1) 50%,
        rgba(62, 61, 67, 0.2) 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(62, 61, 67, 0.3),
        0 0 0 2px rgba(62, 61, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: #5b595f;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(62, 61, 67, 0.3));
}

.social-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(30, 30, 35, 0.4));
}

.social-link span {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.social-link:hover span {
    text-shadow: 0 0 8px rgba(62, 61, 67, 0.4);
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ff0000 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.footer-text {
    font-size: 1rem;
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 13px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 25px 0;
        border-top: 1px solid rgba(255, 0, 0, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        margin-bottom: 0;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }

    .music h2,
    .connect h2 {
        font-size: 2.8rem;
    }

    .music-players {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .track-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .track {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px;
    }

    .track audio {
        width: 100%;
        max-width: 320px;
    }

    .social-links {
        gap: 25px;
    }

    .social-link {
        min-width: 100px;
        padding: 20px;
    }

    .social-link i {
        font-size: 2rem;
    }

    .footer-links {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    .footer-link {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-text h2,
    .music h2,
    .connect h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        padding: 16px 20px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        min-width: 90px;
        padding: 18px;
    }

    .social-link i {
        font-size: 1.8rem;
    }

    .social-link span {
        font-size: 0.9rem;
    }
}