/* Universal hover effect for your links */
.navLink {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: 0.25s;
}
.navLink:hover {
    color: #FFAE00;
}

/* ================================
   RESPONSIVE FIXES (DO NOT TOUCH DESIGN)
   ================================ */

/* Tablet: Reduce spacing and shrink CTA */
@media (max-width: 1100px) {
    #navLinks {
        gap: 32px !important;
        font-size: 1rem !important;
    }
    #navCTA {
        padding: 10px 22px !important;
        font-size: 0.95rem !important;
    }
}

/* Small Tablets / Big Phones */
@media (max-width: 860px) {
    #mainNav {
        top: 15px !important;
        width: 94% !important;
        justify-content: center !important;
        gap: 18px !important;
    }

    #navLinks {
        gap: 22px !important;
        font-size: 0.95rem !important;
    }

    #navCTA {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile Layout (no hamburger, just compact row) */
@media (max-width: 650px) {

    #mainNav {
        flex-direction: column !important;
        gap: 14px !important;
        transform: translateX(-50%) !important;
        left: 50% !important;
    }

    #navLinks {
        gap: 18px !important;
        font-size: 0.9rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    #navCTA {
        padding: 10px 26px !important;
        font-size: 1rem !important;
        margin-top: 6px !important;
    }
}

/* Ultra-small phones */
@media (max-width: 420px) {
    #navLinks {
        gap: 14px !important;
        font-size: 0.85rem !important;
    }
    #navCTA {
        width: 100% !important;
        max-width: 260px !important;
        padding: 12px 0 !important;
    }
}

.gen-section {
    width: 100%;
    padding: 80px 0;
    background: #000;
    display: flex;
    justify-content: center;
}

/* ========= MAIN WRAPPER ========= */
.gen-container {
    width: 92%;
    max-width: 1500px;
    background: rgba(20,20,20,0.55);
    border-radius: 26px;
    padding: 45px;
    border: 1px solid rgba(255,150,40,0.22);
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;

    /* Performance-friendly glow */
    box-shadow:
        0 0 45px rgba(255,140,20,0.10),
        inset 0 0 20px rgba(255,150,40,0.05);
}

/* ========= LEFT SIDE ========= */
.gen-left { display: flex; flex-direction: column; gap: 26px; }
.gen-title { font-size: 1.8rem; font-family: 'Space Grotesk'; }

/* Tabs */
.gen-tabs { display: flex; gap: 12px; }
.gen-tab {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    background: rgba(40,40,40,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    color: #bbb;
    cursor: pointer;
    transition: 0.25s ease;
    font-weight: 600;
}
.gen-tab.active {
    background: linear-gradient(90deg,#FF7A18,#FFAE00,#FFD055);
    color: #000;
    border: none;
}

/* Labels */
.gen-label {
    color: #FFAE00;
    font-weight: 700;
    font-size: 1rem;
}

/* Inputs */
.gen-select,
.gen-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: rgba(30,30,30,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1rem;
}

.gen-textarea {
    height: 150px;
    resize: none;
}

/* Small Button */
.gen-small-btn {
    width: fit-content;
    padding: 8px 16px;
    background: rgba(255,150,30,0.18);
    border: 1px solid rgba(255,150,30,0.45);
    border-radius: 12px;
    color: #FFAE00;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Aspect Ratio */
.gen-ar { display: flex; gap: 12px; }
.ar-box {
    flex: 1;
    padding: 14px 0;
    text-align: center;
    background: rgba(30,30,30,0.8);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #aaa;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s;
}
.ar-box.active {
    background: linear-gradient(90deg,#FF7A18,#FFAE00,#FFD055);
    color: #000;
    border: none;
}

/* Row */
.gen-row { display: flex; gap: 14px; }

/* Main Button */
.gen-main-btn {
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(90deg,#FF7A18,#FFAE00,#FFD055);
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 25px rgba(255,160,0,0.25);
    transition: 0.25s ease;
}

/* ========= RIGHT SIDE (PREVIEW) ========= */
.gen-right {
    background: rgba(25,25,25,0.55);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid rgba(255,160,40,0.22);
}

.preview-title { text-align:center; margin-bottom:8px; }

/* Video Box */
.preview-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,200,100,0.22);
    box-shadow: 0 0 25px rgba(255,150,40,0.15);
}
.preview-video { width:100%; display:block; }

/* Arrows */
.nav-btn {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    padding:10px;
    border-radius:50%;
    background:rgba(0,0,0,0.4);
    border:1px solid rgba(255,200,120,0.25);
    color:white;
    cursor:pointer;
}
.left { left:12px; }
.right { right:12px; }

/* Thumbnails */
.thumb-row {
    margin-top:22px;
    display:flex;
    gap:18px;
    justify-content:center;
}
.thumb {
    width:150px;
    height:85px;
    overflow:hidden;
    border-radius:14px;
    border:1px solid rgba(255,150,40,0.22);
    cursor:pointer;
    transition:0.25s ease;
}
.thumb video { width:100%; height:100%; object-fit:cover; }
.thumb.active {
    border-color: #FFAE00;
    transform:scale(1.07);
    box-shadow: 0 0 18px rgba(255,180,60,0.35);
}

/* Mobile */
@media (max-width: 900px) {
    .gen-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}



.feat-container {
    width: 90%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr 60px 1.2fr;
    align-items: start;
    gap: 50px;
}

/* ==============================
   TEXT COLUMN
================================*/
.feat-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.feat-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 680px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 35px;
}

/* ==============================
   GRID OF CARDS
================================*/
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.feat-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,120,0,0.25);
    transition: transform .25s ease;
}
.feat-card:hover {
    transform: translateY(-6px);
}

.feat-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0 8px 0;
}

.feat-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==============================
   DIVIDER
================================*/
.feat-divider {
    width: 6px;
    border-radius: 10px;
    background: linear-gradient(180deg, transparent, #ff7800, transparent);
    animation: glow 2.5s infinite ease-in-out;
}

@keyframes glow {
    0% { opacity: .4; }
    50% { opacity: 1; }
    100% { opacity: .4; }
}

/* ==============================
   VIDEO BOX
================================*/
.feat-video-box {
    width: 100%;
    height: 600px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,120,0,0.3);
    background: linear-gradient(180deg, rgba(255,140,0,0.08), rgba(0,0,0,0.25));
}

.feat-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Tag Labels */
.tag {
    position: absolute;
    padding: 8px 14px;
    background: rgba(10,10,10,0.5);
    border: 1px solid rgba(255,120,0,0.45);
    color: #fff;
    border-radius: 10px;
    font-size: 0.9rem;
}

.tag.top-left { top: 18px; left: 18px; }
.tag.bottom-right { bottom: 18px; right: 18px; }

/* ==============================
    FULL RESPONSIVE FIXES
================================*/
@media (max-width: 1200px) {
    .feat-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feat-divider { display: none; }
    .feat-video-box { height: 420px; }
}

@media (max-width: 768px) {
    .feat-video-box { height: 320px; }
    .feat-card p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .feat-video-box { height: 260px; }
    .tag { font-size: 0.75rem; padding: 6px 10px; }
}

        @media(max-width:1100px){
            section div h2 {
                font-size:2.4rem !important;
            }
        }
        @media(max-width:850px){
            .right-grid {
                grid-template-columns:1fr !important;
            }
        }
        @media(max-width:600px){
            section {
                padding:100px 0 !important;
            }
            section h2 {
                font-size:2rem !important;
                text-align:left !important;
            }
        }

 /* GRID LAYOUT */
        .compare-grid {
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:28px;
        }

        .compare-card {
            padding:32px;
            border-radius:18px;
            background:rgba(25,25,25,0.55);
            border:1px solid rgba(255,255,255,0.10);
            backdrop-filter:blur(10px);
            transition:0.25s ease;
        }

        .compare-card:hover {
            transform:translateY(-6px);
        }

        .highlight {
            border-color:rgba(255,130,30,0.55);
            box-shadow:0 0 30px rgba(255,130,30,0.30);
        }

        .title-orange {
            color:#ff8c2b;
            font-size:1.6rem;
            margin-bottom:18px;
        }

        h3 {
            color:#fff;
            font-size:1.6rem;
            margin-bottom:18px;
            font-weight:700;
        }

        .bar-wrap {
            margin-bottom:14px;
        }
        .bar-wrap span {
            display:block;
            color:#aaa;
            font-size:0.9rem;
            margin-bottom:4px;
        }

        .bar {
            height:8px;
            background:#222;
            border-radius:6px;
        }

        .bar-fill {
            height:100%;
            border-radius:6px;
        }
        .orange { background:#ff8c2b; }
        .white { background:white; }

        .desc {
            color:rgba(255,255,255,0.75);
            line-height:1.55;
            font-size:1rem;
        }

        /* LOWER BOXES */
        .compare-lower {
            display:flex;
            gap:38px;
            margin-top:80px;
            flex-wrap:wrap;
        }

        .lower-card {
            flex:1 1 420px;
            padding:35px;
            border-radius:20px;
            background:rgba(30,30,30,0.55);
            border:1px solid rgba(255,255,255,0.10);
            backdrop-filter:blur(10px);
        }

        .lower-card.highlight {
            border-color:rgba(255,130,30,0.45);
            box-shadow:0 0 25px rgba(255,130,30,0.28);
        }

        /* MOBILE OPTIMIZATION */
        @media(max-width:1200px){
            .compare-grid { grid-template-columns:repeat(2,1fr); }
        }

        @media(max-width:750px){
            .compare-grid { grid-template-columns:1fr; }
            h2 { font-size:2.4rem !important; }
        }

        @media(max-width:550px){
            section { padding:100px 0 !important; }
            h2 { font-size:2rem !important; }
            .compare-card, .lower-card { padding:26px; }
        }

            .c-card {
                aspect-ratio: 9 / 16; /* ⭐ Perfect responsive height */
                border-radius:16px;
                overflow:hidden;
                position:relative;
                cursor:pointer;
                background:#111;
                border:1px solid rgba(255,140,40,0.22);
                transition:0.25s ease;
            }
            .c-card:hover {
                transform:translateY(-4px);
                border-color:#ff7b00;
            }
            .c-card video {
                width:100%;
                height:100%;
                object-fit:cover;
                display:block;
            }
            .tag-video {
                position:absolute;
                top:10px;
                left:10px;
                padding:5px 12px;
                background:rgba(0,0,0,0.5);
                color:white;
                border-radius:10px;
                font-size:0.75rem;
                border:1px solid rgba(255,255,255,0.2);
                backdrop-filter:blur(4px);
                z-index:5;
            }

            /* MOBILE OPTIMIZATION */
            @media(max-width:700px){
                h1 { font-size:2.4rem !important; }
                #community { padding:80px 0 !important; }
                .c-card { border-radius:14px; }
            }

:root {
    --orange: #ff7a00;
    --orange-light: #ffb066;
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);
}

#prompt-library {
    width: 100%;
    padding: 140px 0;
    background: #0b0b0b;
    display: flex;
    justify-content: center;
}

.pl-container {
    width: 92%;
    max-width: 1500px;
}

/* HEADER */
.pl-header {
    text-align: center;
    margin-bottom: 60px;
}

.pl-header h2 {
    font-size: 3.2rem;
    font-family: "Space Grotesk";
    font-weight: 700;
    background: linear-gradient(90deg, #ff7a00, #ffd055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pl-header p {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 820px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* FILTER BUTTONS */
.pl-filters {
    text-align: center;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 26px;
    background: #191919;
    border: 1px solid rgba(255,255,255,0.12);
    color: #ccc;
    border-radius: 40px;
    margin: 8px;
    cursor: pointer;
    transition: .25s;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(255,140,20,0.2);
    border-color: #ff7a00;
    color: #fff;
    box-shadow: 0 0 18px rgba(255,120,20,0.45);
}

/* GRID */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 32px;
}

/* CARD */
.prompt-card {
    padding: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    backdrop-filter: blur(16px);
    transition: .35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prompt-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 0 28px rgba(255,120,20,0.35);
}

.prompt-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 10px;
}

.prompt-card p {
    color: #bbb;
    line-height: 1.55;
    margin-bottom: 22px;
}

/* COPY BUTTON */
.prompt-card button {
    padding: 12px 14px;
    width: 100%;
    background: linear-gradient(90deg, #ff7a00, #ffb066);
    border: none;
    color: #000;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.prompt-card button:hover {
    filter: brightness(1.15);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 900px) {
    .pl-header h2 { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    #prompt-library { padding: 110px 0; }
    .pl-header h2 { font-size: 2rem; }
    .pl-grid { grid-template-columns: 1fr; }
}


