/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header with black background and centered logo */
header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Main content container */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Welcome text section */
.welcome-text {
    margin-bottom: 40px;
}

.welcome-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.welcome-text p {
    font-size: 1.2em;
    color: #ccc;
}

/* Video container with responsive sizing */
.video-container {
    margin: 40px 0;
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Verification section */
.verification-section {
    margin: 40px 0;
}

.verify-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.verify-button:hover {
    background: linear-gradient(45deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.verify-button:active {
    transform: translateY(0);
}

/* Footer text */
.footer-text {
    margin-top: 40px;
    color: #999;
    font-size: 0.9em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }
    
    .welcome-text h1 {
        font-size: 2em;
    }
    
    .welcome-text p {
        font-size: 1em;
    }
    
    .site-logo {
        max-height: 60px;
    }
    
    .verify-button {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    header {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .welcome-text h1 {
        font-size: 1.5em;
    }
    
    .verify-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    
    .site-logo {
        max-height: 50px;
    }
}