.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.about-section {
    min-height: 100vh;
    padding: 250px 2rem 4rem;
    background-color: transparent;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bio {
    margin-bottom: 4rem;
}

.quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid chartreuse;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.quote:hover {
    transform: translateY(-5px);
}

.disclaimer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.disclaimer h2 {
    color: chartreuse;
    margin-bottom: 1rem;
}

.disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-note {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 200px;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

.audio-player {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid chartreuse;
    color: chartreuse;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    backdrop-filter: blur(5px);
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.9);
}

.play-button.playing {
    box-shadow: 0 0 20px chartreuse;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(127, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(127, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(127, 255, 0, 0);
    }
} 