/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Main Content */
.content {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* Contact Information */
.contact-info {
    position: absolute;
    bottom: 15%;
    left: 15%;
    color: #bbb3b3;
    z-index: 2;
}

.email {
    font-family: 'Highway Gothic', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.disclaimer {
    font-family: 'Highway Gothic', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        bottom: 60px;
        left: 5%;
        right: 5%;
    }
    
    .email {
        font-size: 18px;
        text-align: left;
    }
    
    .disclaimer {
        font-size: 14px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .contact-info {
        bottom: 60px;
        left: 4%;
        right: 4%;
    }
    
    .email {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .disclaimer {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .contact-info {
        bottom: 40px;
        left: 3%;
        right: 3%;
    }
    
    .email {
        font-size: 14px;
    }
    
    .disclaimer {
        font-size: 12px;
    }
}

/* Mobile Video Optimizations */
@media (max-width: 768px) {
    #background-video {
        object-position: center center;
        min-height: 100vh;
    }
    
    .video-container {
        min-height: 100vh;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 480px) {
    #background-video {
        object-position: center 30%;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* GoDaddy/cPanel Compatibility */
/* Ensure video plays on mobile devices */
#background-video {
    -webkit-playsinline: true;
    -moz-playsinline: true;
    -ms-playsinline: true;
    playsinline: true;
}

/* Fallback for browsers that don't support video */
.no-video .video-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.no-video .video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="road" x1="0%" y1="100%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23333;stop-opacity:1" /><stop offset="100%" style="stop-color:%23666;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="%231a1a1a"/><path d="M0,600 L1200,400" stroke="url(%23road)" stroke-width="8" fill="none"/><path d="M0,600 L1200,400" stroke="%23FFD700" stroke-width="4" fill="none" stroke-dasharray="20,20"/></svg>') center/cover;
}
