/* Base Reset */
body { margin: 0; padding: 0; opacity: 0; transition: opacity 0.5s ease; font-family: sans-serif; line-height: 1.6; }
.container { max-width: 900px; margin: 0 auto; padding: 20px; }
.hidden { display: none !important; }

/* Dynamic Components */
.btn { 
    display: inline-block; padding: 18px 40px; 
    font-size: 1.2rem; font-weight: bold; text-decoration: none; 
    border-radius: 5px; margin-top: 30px; cursor: pointer; border: none;
    transition: transform 0.2s;
}
.btn:hover { transform: scale(1.02); }

.hero-section { text-align: center; padding: 80px 20px; }
.hero-headline { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; font-weight: 900; }
.hero-subhead { font-size: 1.5rem; opacity: 0.9; font-weight: 400; max-width: 700px; margin: 0 auto; }

.bullet-box { 
    text-align: left; background: rgba(0,0,0,0.05); 
    padding: 30px; border-radius: 10px; display: inline-block; 
    margin-top: 40px; max-width: 600px; 
}
.bullet-item { margin-bottom: 15px; font-size: 1.1rem; list-style: none; }
.bullet-item::before { content: "✅"; margin-right: 10px; }

/* ✅ FIXED VIDEO CONTAINER (16:9 Aspect Ratio) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    margin-top: 40px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ✅ VIDEO ELEMENT SIZING */
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole video is seen without cropping */
    outline: none;
}