.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.hero-content {
    padding: 2rem;
    z-index: 1;
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}
.hero-cta-group .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-hero-primary {
    background-color: #ef4444;
    color: #ffffff;
    border: 2px solid #ef4444;
}
.btn-hero-primary:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-hero-secondary:hover {
    background-color: #ffffff;
    color: #111827;
}