/* index.css */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    background: radial-gradient(circle, #d28847cc, #1a1a1a 95%);
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    padding: 8px;
    overflow-x: hidden;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

p {
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    p {
        font-size: 1.5rem;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Full width on mobile */
    aspect-ratio: 3 / 4;
    background: black;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .video-container {
        max-width: 85%;
    }
}

@media (min-width: 1024px) {
    .video-container {
        max-width: 64rem;
    }
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0;
}

.play-button:hover {
    opacity: 1;
    transform: scale(1.05);
}

.icon {
    width: 48px;
    height: 48px;
    fill: white;
    transition: fill 0.3s ease;
}

@media (min-width: 768px) {
    .icon {
        width: 64px;
        height: 64px;
    }
}

.play-button:hover .icon {
    fill: #ba7c46;
}

.quote {
    margin-top: 24px;
    font-size: 1.2rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .quote {
        font-size: 1.5rem;
        margin-top: 32px;
    }
}

@media (min-width: 1024px) {
    .quote {
        font-size: 1.75rem;
        margin-top: 40px;
    }
}

.heading-paragraph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(199, 199, 199, 0.6);
}

@media (min-width: 768px) {
    .heading-paragraph {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .heading-paragraph {
        font-size: 1.5rem;
    }
}

.audio-text {
    font-size: 0.75rem;
    padding: 0;
    margin: 0;
}