/* Base styles (Mobile-First approach - styles applied to all devices by default, then overridden for larger screens) */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #4A4A4A;
    text-align: center;
    line-height: 1.6;

    background-image: url('BG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #282828;
}

header {
}

h1 {
    font-family: 'Lobster', cursive;
    margin: 0;
    font-size: 2.5em; 
    text-shadow: 2px 2px 6px rgba(239, 239, 239, 0.2);
    color: #ffd000;
}

h2 {
    font-family: 'Lobster', cursive;
    color: #ffd000;
    font-size: 2em; 
    text-shadow: 2px 2px 6px rgba(239, 239, 239, 0.2); 
    margin-bottom: 15px; 
}

.video-container {
    width: 95%; 
    max-width: 1000px; 
    margin: 20px auto; 
    border: 8px solid #E0BBE4;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px; 
    font-size: 1.2em;
    background-color: rgba(255, 105, 180, 0.8);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.play-button:hover {
    background-color: #FF69B4;
}

.content-section {
}

.content-section p {
    font-size: 1em; 
    margin-bottom: 10px;
}

footer {
}



@media screen and (min-width: 768px) {
    header {
        padding: 25px 0;
    }

    h1 {
        font-size: 3.2em; 
        text-shadow: 2px 2px 4px rgba(179, 179, 179, 0.2);
    }

    h2 {
        font-size: 2.4em; 
        margin-bottom: 20px;
    }

    .video-container {
        width: 30%; 
        margin: 30px auto;
    }

    .play-button {
        padding: 12px 25px; 
        font-size: 1.3em;
    }

    .content-section {
        max-width: 700px; 
        margin: 30px auto;
        padding: 25px;
    }

    .content-section p {
        font-size: 1.05em;
        margin-bottom: 15px;
    }

    footer {
        padding: 20px 0;
        margin-top: 40px;
        font-size: 0.9em;
    }
}


@media screen and (min-width: 1024px) {
    header {
        padding: 30px 0;
    }

    h1 {
        font-size: 3.8em; 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    h2 {
        font-size: 2.8em; 
    }

    .video-container {
        width: 40%; 
        max-width: 1000px; 
        margin: 40px auto;
    }

    .play-button {
        padding: 15px 30px; 
        font-size: 1.5em;
    }

    .content-section {
        max-width: 800px; 
        margin: 40px auto;
        padding: 30px;
    }

    .content-section p {
        font-size: 1.1em;
    }

    footer {
        padding: 25px 0;
        margin-top: 60px;
        font-size: 0.9em;
    }
}