* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #101115;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero2 {
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 100px 0px;
}

.kicker {
    color: #ff5722;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.5;
    font-family: 'Merriweather', serif;
}

.hero-subtitle strong {
    color: #ffffff;
}

/* Section 2 - Video + Form */
.section2 {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    align-items: stretch;
    padding: 50px 0;
}

/* Video Section */
.video-box {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.video-section-wrapper {
    text-align: center;
    margin-bottom: 0px !important;
}

.video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 44, 0.2);
    border: 1px solid rgba(255, 107, 44, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Video Thumbnail with Play Button */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #ff6b2c;
    color: #ff6b2c;
    font-size: 60px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-thumbnail:hover .play-button {
    background: #ff6b2c;
    color: white;
}

/* Video Modal Popup */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    margin: auto;
    display: block;
    max-width: 900px;
    position: relative;
}

.video-modal video,
.video-modal iframe {
    width: 100%;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    font-weight: bold;
}

.close-button:hover {
    color: #ff6b2c;
}

.video-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #cccccc;
    font-family: 'Merriweather', serif;
}

.form-group input {
    background: #1a1a1a;
    border: 1px solid #444;
    padding: 14px 16px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #ff5722;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 14px;
    color: #cccccc;
    font-family: 'Merriweather', serif;
}

.checkbox-group a {
    color: #ff5722;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    background: #ff5722;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.payout-info {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}

/* Steps Section */
.steps {
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: #ff5722;
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
   font-family: 'Merriweather', serif;
   line-height: 1.4;
}

.step-desc {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    margin-bottom: 60px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Oswald', sans-serif;
}

.faq-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-family: 'Merriweather', serif;
    font-size: 20px;
}

/* Messages */
.messages {
    margin-bottom: 20px;
    width: 100%;
    max-width: 1400px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.alert-error {
    background: #d32f2f;
    color: white;
}

.alert-success {
    background: #388e3c;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .section2 {
        flex-direction: column;
    }

    .video-box,
    .form-section {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero2 {
        flex-direction: column !important;
    }

    .play-button {
        font-size: 30px;
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .video-title {
        font-size: 1.5rem;
    }

    .video-description {
        font-size: 1rem;
    }
}
.video-section-wrapper,
.form-section {
flex: 1; 
}
.video-thumbnail img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}
@media (max-width: 1024px) {
.section2 {
padding: 0; 
gap: 0; 
}
.video-thumbnail img {

height: 270px;

}
.form-section{

margin-top: 50px;

}
}
