/*
Theme Name: HH4G Under Construction
Author: Jay
Version: 2.0
*/

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #050505, #101010);
    color: white;
    font-family: Arial, sans-serif;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.logo {
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.7;
}

h1 {
    font-size: 64px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.highlight {
    color: #00d4ff;
}

p {
    font-size: 20px;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 15px;
}

.divider {
    width: 120px;
    height: 2px;
    background: #00d4ff;
    margin: 40px auto;
}

.submission-section {
    margin-top: 60px;
    background: rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.submission-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.form-container {
    margin-top: 25px;
    overflow: hidden;
    border-radius: 12px;
}

iframe {
    width: 100%;
    max-width: 700px;
    border: none;
    background: white;
    border-radius: 12px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    p {
        font-size: 18px;
    }

    .submission-section h2 {
        font-size: 28px;
    }

    iframe {
        height: 650px;
    }
}
