/* ===== V2: OG-Image Card ===== */

body {
    background: #1a1e2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 16px;
}

/* ===== Card ===== */
.card {
    max-width: 700px;
    width: 100%;
    background: #1e2433;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Traffic Light Dots ===== */
.traffic-lights {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #FF5F56;
}

.dot-yellow {
    background: #FFBD2E;
}

.dot-green {
    background: #27C93F;
}

/* ===== Main Content ===== */
.content {
    padding-left: 0;
}

/* ===== Name Row ===== */
.name-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.prompt {
    color: #4ADE80;
    font-family: var(--font-mono);
    font-size: 1.2rem;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

/* ===== Title ===== */
.title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-left: 52px;
}

/* ===== URL ===== */
.url {
    font-size: 1rem;
    color: var(--text-gray);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    padding-left: 52px;
    margin-bottom: 32px;
}

/* ===== Profile Photo ===== */
.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 40px;
    right: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

/* ===== CTA ===== */
.cta {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-color);
    padding-left: 52px;
    margin-bottom: 24px;
    display: block;
    transition: color 0.3s;
}

.cta:hover {
    color: white;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--primary-color);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .card {
        padding: 24px 28px;
        display: flex;
        flex-direction: column;
    }

    .traffic-lights {
        order: -2;
    }

    .profile-photo {
        position: static;
        margin: 0 auto 20px;
        width: 70px;
        height: 70px;
        order: -1;
    }

    .name {
        font-size: 1.75rem;
    }

    .title,
    .url,
    .cta {
        padding-left: 36px;
    }

    .name-row {
        gap: 10px;
    }

    .prompt {
        font-size: 1rem;
    }

}
