/* YOUR ORIGINAL CSS (unchanged) */

body, html {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont;
    overflow-x: hidden;
}

#menuBtn {
    position: fixed;
    top: 25px;
    left: 25px;
    padding: 14px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 3000;
}

#menuBtn span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    margin: 4px 0;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100%;
    background: #111;
    padding: 60px 20px;
    transition: left .35s ease;
    z-index: 2000;
}

#sidebar h2 { margin-top: 0; }
#sidebar a { color:#ccc; display:block; margin:10px 0; }

.creditBtn {
    width: 100%;
    padding: 12px;
    margin: 6px 0;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 1500;
}

#mainArea {
    padding-top: 120px;
    text-align: center;
}

#hero video {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
}

#promptInput {
    width: 90%;
    max-width: 600px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: none;
    color: white;
    margin: 15px auto;
}

#generateBtn {
    width: 90%;
    max-width: 600px;
    padding: 16px;
    background: #007bff;
    border-radius: 12px;
    border: none;
    color: white;
    margin-bottom: 20px;
}

#promptGuide {
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.resultImg {
    width: 45%;
    border-radius: 12px;
}

#resultsArea {
    margin-bottom: 100px;
}

#paywallModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 5000;
    justify-content: center;
    align-items: center;
}

#paywallBox {
    background: #111;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    width: 80%;
    max-width: 350px;
}

#paywallBtn {
    margin-top: 20px;
    padding: 12px 20px;
    background: #007bff;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

/* -----------------------------------------
   🔞 AGE GATE
----------------------------------------- */
#ageGateOverlay {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ageGateBox {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 350px;
    text-align: center;
}

#ageGateBox button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    border-radius: 10px;
    background: #007bff;
    color: white;
}

/* -----------------------------------------
   🎁 FREE TRIAL POPUP
----------------------------------------- */
#trialPopup {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0,0,0,0.85);
    z-index: 999990;
    justify-content: center;
    align-items: center;
}

#trialPopupBox {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 350px;
    text-align: center;
}

#trialPopupBox button {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #28a745;
    border: none;
    color: white;
    border-radius: 10px;
}