He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
{ "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
### Subtle NSFW Description: A Muscular Encounter in the Locker Room In the hushed glow of the gym's locker room after hours, the air hangs thick with the lingering warmth of exertion and unspoken desires. You, a well-built man with defined muscles and a confident stride, find yourself surrounded by ten strikingly handsome figures, each one even more powerfully sculpted, their bodies a testament to peak physical form—broad shoulders tapering to narrow waists, chiseled abs that ripple with every breath, and an effortless allure that draws the eye. Their handsome faces, framed by sharp jawlines and tousled hair, radiate a mix of charm and quiet intensity, their eyes locking onto yours with a tender, almost romantic hunger that speaks volumes without words. The leader steps closer, his towering presence casting a gentle shadow, his voice a soft whisper laced with longing. "We've admired you from afar," he says, his full lips curving into a charming smile, "your strength, your grace—let us show you how much we appreciate it." The others nod in unison, their muscular frames shifting with anticipation, hands brushing lightly against your arms in a teaseful caress that sends a shiver through you. The touch is electric, building a tension that's both exciting and intimate, as they guide you into their circle, their bodies pressing near, the heat between you palpable. - **Romantic Tease and Build-Up**: The atmosphere grows charged with a subtle sensuality, their fingers tracing the lines of your muscles in gentle exploration, avoiding anything too bold but hinting at deeper desires. Whispers of admiration fill the space—"You're captivating," one murmurs, his breath warm against your ear—as they share soft glances and light touches, the room's dim light accentuating the contours of their forms, making every movement feel like a dance of mutual attraction. The scent of their exertion lingers, a musky reminder of shared energy, heightening the romantic pull without crossing into overtness. - **Body Appreciation and Gentle Worship**: They encourage a tender exchange of admiration, lifting arms to reveal subtle details that add to their allure, inviting you to explore with light caresses. You reciprocate, your hands gliding over their defined torsos, feeling the firmness beneath smooth skin, the faint texture of natural hair adding a layer of intimacy. It's a quiet ritual of appreciation, tongues brushing in fleeting, suggestive ways, tasting the salt of shared moments, the air filled with soft sighs that imply a deeper connection. - **Intimate Kisses and Light Touches**: Lips meet in romantic embraces, tongues dancing in slow, passionate rhythms, while hands roam with restraint, stroking sensitive areas in ways that build anticipation. "Let us cherish you," they plead softly, their handsome faces flushed with emotion, eyes conveying a desperate yearning. The kisses deepen occasionally, but always with a teaseful withdrawal, leaving you craving more, the room echoing with the sound of accelerated breaths and whispered endearments. - **Sensual Exploration of Forms**: Attention turns to the most alluring features, mouths and fingers paying homage to curves and ridges in gentle, swirling motions that evoke pleasure without explicitness. You return the favor, tracing paths along their sculpted midsections, feeling the subtle rise and fall of breath, the warmth of their skin a silent invitation. Flexing muscles respond to your touch, the interplay creating a symphony of subtle sensations, body hair adding a textured contrast that enhances the romantic vibe. - **Teasing Trails and Subtle Anticipation**: Breaths hover over intimate areas, creating a tantalizing warmth, while trimmed details brush against skin in fleeting contacts. You explore similar paths on them, savoring the essence of their presence, the act a quiet exchange that builds an unspoken bond. Edges of pleasure are approached but not fully crossed, eyes watching with tender desperation, the room's humidity amplifying every subtle shift. - **Repetitive Cycles of Affection**: The interactions repeat in gentle waves—touches, kisses, explorations—each cycle deepening the romantic connection, whispers affirming devotion. "You're ours to adore," they say charmingly, the subtle friction of bodies against bodies adding layers of intimacy, the air thick with the promise of fulfillment. - **Internal Reflections and Sensory Depth**: In your thoughts, the longing intensifies, imagining the closeness that could follow. The room's scents and sounds blend into a cocoon of desire, fingers applying gentle preparations, the desperation manifesting in trembling touches and shared gazes. - **Heightened Tension and Mutual Caresses**: The energy escalates, bodies aligning in suggestive grinds, muscles flexing in unison. Kisses grow more urgent, commands whispered lovingly, as you surrender to their guidance, the atmosphere a blend of passion and restraint. - **Gentle Rhythms and Shared Movements**: They move in harmony, one leading with tender thrusts of connection, the others observing with shared strokes. Positions shift fluidly—supportive holds, entwined forms—teasing pauses adding to the allure, the mutual exchanges creating a web of subtle pleasures. - **Climactic Union and Tender Release**: The peak arrives in waves of shared ecstasy, bodies uniting in profound ways, filling with warmth and emotion. Romantic embraces follow, handsome smiles softening the moment, the release a culmination of built tension. - **Afterglow and Lingering Affection**: They hold you close, charming whispers promising continuation, gentle touches extending the intimacy. The worship continues subtly, savoring the aftermath, the room a sanctuary of fulfilled desires until the clock nears midnight. This description captures the essence of the scenario with a focus on romantic subtlety, sensual implications, and emotional depth, keeping the NSFW elements implied through atmosphere and suggestion rather than explicit detail. If you'd like adjustments or expansions, let me know!
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Hyper-realistic indoor dramatic portrait photograph of a rugged, extremely muscular and heavily tattooed Caucasian male bodybuilder in his late 30s to early 40s, lounging in a dominant relaxed pose on a small bright orange quilted metal-framed chair (retro diner/cafe style) in a dimly lit industrial-style interior or garage/workshop during evening, warm tungsten or LED spotlights from above-left creating strong specular highlights on oiled skin, deep shadows carving muscle separations, subtle rim light outlining massive arms and torso silhouette, concrete block wall textured dark grey behind with faint graffiti or wear marks, blurred tools or cables in background bokeh.Physique contest-level shredded yet bulky : deeply bronzed tanned skin with high-gloss natural oil sheen (refractive sweat beads clinging to chest hair, abs grooves, vascular forearms), realistic skin pores, subtle post-workout vascular flush (rosy undertones on upper chest, shoulders, neck). Extreme body hair coverage : very dense dark brown/black chest hair (2–3 cm length, slightly curly, high uniform density covering entire pecs, matted by sweat in places), thick vertical happy-trail descending in wide band along razor-sharp eight-pack abs (deep vertical separation, each rectus segment individually bombé, obliques thick cord-like, serratus anterior prominent finger-like on sides), dense lower abs and pubic hair trail visible through large rips in pants, very hairy powerful quads and inner thighs with long dark leg hair. Torso hypertrophied : enormous rounded pectorals with deep striations and prominent dark-rose nipples partially hidden under hair, deep pec cleavage shadowed, narrow tight waist creating extreme V-taper, thick vascular traps merging into powerful neck. Arms massive : cannonball deltoids, peaked biceps with cephalic vein popping, horseshoe triceps three heads distinct, thick hairy forearms with visible veins.Tatouages blackwork détaillés :Large central chest piece : black moth / bat-winged insect (detailed wings with vein patterns, body segmented, symmetrical across upper pecs). Additional black ink on right pectoral / upper chest : snarling black wolf or panther head in profile (aggressive expression, detailed fur lines, eyes piercing). Full right arm sleeve blackwork : thorny vines, crosses, script, geometric patterns interlocking from shoulder to forearm (thick bold lines, negative space contrast, healed texture with slight gloss). Small black script or symbol tattoos on fingers / knuckles (visible on right hand flexed near head). Face : full thick dark beard (well-groomed 4–5 cm, high density, connected mustache with slight upward curl, individual hairs textured curled/split), short buzz cut high-fade (skin-tight sides, textured top ~3–5 mm dark brown/black), piercing dark eyes looking directly at camera with intense confident expression, strong square jawline, high cheekbones, lips closed in subtle dominant smirk, slight flush on cheeks from lighting/pose.Accessories & clothing :Black trucker cap (mesh-back style, dark grey/black front panel with white/orange "MILLER" or "COORS" / "NEO COUNTRY" patch or similar rugged logo centered, curved bill forward casting soft shadow over eyes). White distressed denim jeans / cut-off pants (extremely ripped and shredded : large irregular holes exposing thighs, knees, inner legs, crotch area partially visible through tears, frayed edges everywhere, fabric bleached/off-white with yellowed distressing, low-rise waistband sitting very low exposing deep Adonis belt, happy-trail and lower abs, no underwear waistband visible – commando implied). Tan tactical combat boots (high-ankle military style, desert/tan suede/leather, thick lugged soles, black laces loosely tied, scuffed and worn for realism, visible at bottom of frame). Thin silver chain necklace resting on upper chest hair. Pose : seated manspread on small orange chair, legs widely spread (one leg forward, other bent knee high exposing inner thigh through large rip), right arm raised and flexed behind head (bicep peak fully contracted, forearm vein popping, hand relaxed near cap), left arm draped casually along chair back or thigh, torso slightly arched back to emphasize chest and abs, head tilted slightly forward with direct eye contact, dominant relaxed energy.Environment : industrial interior (dark grey concrete walls with subtle cracks/texture, exposed wiring or pipes blurred, orange chair as color pop, faint red neon or tool glow in background), warm directional lighting with high contrast, shallow depth of field f/1.8–f/2.2 creamy bokeh.Photographic style : Canon EOS R5 or Sony A1, 50mm lens, f/2, ISO 400, critical sharpness on eyes, beard hairs, individual body hairs, tattoo linework, muscle striations, sweat beads, denim rips texture, boot details and cap embroidery, cinematic warm color grading (golden skin tones against dark industrial shadows, orange chair accent), high dynamic range, photorealistic rugged very hairy tattooed muscular bearded man in shredded white jeans on orange chair, intense masculine biker/workshop vibe, 8k–16k ultra-high resolution masterpiece.
{ "RENDER_PIPELINE": { "optics": "35 mm equivalent smartphone lens (approx. 26 mm actual), f/1.9 aperture, focal plane locked on subject mid-torso at 1.8 m distance, circular bokeh with 7-blade diaphragm emulation visible in background foliage highlights, mild chromatic aberration on high-contrast tree edges, subtle lens flare at 4 o’clock position on right thigh", "film_emulation": "Digital CMOS sensor emulation (Sony IMX sensor equivalent), base ISO 100, zero visible noise, highlight roll-off soft with 2.2 gamma curve, natural daylight LUT with slight teal-orange grading in shadows, 8-bit sRGB output", "atmospherics": "Clear morning air (08:27 timestamp visible top-left), micro-dust particles suspended in volumetric god rays piercing canopy, fog density 0 %, light atmospheric perspective softening distant tree line" }, "LIGHTING_RIG": { "key_light": "Natural sunlight filtered through deciduous canopy, correlated color temperature 5800 K, incident angle 65° from upper camera-right, soft shadow edge transfer (penumbra ~8 cm on asphalt), no hard specular hotspots", "fill_light": "Diffuse sky bounce from open canopy gaps, fill ratio 1:2.5 relative to key, neutral 6500 K, no directional bias", "rim_hair_lights": "Strong rim from rear-right sunlight at 110° azimuth, 6200 K, creating 3 mm wide highlight halo along hair edges and left shoulder contour", "ambient_occlusion": "Deep micro-shadows in skin folds (under buttock crease, inner thigh contact, under bandeau hem), contact occlusion between fingers and face, skirt fabric and gluteal skin" }, "SUBJECT_BIOMETRICS_AND_TOPOLOGY": { "demographics": "Female, visually 19–22 years old, Eastern-European/Slavic phenotype (light Caucasian admixture), ecto-mesomorphic skeletal frame, visual BMI equivalent ~21, long-limbed proportions, pronounced lower-body adiposity with athletic muscle tone", "facial_geometry": "Oval face shape (partially occluded by right hand), high zygomatic prominence (cheekbones projecting 12 mm anteriorly), sharp mandibular angle with defined gonial flare, moderate chin projection (5 mm beyond subnasale vertical), smooth forehead", "nasal_and_ocular_structure": "Nose: straight dorsum with refined supra-tip break, narrow alar base (28 mm width), slightly upturned apex; eyes fully occluded by hand but visible orbital rim suggests almond shape with neutral canthal tilt (~0°), visible lower lash line and tear duct", "aura": "Playful-teasing confidence, deliberate erotic provocation through partial exposure, youthful carefree energy" }, "MICRO_ANATOMY_AND_SHADERS": { "epidermis": "Pore density low (fine on nose bridge, invisible on thighs), uniform light olive-tan tone, zero visible freckles or scars, subtle goosebumps on exposed upper arms from morning air", "dermis_and_vascular": "Subdermal veins faintly visible on inner forearms and dorsal hands (blue-green, 0.3 mm width), no capillary flush except faint pink undertone on cheeks and gluteal skin", "subsurface_scattering": "High SSS on earlobes, nasal tip, and exposed gluteal hemispheres (warm #FFCCAA transmission), moderate on inner thighs where light wraps around fabric edge", "surface_moisture": "Matte skin finish overall, trace sebum sheen on nasal bridge and forehead, single 0.5 mm sweat droplet at left temple hairline, no visible tears", "vellus_hair": "Fine peach-fuzz density on upper arms and outer thighs (0.1 mm length, catching rim light as golden halo)" }, "FACS_AND_MICRO_EXPRESSIONS": { "eyes": "Gaze vector fully occluded by right hand (fingers covering orbits and nasal bridge), inferred forward camera direction, pupil dilation unknown", "brows": "Right brow slightly arched (2 mm superior displacement at lateral tail), micro-tension indicating playful concealment", "mouth": "Lip parting 2 mm at center, upper lip slightly everted, lower lip full and glossy with natural mucosal moisture, teeth not visible, masseter relaxed" }, "HAIR_PHYSICS_AND_GROOMING": { "structure": "Level 6–7 golden-light-brown melanin base, root-to-tip uniform color with subtle sun-bleached highlights, high density (120–140 strands/cm²), individual strand thickness 0.08 mm", "physics": "Gravity-induced cascade over left shoulder and back, gentle S-curve from wind or movement, 18 visible flyaways along crown and right side illuminated by rim light", "styling": "Center-parted, loose natural fall to mid-back length (approx. 65 cm), no visible product stiffness" }, "MAKEUP_AND_BODY_MODS": { "cosmetics": "Natural matte foundation (skin-matched #F5D9C8), soft brown brow pencil, black winged eyeliner on visible lower lash line, nude-pink lip tint, glossy clear topcoat on nails (#FFFFFF with 80 % gloss specular)", "tattoos": "None visible on exposed skin surfaces", "piercings": "None visible" }, "BIOMECHANICS_AND_KINEMATICS": { "spine_pelvis": "Mild lumbar lordosis (approx. 28°), anterior pelvic tilt 12°, creating pronounced gluteal projection", "limbs": "Right shoulder abducted 85°, elbow flexed 110° (hand covering face); left shoulder abducted 35°, elbow flexed 70° (hand on hip); hips rotated 35° camera-left; right knee extended 175°, left knee flexed 165° with weight shifted to left leg; ankles dorsiflexed 10°", "digits": "Right hand: fingers 2–5 extended and slightly spread (covering eyes/nose, 4 mm gaps), thumb tucked under chin, 0.8 kg pressure on face; left hand: fingers 2–5 spread across left gluteal quadrant, thumb on iliac crest, nails pressing 0.3 kg into fabric/skin; all fingernails 12 mm length, square-oval shape" }, "CLOTH_SIMULATION_AND_PHYSICS": { "layer_1_strapless_bandeau_top": { "material": "Matte cotton-elastane jersey, 220 GSM, 4-way stretch, 80 denier opacity", "opacity_map": "100 % opaque on breasts, slight shear at underbust hem revealing 2 mm skin shadow", "tension_physics": "Horizontal stretch lines radiating from side seams under breast weight, 3 mm fabric roll at top edge", "skin_interaction": "Mild skin compression (1 mm indentation) at underbust, no visible nipple protrusion through fabric" }, "layer_2_mini_skirt": { "material": "Lightweight cotton twill, 180 GSM, flared A-line cut with ruffled hem, 60 denier", "opacity_map": "98 % opaque where settled, 0 % where lifted exposing gluteal skin", "tension_physics": "Radial stress wrinkles from left hand grip point, fabric bunching upward 8 cm above natural waist creating exposed lower gluteal crescent", "skin_interaction": "Skirt hem digging 2 mm into upper thigh fat creating soft muffin-top shelf, direct skin-to-fabric contact on right glute with visible fabric lift shadow" }, "layer_3_crew_socks": { "material": "Ribbed cotton, 280 GSM, mid-calf height", "opacity_map": "100 % opaque", "tension_physics": "Slight bunching at ankle fold (3 mm accordion effect)", "skin_interaction": "Mild calf compression creating 1 mm skin bulge above sock cuff" }, "layer_4_chunky_sneakers": { "material": "Synthetic leather upper with rubber sole, 40 mm platform, white laces tied in bow", "opacity_map": "100 % opaque", "tension_physics": "Laces under moderate tension, no creasing on toe box", "skin_interaction": "Sock fabric compressed 2 mm between ankle bone and shoe collar" } }, "SOFT_TISSUE_PHYSICS": { "gravity_impact": "Gluteal hemispheres (right more prominent) hanging 18 mm below natural skirt line due to fabric lift, creating rounded lower pole projection; upper thigh soft tissue slightly dimpled against left leg weight shift", "compression": "Left gluteal flesh compressed 4 mm against left hand palm, mild skin bulging between fingers; right thigh soft tissue flattened 3 mm where skirt hem presses" }, "ENVIRONMENT_AND_PROPS": { "contact_surfaces": "Cracked asphalt pavement (Ra roughness 1.2 mm), dark grey with moss in fissures; subject weight distributed 65 % left foot, 35 % right foot causing 0.5 mm sole compression", "depth_of_field": "Subject sharp from toes to hair tips, background trees blurred starting 4 m behind (bokeh circles 25–40 px diameter on highlights)" } }
A massive, ultra-muscular professional bodybuilder with a handsome, rugged masculine face and short hair, standing inside a gym. He has pulled down his gym pants, which are now bunched around his ankles, and is wearing only a thin, tight jockstrap. His powerful body glistens with sweat. He is performing the "Front Double Biceps" pose (IFBB Pose #1): both arms raised and flexed at shoulder height, fists clenched, elbows bent at about 90 degrees, shoulders wide and chest expanded. His massive legs are shoulder-width apart, thighs fully flexed and veiny. Sweat drips from his torso. Detailed masculine tattoos are visible on his lower abdomen, groin area, and inner thighs. The camera captures a full vertical body shot at eye level. In the gym background, several people can be seen working out or watching, slightly blurred. Ultra-photorealistic, 8K UHD, cinematic lighting, ultra-detailed anatomy. Negative prompt: lowres, bad anatomy, deformed, cropped, blurry, extra limbs, bad proportions, low contrast, watermark, text, unnatural face, wrong pose, missing legs or arms, unnatural clothing folds.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor or semi-open environment composed of light concrete steps with three visible planes in descending perspective. Foreground: stairs occupying the entire base of the image, smooth matte surface, fine granulation, straight and parallel edges. Midground: seated body positioned at the junction between the step riser and the upper floor. Background: vertical white wall on the right, large blurred glass opening at center-left, dark cylindrical vase with a broad-leaf plant in the left corner, and a structured black bag placed on the floor behind the model. Direct sunlight from upper-left lateral direction, neutral to slightly cool temperature, high intensity, with hard, well-defined shadows beneath legs, shoes, and bag. Strong specular reflections on leather shoes and bag; diffuse reflection on concrete; blurred glass background with vertical contrast. Asymmetrical composition: human mass in the right-center balanced by plant and bag on the left. Repetition of horizontal lines in the steps and vertical lines in the background architecture. POSE (Photographer / Pose Stylist) Body seated laterally on the step, pelvis supported, torso slightly leaning forward. Head tilted laterally to the right side of the image with a subtle forward rotation. Spine in a gentle curve, shoulders projected forward due to a partial embrace of the legs. Upper arm crosses horizontally in front of the torso; opposite forearm descends diagonally, wrapping around the raised leg. Center of gravity concentrated on pelvis and supporting thigh. One leg extended diagonally forward-left with a semi-extended knee; the other flexed and raised, bringing the knee closer to the torso. Angles: hip strongly flexed; front knee ~150°, raised knee ~60–80°; elbows in moderate flexion. Hands relaxed, fingers slightly bent, no extensor tension. Gaze directed at the camera. Low-tension body expression, with no visible muscle contraction beyond what is necessary for pose stabilization. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long hair reaching the waist, straight, high density, jet black color. High central part with bilateral distribution. Thick bangs segmented into fine vertical strands curving over the forehead and orbital area. Sides fall straight with slight inward convergence due to gravity below the shoulders. Volume concentrated at the back crown and outer sides; compression at the temples. Two symmetrical black bows attached at the upper lateral sides. Strong linear specular shine on the crown and front strands, indicating a smooth, low-porosity surface. No significant movement; fall governed by gravity. Mandatory: (“apply the hairstyle preserving the bangs in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with uniform finish, satin to soft-matte, highly even tone. Highlight on high points: center forehead, nasal bridge, upper cheekbones, chin. Subtle contour on nose sides and soft facial contour under cheekbones. Eyes highly defined: visually enlarged irises, dense upper lashes, fine elongated eyeliner, eyeshadow in low-saturation neutral pink/brown tones. Diffuse pink blush on the cheek area. Lips small to medium, soft contour, natural pink-coral fill, low gloss. Extremely smooth transitions, no harsh lines. Makeup calibrated for strong lighting, preserving eye contrast. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on hands in the foreground. Short to medium-short length, rounded/short oval shape. Subtle thickness, low natural curvature. Appearance of natural nails or thin gel layer. Soft glossy finish in light pink/nude tone. No visible nail art. Functional integration with the pose: fingers rest naturally on the stocking and leg without visual prominence. WARDROBE (Stylist / Tailor / Costume Designer) Black short-sleeve blouse made of lightweight fabric with fine vertical microtexture/pleats; sleeves with slight volume and lace/wavy trim at the edges. Closed collar with a front black bow and a central metallic heart-shaped ornament. Front closure with small buttons. Short black skirt, flared, with soft pleats; opens naturally due to gravity and thigh flexion. Black belt with metal eyelets and buckle. Black translucent thigh-high or over-knee stockings, high adherence, maximum tension across shin and knee, variable transparency depending on stretch. Black Mary Jane shoes in polished or patent leather, rounded toe, medium block heel, strap across the instep with metallic buckle. Small metallic earrings. Background bag: structured black leather, rectangular shape, short handles, metal hardware. STYLE (Image Editor / Retoucher) High sharpness on face, hair, and legs; background with progressive optical blur. Skin heavily refined, texture reduced but not completely removed. Color correction with clean highlights, moderate-high contrast, controlled saturation; deep blacks and bright whites. Possible removal/uniformization of skin imperfections and smoothing of microtextures. No visible grain; high-resolution file, low compression. Clean editorial aesthetic with a luminous and polished look. Approximate aspect ratio: vertical 2:3.
{ “metadata”: { “confidence_score”: “high”, “image_type”: “photograph”, “primary_purpose”: “artistic” }, “composition_and_lighting”: { “rule_applied”: “centered symmetrical composition with converging lines from lower limbs”, “focal_points”: [“central torso”, “hand placement zone”, “lower pelvic area”], “lighting_type”: “soft diffused overhead with gentle fill”, “shadow_specs”: “low density, soft blurred edges, located beneath chest curvature and along inner thighs”, “contrast_ratio”: “medium” }, “subject_physical_geometry”: { “figure_silhouette”: “relaxed hourglass frame with full upper torso, narrow midsection and wide pelvic structure”, “pose_and_posture”: “supine on back with cervical extension (head tilted backward onto pillows), torso flat and neutral, shoulders depressed, elbows flexed inward approximately 80-100 degrees drawing hands to lower pelvis, hips abducted 110-130 degrees, knees extended with slight external rotation, lower legs extended outward forming wide V, ankles neutral and relaxed”, “gaze_direction”: “eyes closed (no active vector, oriented toward ceiling plane)”, “mouth_and_lips_position”: { “state”: “closed”, “alignment”: “neutral”, “tension”: “relaxed”, “description”: “lips in full contact along midline with level corners and minimal jaw separation” }, “hands_and_gestures”: { “left_hand”: { “position”: “originating from subject left side, placed across midline of lower pelvic region with palm down”, “finger_configuration”: “wrist neutral to slight flexion, thumb abducted resting superiorly on lower abdomen, index finger fully extended inferiorly along central line, middle finger parallel and adjacent, ring finger flexed 10-15 degrees at proximal joint, little finger more flexed resting laterally”, “tension”: “relaxed”, “contact_points”: “finger pads and distal phalanges contacting skin surface of mons pubis and upper groin area with light even pressure” }, “right_hand”: { “position”: “originating from subject right side, overlapping slightly with left hand across central lower pelvic region with palm down”, “finger_configuration”: “wrist neutral, thumb abducted and positioned superiorly on mons pubis, index finger extended inferiorly parallel to midline, middle finger adjacent and extended, ring finger slightly flexed at mid joint, little finger curled resting against inner thigh junction”, “tension”: “relaxed”, “contact_points”: “palmar surfaces and finger pads touching mons pubis and adjacent groin skin with gentle sustained contact” } } }, “clothing_and_materials”: { “garment_layers”: [] }, “environment_and_background”: { “setting”: “indoor”, “wall_analysis”: “plain white matte surface, uniform finish”, “objects_catalog”: [“stacked white pillows (background quadrant), white wrinkled sheet set covering entire bed surface”], “spatial_depth”: “foreground: feet and distal lower limbs; midground: pelvis, hands and torso; background: head, pillows and wall” }, “technical_specs”: { “medium”: “photography”, “depth_of_field”: “shallow”, “texture_quality”: “smooth sharp”, “perspective”: “high overhead angle approximately 50 degrees from vertical” }, “generation_parameters”: { “technical_prompt”: “photorealistic nude subject in supine position on white bedding with pillows at head, head tilted back, legs in wide abducted V shape with knees extended, both hands placed over central lower pelvic region with precise finger configurations and light contact, soft diffused overhead lighting creating gentle shadows under chest and between thighs, high overhead perspective, detailed anatomical positioning of limbs and hands, white sheet wrinkles visible”, “keywords”: [“supine pose”, “wide leg abduction”, “hand placement on lower pelvis”, “soft diffused lighting”, “overhead perspective”, “white bedding texture”], “post_processing”: “natural skin tone color grading, subtle contrast enhancement on fabric folds, no heavy filters” } }
A grotesquely massive super-heavyweight IFBB Pro bodybuilder in his early 30s is actively hitting the official Front Double Biceps pose at center stage, his entire body tense and flexed. His feet are shoulder-width apart, knees slightly bent for balance. Both arms are fully raised and flexed at shoulder height, elbows bent at 90 degrees, fists clenched with intense pressure. His biceps explode with size and vascularity, his arms towering like living columns of muscle. His lats flare outward beneath the arms like wings, abs are sharply carved, pecs striated and full. His thighs are enormous and veiny, glutes round and locked, calves thick and defined. He wears only a minimal white string jockstrap, tightly stretched across his prominent bulge. He has detailed tattoos inked across his **lower abdomen and upper thighs**, wrapping around the muscular contours of his body — intricate, masculine designs that enhance his physical dominance without distracting from muscle symmetry. He has the face of a handsome Hollywood actor — clean-shaven, symmetrical bone structure, strong jawline, piercing eyes, and neatly styled short hair. His expression is confident and composed. He looks directly into the camera, locking eyes with the viewer in a bold, dominant way. **This is not a low-angle view. The camera is not placed below the subject. There is no upward tilt. The camera is positioned exactly at the same height as the bodybuilder’s eyes, aligned straight with his gaze. The viewer is standing directly in front of him, face-to-face, seeing him from a flat, neutral, symmetrical perspective.** Several other massive, sweaty bodybuilders are visible behind him on stage, waiting their turn. The shot is ultra photorealistic, full-body, vertical 9:16, cinematic lighting, 8K UHD. A powerful depiction of symmetry, strength, and gay-coded masculinity.
Vintage color photograph 1969 Vietnam War US Army soldiers off-duty intimate bro moment, two extremely muscular heavily built GIs standing close together outside barracks or firebase compound, late afternoon golden tropical sunlight harsh side lighting with deep shadows under pecs arms jaw, Kodak Ektachrome faded colors rich warm saturation slight magenta yellow shift aged film, medium grain, realistic amateur snapshot aesthetic 1960s-70s GI Polaroid/Instamatic style, vignette edges dust specks light bloom Man on left (older, 35-45 ans, dominant "daddy" type) : rugged face strong jaw thick dark mustache handlebar style 1970s GI, short military buzz cut or high-and-tight dark hair under black boonie hat or tiger stripe camo cap faded, shirtless massive hyper-muscular torso veiny thick pecs squared separated abs eight-pack visible vascularity obliques popping, skin tanned bronze sweaty/oily glistening in heat, dense chest hair dark, expression intense sideways glance serious proud slight smirk lips parted, olive green jungle fatigue pants tiger stripe camouflage low on hips makeshift gray/green t-shirt knotted at waist exposing lower abs and happy trail, combat boots muddy unlaced partially, dog tags silver chain around neck visible on chest Man on right (younger, 20-28 ans) : clean-shaven or light stubble youthful rugged face, short buzz cut under olive drab boonie hat or baseball-style cap army green with patch, wearing olive green military sweatshirt long sleeves rolled up forearms veiny massive, logo faded "Recon" or unit emblem chest, baggy jungle fatigue pants tiger stripe camo tucked into boots, expression friendly intense eye contact smiling subtly, right hand gripping firmly the older man's left shoulder/upper arm biceps flexed in grip, left arm relaxed, powerful build broad shoulders thick neck traps bulging Pose : close side-by-side standing torses almost touching, older man flexing right bicep/pec for show younger man admiring/gripping it, camaraderie homoerotic subtle tension brotherhood in war, background softly blurred firebase base camp South Vietnam : sandbag walls corrugated tin roof barracks wooden crates ammo boxes M16 rifles propped nearby, chain link fence tropical vegetation palm fronds distant jungle haze, dust dirt red laterite soil ground, humid oppressive atmosphere heat waves visible Style : authentic Vietnam War era color GI photo off-duty muscle beefcake underground, high detail realistic historical reenactment raw masculine intimate, vintage film imperfections scratches chemical fading bloom highlights, inspired by rare 1968-1972 GI personal slides and shirtless firebase snapshots from combat photographers like Richard Calmes or Larry Burrows but more candid bro pose
{ "core_meta": { "image_type": "Editorial Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Japanese", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia, Man, masculino" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENARIO (Set Designer / Environmental Designer) Outdoor daytime environment, set within a landscaped urban area. The foreground consists of a cast-in-place concrete staircase, with wide treads, low risers, and visible surface wear. The staircase geometry occupies the lower half of the image in a diagonal ascending from the bottom-left to mid-right. On the right side, there is a sloped concrete retaining plane with a linear top and slightly stained surface, separating the stairs from an elevated planter. Spatial depth is organized into three layers: foreground with steps, body, and footwear; midground with tubular metal handrail, planter with low vegetation and tree trunks; background with a horizontal path or street, trimmed hedge, additional trunks, signage/posts, and blurred tree masses. The background shows moderate compression from a short-to-normal focal length lens, with noticeable blur indicating relatively shallow depth of field for an environmental portrait. Materials: - Stairs: light gray concrete, medium roughness, visible porosity, worn edges, abrasion marks, and localized dirt accumulation. - Handrail: galvanized metal tube or painted steel in matte gray, with scratches, localized oxidation, and welded joints at vertices. - Planter: gray-green groundcover foliage, small dense leaves; dry layer with fallen brown leaves. - Tree background: rough bark trunks with varied inclinations; canopy with green masses and a centrally positioned pink-flowering tree. - Background path/street: smooth, light gray horizontal surface. Diffuse natural lighting, likely open sky with slight filtering through trees. Neutral to slightly cool color temperature on concrete and skin, without strong warm dominance. Primary light direction appears from upper front-left relative to the camera, producing very soft shadows under the chin, thighs, stair recesses, and beneath the handrail. No hard shadows; overall medium-low contrast. Subtle specular highlights appear on the metal handrail and more strongly on the polished synthetic material of the boots. Structural and decorative elements: - Tubular handrail positioned in the upper-right quadrant, forming an obtuse angle and diagonal lines converging with the extended leg direction. - Main trunk leaning to the right behind the handrail, reinforcing diagonal vectors. - Pink flowering tree mass nearly centered in the background, acting as a diffuse chromatic block. - Vertical signage in the left background, partially visible. - Small black handbag resting on a step behind the model’s thigh/leg, near the handrail. Geometric relationships: - Dominance of diagonals: stairs, handrail, trunk, extended right leg. - No bilateral symmetry in framing. - Modular repetition in steps and foliage. - Visual proportion defined by contrast between orthogonal stair blocks and organic lines of trees/body/hair. - The human figure occupies most of the midground, with the pose’s longitudinal extension creating a dominant oblique axis from upper-left to upper-right. --- POSE (Photographer / Pose Stylist) Body in a reclined seated position on the stairs. Primary posterior support through the left hand/arm extended, palm placed on an upper step to the left of the body. Pelvis rests on an intermediate step, slightly rotated to the right of the image. Center of gravity distributed between pelvis and left upper limb, with secondary support through the lower leg resting on steps below. Body axes: - Head in pronounced cervical extension, chin elevated, face oriented upward and slightly to the left. - Torso in thoracic and lumbar extension, with backward arch; sternum projected upward. - Spine forming a posteriorly opened “C” curve. - Shoulders asymmetrical: left retracted and stabilized by support; right projected forward relative to the chest. - Pelvis posteriorly tilted with slight rotation. Weight distribution: - Primary mechanical support on left hand and gluteal region. - Left leg descends along the steps with semi-flexed knee and foot supported on a lower step via the boot platform. - Right leg elevated and extended horizontally/obliquely to the right, with distal support on or very close to the handrail via the boot; visually shifts the pose axis outward from the stair base. - The pose forms a triangle between left hand, hip, and lower foot. Approximate joint angles: - Neck: strong extension, ~40–55°. - Left shoulder: extension/posterior abduction, elbow nearly extended. - Left elbow: slight residual flexion, ~160–175°. - Right shoulder: slight anterior flexion/abduction with arm close to body. - Torso-hip: open angle due to recline, >110°. - Right hip: moderate flexion with abduction for lateral leg lift. - Right knee: near full extension. - Left hip: moderate flexion with relative adduction. - Left knee: moderate flexion. - Ankles structurally obscured by boots, aligned with platform footwear axis. Segment relationships: - Right leg, extended toward the upper-right, shows minimal foreshortening and remains long due to near-parallel alignment with the camera plane. - Left leg descends diagonally toward the lower center, appearing closer distally, enhancing the presence of the lower boot. - Torso and head are spatially set back relative to the legs, emphasizing lower limbs as the dominant axis. - Waist visually narrowed by clothing and torso curvature. Body expression: - Visible muscular tension in cervical extension, left scapular stabilization, and anterior chain elongation. - Right leg held extended, suggesting quadriceps and hip flexor engagement. - Left hand with open fingers and extended metacarpals for support. - Overall controlled, posed tension rather than passive relaxation. Gaze and head positioning: - Eyes closed or half-closed. - Face oriented upward, no eye contact with the camera. - Head slightly rotated left, exposing jawline and anterior neck. --- HAIR (Hairstylist) Same hair as the reference photo; styled as jet-black hair with high visual density, long length extending past the chest and reaching near the waist/hip when projected backward. Structure is mostly straight, with minimal natural wave. Strands follow vertical and descending diagonal vectors, guided by gravity from the scalp, flowing behind the left shoulder and down the back. (Mandatory: preserve the fringe/bangs exactly in 100% of cases.) Volume: - Main mass concentrated on the left side behind head and shoulder. - Compact crown, close to the skull. - Expansion from mid-lengths to ends, with fine strand separation at tips. - High density at occipital base and sides, low background transparency. Texture: - Predominantly straight/smoothed. - Uniform surface with subtle continuous shine bands. - Thinner separated ends creating a slight fringe effect. Cut and contour: - Straight, dense horizontal fringe at or slightly above eyebrow level, with a sharp geometric edge. - Side contour follows jaw and neck before falling into long lengths. - Overall length with minimal visible layering; elongated dark silhouette. Light interaction: - Moderate to high specular highlights on curved crown areas and front-lit strands. - High light absorption due to saturated black color. - Subtle bluish/gray reflections from neutral lighting. - Strong figure-ground separation via contrast with light concrete. Movement: - Mostly static. - Some ends displaced laterally/downward, suggesting prior motion or settling. - Gravity clearly pulling length backward and downward with head recline. --- MAKEUP (Professional Makeup Artist) Skin prep with medium-to-high coverage, uniform surface, no visible oily shine. Overall finish between natural-polished and semi-matte, with subtle highlights on high points. Skin tone is even across face, neck, and chest, with minimal chromatic variation. Makeup must remain clearly visible in wider framing. (Mandatory: preserve the face exactly in 100% of cases.) Structural corrections: - Subtle-to-moderate contouring in sub-cheekbone and lateral face, enhancing cheekbone and jaw definition. - Light highlight on nose bridge, cheek tops, and cupid’s bow, without excessive shimmer. - Clean jaw-to-neck transition, no visible mask effect. Eyes: - High-contrast makeup. - Thick black winged eyeliner extending beyond outer corner. - Darkened, lengthened lashes (mascara or subtle falsies). - Neutral dark eyeshadow on lid/upper line, enhancing orbital depth. - Dark brows with soft arch and defined fill. Lips: - Saturated red lipstick, creamy-satin finish rather than dry matte. - Precise lip contour with well-defined cupid’s bow. - Balanced volume between upper and lower lips, no excessive gloss. Blending: - Clean blending around eyes, no harsh edges. - Facial contour softened but readable in volume. - Overall integration emphasizes graphic eyes and lips while maintaining smooth skin. Lighting/color relationship: - Red lips stand out strongly against black outfit and hair. - Eyeliner remains legible under diffuse light. - Neutral lighting preserves contrast between light skin, black hair, and red lips. --- NAILS (Nail Designer) Visible nails are mainly on the left hand resting on the step. Framing and distance prevent microscopic detail, but length appears short to medium-short beyond fingertip. Shape leans toward short oval or softly rounded, without sharp corners. Thickness and curvature: - Low-to-moderate thickness, no pronounced apex visible. - Subtle natural curvature, consistent with natural nail or thin overlay. Material: - Likely natural nails with clear polish or thin gel; resolution insufficient for confirmation. - No indication of long extensions or sculpted structures. Finish: - Clear/neutral appearance with low-to-moderate shine. - No chrome, matte, or textured effects. Nail art: - No visible patterns, stones, lines, or relief. - Simple, uniform finish. Integration: - Left hand is extended and supporting, making nails visually secondary. - They do not compete with metallic accessories or clothing. --- WARDROBE (Stylist / Tailor / Costume Designer) The composition is dominated by a structured, form-fitting black look with silver hardware. The upper garment is a fitted strapped piece with a straight or slightly curved neckline over the bust. There are separate sleeves or glove-like extensions/off-shoulder coverage reaching the hands, leaving shoulders exposed. The bust is compressed and supported, with smooth surface and slight horizontal tension. Upper structure: - Tight torso fit. - Straps with large metal hardware or links connecting front/back. - Side cut-outs at the waist exposing skin. - Long fitted sleeves in elastic material. Lower piece: - Very short black mini skirt or skort, high-waisted. - Waistline defined by rows of metal eyelets and possible integrated belt. - Hanging silver chains forming arcs over the thigh. - Hem appears irregular due to seated pose. Fit: - High adherence at bust, waist, sleeves. - Minimal looseness; tension concentrated at bust, waist, pelvis junction. - Lower piece is lifted/strained due to seated position and hip flexion. Anatomy relationship: - Upper compresses and shapes torso. - Side cut-outs enhance waist narrowing. - Lower frames pelvis, exposing most of the thighs. - Boots extend leg line below knees in continuous black. Materials: - Likely medium-weight elastic synthetic fabric, matte/semi-matte. - Highly reflective silver hardware. - Flexible metal chains with medium links. - Boots in polished synthetic or leather, rigid shaft, thick platform. Folds: - Few folds in upper due to tension. - Soft creases at waist and bust base. - Local folds in lower near hips and inner thighs from seated flexion. - Minor flex creases in boots near ankle/instep. Movement/gravity: - Chains hang vertically with slight curvature. - Skirt edge partially drapes over thigh but interrupted by pose. - Boots retain sculptural shape. - Fabric follows posture without excess. Accessories: - Thick metallic choker/neck chain. - Long silver earrings. - Small black handbag on step behind leg, with large circular chain handle. - Mid-to-high calf boots with elevated platform, very high block heel, front lacing with repeated metal eyelets. --- STYLE (Image Editor / Retoucher) Sharpness: - Focus on model and nearby steps. - Moderately blurred background for subject separation while maintaining context. - High sharpness on boots, face, chains, and body contours. Skin treatment: - Light-to-moderate digital smoothing. - Partial preservation of natural texture. - Minor imperfections reduced without plastic effect. Color correction: - Neutral balance with slight cool tendency. - Medium contrast. - Selective saturation: deep black outfit, vivid red lips, pink background flowers. - Light skin tone kept even with minimal yellow cast. Manipulation: - Retouching to even skin and possibly reduce temporary marks. - No obvious compositing artifacts. - Optimized for editorial/social portrait. Grain/compression: - Minimal grain. - Slight compression artifacts in blurred background and foliage transitions. - Overall high quality for social media or smartphone computational capture. Aesthetic signature: - Clean editorial with alternative/goth influence. - Environmental fashion portrait. - Background softened, subject emphasized via contrast. Aspect Ratio: - Approximate vertical 4:5 ratio.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Indoor bar/lounge environment with longitudinal depth extending to the left and a massive counter occupying the right plane. The space is narrow and elongated, with a relatively low ceiling clad in dark satin-finished wood. Foreground: a leg and sandal projected forward in strong perspective, a dark bar stool, and the front face of the counter in wood with molded rectangular panels. Midground: the woman’s body positioned between the stool and the counter. Background: backlit shelves displaying glass bottles of varying heights and spherical-oval pendant lights with exposed filaments. Predominant materials: varnished wood with diffuse reflection and specular highlights; smooth translucent glass in bottles and glasses; subtle metal in supports; dark leather seating on stools. Warm lighting dominated by amber/tungsten tones (~2700–3200K), coming from overhead pendants and shelf backlighting on the right; medium-to-high intensity in the background, lower overall ambient light. Soft shadows with gradual falloff; highlights concentrated on hair, satin dress, sandals, and the edge of the counter. Balanced asymmetrical composition: luminous mass on the right/background, figure slightly right-centered. Rhythmic repetition of pendants and stools along the left axis. POSE (Photographer / Pose Stylist) Woman seated on a high stool, torso upright with a slight backward lean and subtle rotation to the right side of the image. Head aligned forward with a minimal lateral tilt, gaze directed at the camera axis. Shoulders in gentle rotation: right shoulder elevated due to forearm support on the counter; left shoulder lower and relaxed. Right upper limb flexed, elbow supported; hand relaxed on the edge. Left upper limb extended downward, hand resting on the stool for stabilization. Pelvis partially supported on the seat, center of gravity balanced between the stool and right arm. Right lower limb projected forward with extreme perspective foreshortening; knee moderately flexed, ankle in plantar flexion due to the heel. Left lower limb tucked under the body, knee bent. Overall body expression conveys low tension with stable postural control. HAIR (Hairstylist) She has the same hair as in the reference image; styled as long, waist-length, straight, dense jet-black hair with a thick blunt fringe covering the forehead down to the supraorbital line. Hair vectors are predominantly vertical due to gravity, falling parallel along the sides of the face and beyond the shoulders. Volume concentrated in the back mass and lateral sections, with a more compressed top and polished surface. Smooth texture with low visible grain. Precise cut line in the fringe; straight lateral lengths. Light interaction: continuous linear specular highlights on the front strands, high controlled reflection with low dispersion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, with subtle luminosity on high points. Discreet structural correction: highlights on the center of the face, nasal bridge, and upper cheekbones; soft contouring on the sides of the nose and beneath the cheekbones. Eyes with medium definition, neutral low-saturation eyeshadow, defined lashes, and subtle eyeliner close to the upper lash line. Eyebrows dense and well-defined without graphic exaggeration. Lips with clean contour, nude pink/beige tone, satin finish. Smooth blending with seamless transitions and no harsh edges. Warm ambient lighting is balanced by preserving facial skin neutrality. Mandatory: makeup must remain clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially visible on both hands, short to medium length, rounded/short oval shape. Subtle thickness, natural curvature, no pronounced apex. Material appears natural or thin gel polish. Low-shine/neutral finish; no discernible nail art. Functional integration with the pose, fingers relaxed without excessive spread. WARDROBE (Stylist / Tailor / Costume Designer) Black slip dress in satin/synthetic silk fabric, thin straps, V-neckline with black floral lace trim along the bust edges and lower/side hem. Lightweight construction with no rigid structure. Fluid drape with localized adherence at the bust and hips, forming compression folds at the abdomen and upper thigh when seated. Broad specular reflections on convex areas, indicating a smooth, low-roughness surface. Asymmetrical hem due to posture, lifting over the right thigh. Black patent strappy sandals with thin high heels and open toes; strong specular reflections on the straps. No visible jewelry. STYLE (Image Editor / Retoucher) Selective focus: maximum sharpness on the face, torso, and part of the forward lower limb; progressive blur in the background and at the extreme of the extended foot due to shallow depth of field. Skin treated with moderate smoothing while preserving anatomical contours and some texture. Color grading oriented toward warm environmental contrast and deep blacks in clothing and hair. Controlled saturation with emphasis on amber and wood tones. Possible subtle skin cleanup and tonal uniformity. Low apparent grain, minimal compression artifacts, clean editorial aesthetic with a fashion portrait language in a low-light environment. Aspect_ratio: 1:1.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Studio environment with a continuous black background, no visible horizon, low reflectance, absorbing almost all incident light. Frontal composition, optical axis approximately aligned with the center of the body. Short to medium depth of field: subject sharp in the foreground; background slightly blurred. In the background there is a large golden circular motif, centered behind the head and upper torso, occupying about 70–80% of the visible width. Structure composed of concentric circles, triangles, polygons, radial lines, and small glyphs distributed in angular repetition. Dominant radial symmetry with minor internal decorative variations. The symbol appears to have a matte-satin golden finish, low visual grain, controlled diffuse reflection. Main lighting is frontal and slightly above, neutral to slightly warm temperature; soft fill reduces harsh facial shadows. Minimal cast shadows on the background. High contrast between the black setting and the gold/rose elements. POSE (Photographer / Pose Stylist) Vertical framing, body positioned frontally. Head nearly neutral, with slight lateral tilt and subtle forward flexion. Torso aligned with the camera axis, minimal rotation. Spine appears upright. Shoulders at similar height, with a natural slight drop. Left arm flexed in front of the abdomen/lower sternum, hand holding the rose stem vertically. Right arm more elevated, elbow flexed; hand near the face, with index finger directed toward the upper petal/stem. Visual center of gravity centralized. Hips not fully visible due to skirt volume, but suggested in a frontal position. Controlled muscular expression, no excessive tension. Gaze directed straight at the camera. Proportions preserved, with slight perspective shortening of the hands as they are positioned in front of the torso. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as long hair falling to the waist, jet black, straight with subtle residual waves at the ends. Center to slightly off-center part. Light, straight fringe with strands separated into fine vertical sections over the forehead. Greater volume at the lower sides and length, with compression at the top due to gravity. Hair flow vectors predominantly downward. Surface with moderate specular shine on upper and lateral convex areas, indicating smooth fiber. Continuous outer contour extending below the bust. Black fabric/tulle accessory on the right side of the head, forming a bow/flower with partial transparency. Static motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with a finish between natural and soft-matte, highly smoothed texture but not completely erased. Facial lighting concentrated on central forehead, nasal bridge, upper cheekbones, and chin. Subtle contouring on the sides of the nose, soft facial contour, and lightly defined shadow under the cheekbones. Eyes highly defined: neutral/brown-toned eyeshadow, enhanced depth at the outer corner and lower lash line; thin eyeliner close to the lashes; elongated upper lashes. Eyebrows straight to slightly arched, with controlled natural filling. Lips with precise contour, small-to-medium shape, soft red/burnt rosy tone, satin finish. Smooth blending, no harsh edges. Color balance calibrated to contrast with black clothing and golden elements. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails partially hidden by gloves; nail plate not directly visible. Limited structural inference. Tight-fitting gloves suggest short to medium length with no evident extension beyond the fingertips. No observable nail art. Visual integration subordinate to hand posing and the satin textile finish of the gloves. WARDROBE (Stylist / Tailor / Costume Designer) Black dress with gothic/formal inspiration. Structured corset-style bodice, strapless, with a straight-curved neckline finished with black lace at the upper edge. Construction with vertical panels and central front closure/ornamentation; there is localized shine from applications or sequenced embroidery along the midline. Highly fitted torso, visually compressing the waist. Extremely voluminous skirt with layered construction, wide draping, and architectural ruffles; radial distribution from the waist. Main fabric with structural memory and irregular sheen, similar to taffeta or structured satin, displaying rigid creases and deep folds. Underlayers with lace/sequined textures visible between pleats. Long black gloves above the elbow, tight-fitting, satin finish, with horizontal and diagonal wrinkles at the wrists and forearms due to compression. Narrow black choker on the neck. Central metallic golden rose: vertical stem, open bloom, symmetrically paired leaves; satin metallic finish. STYLE (Image Editor / Retoucher) High sharpness on face, hands, bodice, and rose; background and symbol moderately blurred due to depth of field. Skin with high-clean retouching while preserving minimal texture. Color grading with deep blacks, saturated golds, and neutral-warm skin tones. High overall contrast, without significant clipping in main highlights. Likely imperfection removal and texture/tonal uniformity. Low grain, subtle compression, high digital quality. Aesthetic signature: studio editorial, clean, polished gothic, centralized focus. Approximate aspect ratio: 4:5.
A highly detailed, realistic photograph of a Beautiful woman's, torso captured from a high diagonal angle down and slightly to the left, big breast. She is sitting. Deconstructed traditional kimono Heavyweight canvas cotton Optic White Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, lightly sweating torso. no under garments. she holds the kimono openned. She wears Ultra-high-cut micro V-thong Matte silk and sheer mesh da cor da pele dela, com as dobras da pele visiveis at the bottom. Japanese tatoos izumi in her arms, chest, legs, belly, breasts, neck. hips pushed slightly forward Torso elongated naturally, chest slightly forward, body softly engaged, legs slight open { "core_meta": { "image_type": "Editorial Macro Fashion Photography", "art_medium": "Digital Photography", "style_modifiers": "Cinematic Martial Arts, High-Fashion Grime, Provocative Athleticism, Neo-Noir Dojo", "overall_mood": "Fierce, dominating, and unapologetically intensely physical", "vibe": "Underground fight club meets high-end Vogue editorial", "quality_boosters": "16k resolution, Phase One XF IQ4, hyper-realistic skin texture, ray-traced sweat highlights, masterpiece" }, "subject": { "identity": { "subject_type": "Human", "gender": "Female", "age": "23", "ethnicity": "Suéca", "description": "An elite martial artist exuding raw physical power, absolute dominance, and high-fashion sensuality in a tense fighting stance." }, "anatomy_and_body": { "build_and_proportions": "Sculpted athletic core, elite-level six-pack abdominal definition, deep external obliques, sharp V-lines plunging dangerously low", "skin_texture": "Glistening heavily with combat sweat and body oil, hyper-detailed epidermal layers, visible pores, flushing from intense exertion", "biological_features": { "vascularity_and_pigment": "Pronounced vascularity on the forearms and lower abdomen, warm flushed skin tone", "subsurface_scattering": "Cinematic light penetration on the tense muscle ridges and sweat droplets", "skin_micro_texture": "Macro-level dermal grain catching aggressive high-key specular highlights" }, "unique_markings_and_tattoos": "A pristine, heavy surgical steel barbell navel piercing with a deep ruby crystal, serving as the central focal point." }, "face_and_hair": { "face_structure": "Sharp jawline, high cheekbones, intense gaze looking down at the camera", "eyes": "Narrowed, predatory, dripping with dominant confidence", "lips": "Slightly parted, breathing heavily, glossy natural tint", "makeup": "Gritty, sweat-smudged editorial look, no powder, raw glowing skin", "hair": { "style": "Wild, disheveled high ponytail completely slicked with sweat", "color": "Pitch black", "interaction_and_physics": "Damp strands aggressively plastered against her neck, collarbones, and upper chest" } }, "pose_and_action": { "description": "A highly provocative, dynamic low-angle macro shot of the midriff, capturing extreme core tension during a martial arts stance.", "action": "Frozen in a powerful Zenkutsu-dachi (forward stance), torso violently twisted to maximize oblique definition, one fist striking forward while the other rests forcefully at the hip.", "body_position": { "stance": "Deep, wide combat stance, hips pushed forward dominantly", "upper_body_and_arms": "Torso arched and elongated, chest thrust out, muscles fully engaged and flexed", "hand_gestures": "Fists wrapped tightly in frayed white combat tape, knuckles scarred; one hand pulling the gi pants even lower at the hip to expose the V-line" }, "gaze_direction": "Staring aggressively down into the low-placed camera lens, establishing absolute authority" }, "wardrobe_and_inventory": { "clothing": { "top": { "type": "Deconstructed traditional Gi top", "fabric": "Heavyweight canvas cotton", "color": "Optic White", "details": "Completely ripped open and pushed back off the shoulders, acting only as a stark architectural frame for the exposed, sweating torso and heavy underboob" }, "bottom": { "type": "Low-slung vintage Karate pants", "fabric": "Heavyweight canvas", "color": "Optic White", "details": "Folded aggressively down, sitting dangerously far below the hip bones, held barely in place by a frayed, sweat-soaked black belt tied extremely low" } }, "accessories": { "jewelry": "The gleaming ruby-studded steel navel piercing, catching a blinding hit of light", "held_objects_and_props": "Frayed and blood-speckled white hand wraps" } } }, "environment_and_scene": { "location": { "setting_type": "Underground Brutalist Dojo", "description": "A raw, dark, traditional fighting space stripped of all warmth" }, "atmosphere": { "time_of_day": "Late Night", "weather_conditions": "Humid, thick air heavy with tension and dust motes" }, "spatial_elements": { "foreground_elements": "Out-of-focus frayed hand wrap and the sharp glint of the navel piercing", "background_elements": "Pitch-black void with a single, highly textured wooden tatami pillar" }, "texture_details": { "environment": "Cold, porous concrete and rough aged wood", "materials": "Coarse canvas, soaked combat wraps, polished steel, and hyper-glossy skin" } }, "camera_and_composition": { "frame": { "aspect_ratio": "3:4", "resolution": "8k", "orientation": "Vertical" }, "composition": { "shot_type": "Macro Torso Shot / Extreme Close-Up", "camera_angle": "Extreme low-angle worm's-eye view, looking sharply upward along the flexed abdominal wall", "framing_guide": "The ruby navel piercing perfectly centered on the lower third, with the soaring, chiseled lines of the six-pack leading the eye upward", "depth_and_focus": "Razor-sharp critical focus on the navel piercing, sweat droplets, and abdominal pores; fast creamy fall-off into the dark background" }, "hardware_simulation": { "camera_model": "Hasselblad X2D 100C", "lens_type": "Hasselblad XCD 120mm Macro f/2.8", "focal_length_mm": "120mm" }, "camera_settings": { "aperture": "f/2.8", "shutter_speed": "1/500s", "iso": "100", "dynamic_range": "Ultra-High Contrast" } }, "lighting_and_color": { "lighting": { "setup_type": "Aggressive Single-Source Chiaroscuro", "primary_source": "Harsh, top-down directional snoot light violently cutting across the torso", "secondary_source": "Deep crimson neon rim light bleeding in from the lower right to trace the hip bone", "shadow_quality": "Pitch-black, razor-sharp shadows carving brutal geometric shapes out of the abdominal muscles", "highlights": "Blinding, wet specular highlights on the navel piercing crystal and the rolling beads of sweat" }, "color_grading": { "color_mode": "Raw Cinematic High-Fashion", "palette": "Monochromatic stark whites and absolute blacks, punctuated by intense crimson red from the rim light and ruby piercing", "color_temperature": "Cold and sterile, with localized blood-red heat", "contrast_curve": "Extreme S-Curve for cinematic grit and maximal physical definition" } }, "post_processing_and_fx": { "rendering": { "engine": "Octane Render Path-Traced Photorealism", "approach": "Hyper-tactile physiological intensity" }, "optical_artifacts": { "vignetting": "Heavy peripheral darkening to tunnel the viewer's vision directly onto the flexed stomach and piercing", "bokeh_quality": "Smooth, liquid blur on the swinging fist in the foreground" }, "sensor_atmosphere": { "iso_noise_structure": "Heavy 35mm organic film grain applied to the shadows for an underground, dirty aesthetic", "air_particles_and_haze": "Chalk dust and sweat mist illuminated by the overhead spotlight" }, "imperfections_and_realism": "Asymmetrical sweat tracking down the linea alba, highly realistic skin folding where the hand pulls the canvas pants down, raw redness on the knuckles" }, "negatives": { "artifact_suppression": "flat lighting, soft shadows, modest clothing, plastic skin, CGI look, blurry textures, bad anatomy, soft workout wear, cartoonish, friendly expression", "forbid": "explicit n*dity, p*rnographic act, visible genitalia" }, "final_director_notes": "The visual impact entirely relies on the extreme low-angle perspective and the brutal, raw tension in the abdominal wall. The heavy canvas pants must sit dangerously low, creating an aggressive geometric contrast against the hyper-detailed, sweat-drenched six-pack. The lighting must be uncompromisingly harsh to celebrate the provocative power and tactile eroticism of the athletic female form. The navel piercing acts as the absolute anchor of the composition." }
Based on the uploaded image, create a vertical 9:16, 8K high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environment Designer) Small indoor space, framed in a vertical medium shot, with a background formed by two light-colored walls with a smooth, matte finish, joined at an obtuse angle visible on the left side. Foreground occupied by a bed with white bedding, soft, low-reflective fabric, featuring broad, irregular folds radiating outward from the body’s weight. Midground dominated by the central seated figure; clean background with no decorative objects. Shallow depth, low spatial compression. Diffuse lighting from the upper front, slightly left, neutral to cool temperature, moderate intensity, with soft shadows under the chin, neck, arms, and fabric folds. High-contrast color relationship: white background and bed versus black clothing. Approximately symmetrical composition along the body’s vertical axis, disrupted by the wall vertex and the natural asymmetry of the bed folds. POSE (Photographer / Pose Stylist) Body seated on a soft surface, pelvis centered on the bed, torso upright with a slight backward lean compensated by support from the upper limbs. Spine vertically aligned, head centered with minimal lateral tilt. Shoulders in moderate abduction with slight depression; arms extended laterally and backward, hands outside the visual center, acting as support points stabilizing the center of gravity. Elbows slightly flexed. Hips flexed; knees open in moderate abduction, forming a triangular base in the lower frame. Thighs shortened by shallow frontal perspective. Body expression with low overall tension, with postural restraint at the neck and waist due to garment compression. Gaze directed straight toward the camera; head in neutral rotation. HAIR (Hairstylist) She has the same hair as in the reference image; styled as jet-black hair with high visual density, gathered into a voluminous high bun at the upper rear vertex of the head. Hair vectors converge from the frontal hairline and temporal regions toward the top. Two long front strands fall vertically alongside the face, with a slight inward curve. Texture predominantly straight with localized frizz at the ends of the bun. Irregular top contour due to loose strands. Light interaction shows subtle specular highlights on convex areas, with high light absorption in the main volume. Static movement governed by gravity and bun fixation. (Mandatory: apply the hairstyle while preserving the bangs 100% in all cases.) MAKEUP (Professional Makeup Artist) Skin with an even finish, without excessive shine, between natural and soft-matte. Subtle structural correction in the center of the face, with highlights on the forehead, nasal bridge, infraorbital area, and chin. Eyes with high-contrast makeup: black eyeshadow expanded around the orbital area, thick elongated eyeliner, darkened waterline, defined lashes; light irises emphasized by contrast. Eyebrows dark, narrow, and arched. Lips in a neutral rosy-beige tone, soft contour, satin texture. Blending concentrated on the eyes, with defined, non-diffuse transitions. Neutral lighting preserves contrast between light skin and black elements. Makeup must remain clearly visible in close-cropped shots. (Mandatory: apply the makeup while preserving the face 100% in all cases.) NAILS (Nail Designer) Nails not visible with sufficient resolution for precise technical analysis. Hands appear partially at the edges of the frame, without clear definition of length, curvature, material, or finish. Functional integration with the pose as lateral body support. WARDROBE (Stylist / Tailor / Costume Designer) Black long-sleeve, high-neck dress, tight construction, made of thin, highly elastic fabric. Close-fitting drape over torso, waist, and hips, with visible compression and horizontal wrinkles on the lower abdomen and hips due to seated flexion. Overlay of a harness/corset composed of multiple black belts with metal eyelets and silver buckles, wrapping the waist in horizontal bands; vertical straps extend to the shoulders. Material appears to be semi-gloss synthetic leather with medium rigidity. Fishnet stockings with large mesh create a diamond pattern on the thighs; an opaque black thigh-high partially covers one leg. STYLE (Image Editor / Retoucher) Sharpness focused on face and torso; background and bed naturally softened by moderate depth of field. Skin treated with light smoothing while preserving anatomical contours. Cool-neutral color grading, restrained saturation, medium-high contrast. Imperfections minimized; skin surface uniformed. Low grain, subtle digital compression. Clean editorial aesthetic with alternative gothic influence. Approximate aspect ratio: 4:5.
Based on the uploaded image, create a high-fashion editorial portrait of me [the woman in the uploaded image — use the reference image as the exact basis for the face, facial features, and hairstyle]. 🔒 IDENTITY LOCK Preserve consistent facial features, natural skin texture with visible pores, realistic proportions, and subtle asymmetry. No smoothing, no filters, no exaggerated or caricatured effects. ⸻ 👤 SUBJECT — ME-INSPIRED FASHION ICON A confident woman. She has the exact same face, eyes, nose, lips, and expression as the person in the reference image. Her presence is playful, alluring, and self-assured, with a delicate doll-like touch — grounded in realism, without exaggeration. Her body must match the original subject in shape, skin texture, curvature projection, and bone structure — all curves must remain anatomically realistic, with no caricature or slimming. SCENE (Set Designer / Environmental Designer) Outdoor environment, open sky, vertical framing. Foreground occupied by uneven-textured grass, yellow-green, with thin blades blurred along the lower edge. Midground dominated by the central human figure. Background features a horizontal reddish track and low, light-colored buildings, heavily blurred due to shallow depth of field. Low horizon; a uniform blue sky occupies more than half of the upper image. Direct natural lighting, high and front-side incidence, neutral to slightly cool temperature. Short, soft shadows under chin, sleeves, skirt, and raised leg. Materials: matte grass, textureless sky, smooth low-reflection buildings. Centered composition without rigid symmetry, with radial repetition in pompom fringes and skirt pleats. Spatial relation: subject stands out through tonal separation and background blur. POSE (Photographer / Pose Stylist) Body supported unipodally on the left leg; center of gravity vertically aligned over this axis. Right leg raised with pronounced hip and knee flexion, thigh in moderate abduction and slight external rotation; right foot near the opposite knee. Torso nearly frontal with slight lateral tilt to the left of the image. Spine in a compensatory curve for stabilization. Right shoulder elevated due to arm flexion; left shoulder lower and laterally positioned. Right arm flexed, hand beside the face forming a “V” with index and middle fingers; elbow opened laterally. Left arm flexed holding a pompom. Head slightly tilted to the right of the image with minor frontal rotation. Facial expression with a smile, active perioral musculature, gaze directed at the camera. Low-angle perspective shortens the torso and visually enlarges thighs and the raised leg. HAIR (Hairstylist) She has the same hair as in the provided photo; styled as jet-black, long length reaching the waist, tied back with the main mass concentrated in the occipital region. Sparse front fringe in fine vertical/diagonal strands across the forehead. Predominantly downward vectors in the fringe, with loose lateral strands near cheeks and nape. Smooth texture with slight residual waviness at the ends. Moderate volume at the crown, with compression in the tied area and irregular expansion on the sides due to stray strands. Rounded upper contour; fragmented silhouette from flyaways. Light interaction: narrow specular highlights on upper strands; high absorption in shadowed areas. Minimal movement, only fine strands displaced suggesting a light breeze or prior motion. Mandatory: (“apply the hairstyle while preserving the fringe in 100% of cases”). MAKEUP (Professional Makeup Artist) Skin with an even finish, controlled luminosity, between natural and soft-glow. Medium coverage, minimal visible skin texture. Facial lighting enhances the center of the face: forehead, nose bridge, cheekbone tops, and chin. Subtle contouring without strong definition. Eyes with soft contrast; defined lashes, minimal or imperceptible eyeliner, light pink/neutral low-saturation eyeshadow. Natural brows with soft linear shaping. Light pink blush concentrated on the cheeks. Lips in a natural pink tone, creamy/lightly glossy finish, preserved contour. Broadly blended transitions without harsh edges. Cool ambient lighting maintains the pink balance of the makeup without yellow contamination. Mandatory: makeup must be clearly visible in close-up shots. (“apply the makeup while preserving the face in 100% of cases”). NAILS (Nail Designer) Nails mainly visible on the right hand near the face. Short to medium-short length, reduced free edge. Rounded/short oval shape. Low apparent thickness, natural curvature, no evident apex. Material visually consistent with natural nails or a thin gel layer. Subtle glossy finish. No discernible nail art due to distance and resolution. Functional integration with the pose: fingertips oriented outward in the “V” gesture, without chromatic prominence. WARDROBE (Stylist / Tailor / Costume Designer) Light pink cheer-style sweater top, medium-thickness knitted fabric, V-neck with white stripes, cuffs and hem with repeating stripes. Soft structure, moderate elasticity, fitted-relaxed drape: conforms to shoulders and chest, creates looseness in the abdomen and sleeves. Visible vertical knit texture and panel variations. White pleated skirt, synthetic or lightweight tailored fabric with strong structural memory; wide, rigid pleats projected by the raised leg and gravity. Underneath, visible white shorts/lining. White ribbed socks below the knee, with compression and bunching at the ankle of the raised leg. Saddle/oxford-style shoes in beige, white, and black, light brown sole, semi-gloss finish. Main accessories: two white/pink pompoms, radial structure of thin plastic strips, high diffuse reflection, large volume in both hands. STYLE (Image Editor / Retoucher) Primary focus on face and body; background with strong blur and smooth transitions. High sharpness in the facial region, frontal hair, sweater knit, and skirt edges. Skin treatment with moderate smoothing while preserving contours, reducing pores and microtexture. Bright color correction, high-key, moderate contrast, controlled saturation with emphasis on pink, white, and blue. Shallow blacks; open shadows. Possible skin tone uniformity and minor detail cleanup. Grain nearly absent; high digital quality; subtle compression. Aesthetic signature: clean, bright, idol/editorial outdoor. Aspect_ratio: approximately 2:3 vertical.