body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', 'Gothic', serif;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1618331835717-801e976710b2?q=80') center/cover fixed;
    overflow: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    min-height: 100vh;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.profile {
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.crow-symbol {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

h1 {
    font-size: 3.5em;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 15px #fff, 0 0 25px rgba(255, 0, 0, 0.5);
    font-weight: 900;
}

.tagline {
    font-style: italic;
    color: #c41e3a;
    text-shadow: 0 0 15px #c41e3a;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.bio-content {
    padding: 30px;
    margin-top: 40px;
    border: 2px solid #333;
    background: rgba(20, 20, 20, 0.7);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    position: relative;
}

.bio-section {
    margin: 25px 0;
    font-size: 1.1em;
    text-align: left;
    color: #e0e0e0;
    border-left: 3px solid #c41e3a;
    padding-left: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.social-btn {
    padding: 12px 25px;
    background-color: rgba(196, 30, 58, 0.8);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #c41e3a;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
    transform: translateY(-2px);
}

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    z-index: 1000;
}

.audio-btn {
    background: none;
    border: none;
    color: #c41e3a;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.audio-btn:hover {
    transform: scale(1.1);
}

.volume-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(196, 30, 58, 0.3);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #c41e3a;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}      
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
