Image-Text-to-Text
Transformers
Safetensors
gemma4
mergekit
Merge
roleplay
storytelling
conversational
Instructions to use Vortex5/Phoenix-X-26B-A4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vortex5/Phoenix-X-26B-A4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Vortex5/Phoenix-X-26B-A4B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("Vortex5/Phoenix-X-26B-A4B") model = AutoModelForMultimodalLM.from_pretrained("Vortex5/Phoenix-X-26B-A4B", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Vortex5/Phoenix-X-26B-A4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Vortex5/Phoenix-X-26B-A4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Phoenix-X-26B-A4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Vortex5/Phoenix-X-26B-A4B
- SGLang
How to use Vortex5/Phoenix-X-26B-A4B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Vortex5/Phoenix-X-26B-A4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Phoenix-X-26B-A4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Vortex5/Phoenix-X-26B-A4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Phoenix-X-26B-A4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Vortex5/Phoenix-X-26B-A4B with Docker Model Runner:
docker model run hf.co/Vortex5/Phoenix-X-26B-A4B
| base_model: | |
| - electroglyph/gemma4-26b-fiction-bf16 | |
| - Darkhn/Gemma-4-26B-A4B-Animus-V14.1-FFT | |
| - google/gemma-4-26B-A4B-it | |
| - Vortex5/G4-Moonlight-Dusk-26B-A4B | |
| - zerofata/G4-MeroMero-26B-A4B | |
| - Gryphe/Pantheon-Reasoning-26B-A4B-1.1 | |
| library_name: transformers | |
| tags: | |
| - mergekit | |
| - merge | |
| - roleplay | |
| - storytelling | |
| license: apache-2.0 | |
| <section class="card"> | |
| <div class="background"></div> | |
| <div class="frame"></div> | |
| <div class="edge edge-left"></div> | |
| <div class="edge edge-right"></div> | |
| <header class="header"> | |
| <h1 class="title" data-text="Phoenix-X-26B-A4B">Phoenix-X-26B-A4B</h1> | |
| <div class="line"></div> | |
| </header> | |
| <figure class="media"> | |
| <span class="corner corner-tl"></span> | |
| <span class="corner corner-tr"></span> | |
| <span class="corner corner-bl"></span> | |
| <span class="corner corner-br"></span> | |
| <div class="media-inner"> | |
| <img | |
| src="https://cdn-uploads.huggingface.co/production/uploads/6669a3a617b838fda45637b8/5OCRz-YrvO4egJ3dqzlgL.png" | |
| alt="Phoenix-X-26B-A4B artwork" | |
| > | |
| </div> | |
| </figure> | |
| <section class="panel panel-main"> | |
| <div class="panel-head"> | |
| <h2>Overview</h2> | |
| </div> | |
| <p class="copy"> | |
| <strong>Phoenix-X-26B-A4B</strong> was created by merging | |
| <a href="https://huggingface.co/Gryphe/Pantheon-Reasoning-26B-A4B-1.1">Pantheon-Reasoning-26B-A4B-1.1</a>, | |
| <a href="https://huggingface.co/Darkhn/Gemma-4-26B-A4B-Animus-V14.1-FFT">Gemma-4-26B-A4B-Animus-V14.1-FFT</a>, | |
| <a href="https://huggingface.co/Vortex5/G4-Moonlight-Dusk-26B-A4B">G4-Moonlight-Dusk-26B-A4B</a>, | |
| <a href="https://huggingface.co/zerofata/G4-MeroMero-26B-A4B">G4-MeroMero-26B-A4B</a>, | |
| and | |
| <a href="https://huggingface.co/electroglyph/gemma4-26b-fiction-bf16">gemma4-26b-fiction-bf16</a> using a custom method. | |
| </p> | |
| <details class="details"> | |
| <summary><span>Merge configuration</span></summary> | |
| <pre><code>base_model: google/gemma-4-26B-A4B-it | |
| models: | |
| - model: Gryphe/Pantheon-Reasoning-26B-A4B-1.1 | |
| - model: Darkhn/Gemma-4-26B-A4B-Animus-V14.1-FFT | |
| - model: Vortex5/G4-Moonlight-Dusk-26B-A4B | |
| - model: zerofata/G4-MeroMero-26B-A4B | |
| - model: electroglyph/gemma4-26b-fiction-bf16 | |
| merge_method: phantom | |
| chat_template: auto | |
| parameters: | |
| strength: 0.95 | |
| resolve: 0.58 | |
| voice: 0.42 | |
| envelope: 1.10 | |
| dtype: float32 | |
| out_dtype: bfloat16 | |
| tokenizer: | |
| source: union</code></pre> | |
| </details> | |
| </section> | |
| <section class="panel"> | |
| <div class="panel-head"> | |
| <h2>Intended Use</h2> | |
| </div> | |
| <div class="grid"> | |
| <article class="item"> | |
| <div class="item-copy"> | |
| <h3>Roleplay</h3> | |
| <p>Character interaction, dialogue, personas, and multi-turn scenes.</p> | |
| </div> | |
| </article> | |
| <article class="item"> | |
| <div class="item-copy"> | |
| <h3>Creative Writing</h3> | |
| <p>Drafting fiction, descriptions, dialogue, and scene variations.</p> | |
| </div> | |
| </article> | |
| <article class="item"> | |
| <div class="item-copy"> | |
| <h3>Storytelling</h3> | |
| <p>Short stories, longer narratives, plot development, and worldbuilding.</p> | |
| </div> | |
| </article> | |
| <article class="item"> | |
| <div class="item-copy"> | |
| <h3>Brainstorm</h3> | |
| <p>Generating concepts, outlines, alternatives, and writing ideas.</p> | |
| </div> | |
| </article> | |
| </div> | |
| </section> | |
| </section> | |
| <style> | |
| @import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"); | |
| .card { | |
| --base: #050403; | |
| --deep: #090604; | |
| --surface: #120b07; | |
| --surface-2: #1b1009; | |
| --surface-3: #241208; | |
| --text: #f7eee4; | |
| --muted: #c9b7a7; | |
| --ivory: #ffe8c6; | |
| --gold: #ffc365; | |
| --gold-2: #f49b32; | |
| --orange: #ff6a18; | |
| --scarlet: #e93818; | |
| --ember: #9f1f0c; | |
| --coal: #0d0a08; | |
| --border: rgba(255, 145, 49, 0.32); | |
| position: relative; | |
| isolation: isolate; | |
| width: 100%; | |
| max-width: 1280px; | |
| margin: 48px auto; | |
| padding: clamp(34px, 5vw, 68px); | |
| overflow: hidden; | |
| color: var(--text); | |
| font-family: "Manrope", "Segoe UI", sans-serif; | |
| border: 1px solid rgba(255, 156, 67, 0.38); | |
| border-radius: 2px; | |
| background: | |
| radial-gradient(circle at 10% 37%, rgba(255, 93, 23, 0.09), transparent 25%), | |
| radial-gradient(circle at 93% 62%, rgba(255, 155, 47, 0.08), transparent 27%), | |
| linear-gradient(180deg, #120a05 0%, #050403 44%, #0b0604 100%); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 234, 207, 0.12), | |
| inset 0 -1px 0 rgba(128, 31, 9, 0.62), | |
| inset 0 0 110px rgba(0, 0, 0, 0.78); | |
| } | |
| .card, | |
| .card * { | |
| box-sizing: border-box; | |
| } | |
| .card::before, | |
| .card::after { | |
| content: ""; | |
| position: absolute; | |
| pointer-events: none; | |
| } | |
| .card::before { | |
| inset: 12px; | |
| z-index: 20; | |
| border: 1px solid rgba(255, 196, 112, 0.11); | |
| clip-path: polygon( | |
| 0 0, | |
| 62px 0, | |
| 72px 10px, | |
| calc(100% - 72px) 10px, | |
| calc(100% - 62px) 0, | |
| 100% 0, | |
| 100% 100%, | |
| calc(100% - 62px) 100%, | |
| calc(100% - 72px) calc(100% - 10px), | |
| 72px calc(100% - 10px), | |
| 62px 100%, | |
| 0 100% | |
| ); | |
| } | |
| .card::after { | |
| top: 0; | |
| left: 8%; | |
| right: 8%; | |
| z-index: 21; | |
| height: 3px; | |
| background: linear-gradient( | |
| 90deg, | |
| transparent, | |
| rgba(213, 48, 15, 0.28), | |
| rgba(255, 96, 19, 0.78), | |
| rgba(255, 206, 119, 0.98), | |
| rgba(255, 104, 20, 0.80), | |
| rgba(187, 37, 11, 0.28), | |
| transparent | |
| ); | |
| box-shadow: 0 0 19px rgba(255, 102, 23, 0.38); | |
| } | |
| .card .background { | |
| position: absolute; | |
| inset: 0; | |
| z-index: -3; | |
| pointer-events: none; | |
| overflow: hidden; | |
| opacity: 1; | |
| background: | |
| repeating-linear-gradient(115deg, transparent 0 72px, rgba(255, 167, 88, 0.018) 73px 74px, transparent 75px 151px); | |
| } | |
| .card .background::before, | |
| .card .background::after { | |
| content: ""; | |
| position: absolute; | |
| pointer-events: none; | |
| } | |
| .card .background::before { | |
| display: none; | |
| } | |
| .card .background::after { | |
| inset: 0; | |
| opacity: 0.58; | |
| background: | |
| radial-gradient(circle at 12% 16%, rgba(255, 110, 24, 0.44) 0 1px, transparent 2px), | |
| radial-gradient(circle at 84% 13%, rgba(255, 182, 70, 0.40) 0 1px, transparent 2px), | |
| radial-gradient(circle at 23% 48%, rgba(255, 87, 18, 0.34) 0 1px, transparent 2px), | |
| radial-gradient(circle at 75% 57%, rgba(255, 142, 35, 0.36) 0 1px, transparent 2px), | |
| radial-gradient(circle at 91% 78%, rgba(255, 208, 116, 0.30) 0 1px, transparent 2px), | |
| radial-gradient(circle at 8% 85%, rgba(222, 52, 15, 0.36) 0 1px, transparent 2px); | |
| background-size: | |
| 131px 149px, | |
| 171px 137px, | |
| 113px 181px, | |
| 197px 127px, | |
| 157px 173px, | |
| 181px 149px; | |
| } | |
| .card .frame { | |
| position: absolute; | |
| inset: 21px; | |
| z-index: 18; | |
| pointer-events: none; | |
| border-top: 1px solid rgba(255, 211, 149, 0.09); | |
| border-bottom: 1px solid rgba(151, 41, 13, 0.34); | |
| } | |
| .card .frame::before, | |
| .card .frame::after { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| bottom: 0; | |
| width: 1px; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent, | |
| rgba(201, 44, 12, 0.30) 18%, | |
| rgba(255, 109, 23, 0.66) 45%, | |
| rgba(255, 193, 91, 0.42) 72%, | |
| transparent | |
| ); | |
| } | |
| .card .frame::before { | |
| left: 0; | |
| } | |
| .card .frame::after { | |
| right: 0; | |
| } | |
| .card .edge { | |
| position: absolute; | |
| top: 9%; | |
| bottom: 9%; | |
| z-index: 19; | |
| width: 3px; | |
| pointer-events: none; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent, | |
| rgba(177, 39, 11, 0.42) 16%, | |
| rgba(255, 89, 18, 0.86) 38%, | |
| rgba(255, 191, 79, 0.72) 51%, | |
| rgba(224, 48, 13, 0.65) 74%, | |
| transparent | |
| ); | |
| box-shadow: | |
| 0 0 11px rgba(255, 91, 21, 0.32), | |
| 0 0 24px rgba(178, 42, 12, 0.12); | |
| } | |
| .card .edge-left { | |
| left: 14px; | |
| } | |
| .card .edge-right { | |
| right: 14px; | |
| } | |
| .card .header { | |
| position: relative; | |
| z-index: 3; | |
| padding: clamp(10px, 1vw, 15px) 0 clamp(40px, 4.6vw, 58px); | |
| text-align: center; | |
| } | |
| .card .header::before, | |
| .card .header::after { | |
| content: ""; | |
| position: absolute; | |
| pointer-events: none; | |
| } | |
| .card .header::before { | |
| display: none; | |
| } | |
| .card .header::after { | |
| display: none; | |
| } | |
| .card .title { | |
| position: relative; | |
| display: block; | |
| width: fit-content; | |
| max-width: 100%; | |
| margin: 0 auto; | |
| padding: 0.08em 0.08em 0.18em; | |
| white-space: nowrap; | |
| font-family: "Cinzel Decorative", Georgia, serif; | |
| font-size: clamp(1.20rem, 4.6vw, 3.40rem) !important; | |
| font-weight: 900; | |
| line-height: 1; | |
| letter-spacing: -0.048em; | |
| text-align: center; | |
| color: #ffd29a; | |
| background: | |
| linear-gradient( | |
| 180deg, | |
| #fff4df 0%, | |
| #ffd697 22%, | |
| #ff9a37 49%, | |
| #f04d16 68%, | |
| #ffb14c 86%, | |
| #fff0d4 100% | |
| ); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| -webkit-text-stroke: 1px rgba(108, 26, 8, 0.54); | |
| text-shadow: | |
| 0 1px 0 rgba(255, 239, 211, 0.26), | |
| 0 0 13px rgba(255, 111, 26, 0.36), | |
| 0 0 32px rgba(199, 42, 10, 0.20), | |
| 0 10px 24px rgba(0, 0, 0, 0.66); | |
| } | |
| .card .title::before { | |
| content: attr(data-text); | |
| position: absolute; | |
| inset: 0; | |
| z-index: -1; | |
| color: transparent; | |
| -webkit-text-stroke: 6px rgba(95, 20, 7, 0.30); | |
| filter: blur(4px); | |
| } | |
| .card .title::after { | |
| content: ""; | |
| position: absolute; | |
| left: 11%; | |
| right: 11%; | |
| bottom: 0; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, rgba(255, 163, 63, 0.62), transparent); | |
| } | |
| .card .line { | |
| position: relative; | |
| width: min(790px, 79%); | |
| height: 28px; | |
| margin: 22px auto 0; | |
| background: | |
| linear-gradient(90deg, | |
| transparent 0 4%, | |
| rgba(154, 35, 10, 0.38) 10%, | |
| rgba(244, 74, 17, 0.92) 30%, | |
| rgba(255, 190, 79, 0.97) 50%, | |
| rgba(244, 74, 17, 0.92) 70%, | |
| rgba(154, 35, 10, 0.38) 90%, | |
| transparent 96% 100% | |
| ); | |
| clip-path: polygon( | |
| 0 48%, 18% 39%, 31% 25%, 43% 42%, 48% 42%, | |
| 50% 0, | |
| 52% 42%, 57% 42%, 69% 25%, 82% 39%, 100% 48%, | |
| 82% 58%, 68% 72%, 56% 56%, 52% 56%, | |
| 50% 100%, | |
| 48% 56%, 44% 56%, 32% 72%, 18% 58% | |
| ); | |
| filter: drop-shadow(0 0 9px rgba(255, 92, 20, 0.48)); | |
| } | |
| .card .line::before, | |
| .card .line::after { | |
| content: ""; | |
| position: absolute; | |
| top: 50%; | |
| width: 11px; | |
| height: 11px; | |
| border: 1px solid rgba(255, 224, 170, 0.82); | |
| background: | |
| radial-gradient(circle, #fff2d8 0 15%, #ffac42 17% 42%, #a1260b 45% 100%); | |
| transform: translateY(-50%) rotate(45deg); | |
| box-shadow: | |
| 0 0 10px rgba(255, 117, 29, 0.64), | |
| inset 0 0 3px rgba(255, 245, 223, 0.62); | |
| } | |
| .card .line::before { | |
| left: 29%; | |
| } | |
| .card .line::after { | |
| right: 29%; | |
| } | |
| .card .media { | |
| position: relative; | |
| z-index: 3; | |
| width: 100%; | |
| margin: 0 auto 38px; | |
| padding: clamp(13px, 1.8vw, 20px); | |
| overflow: hidden; | |
| border: 1px solid rgba(255, 143, 46, 0.36); | |
| border-radius: 1px; | |
| background: | |
| radial-gradient(circle at 50% 0%, rgba(255, 168, 60, 0.12), transparent 32%), | |
| linear-gradient(135deg, rgba(219, 53, 14, 0.08), transparent 31%), | |
| linear-gradient(315deg, rgba(255, 153, 45, 0.07), transparent 29%), | |
| linear-gradient(180deg, #1a0d06, #070503); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 235, 203, 0.12), | |
| inset 0 -1px 0 rgba(110, 27, 8, 0.55), | |
| inset 0 0 32px rgba(0, 0, 0, 0.64), | |
| 0 16px 34px rgba(0, 0, 0, 0.44); | |
| clip-path: polygon( | |
| 0 18px, 18px 0, | |
| calc(100% - 18px) 0, 100% 18px, | |
| 100% calc(100% - 18px), calc(100% - 18px) 100%, | |
| 18px 100%, 0 calc(100% - 18px) | |
| ); | |
| } | |
| .card .media::before, | |
| .card .media::after { | |
| content: ""; | |
| position: absolute; | |
| z-index: 5; | |
| pointer-events: none; | |
| } | |
| .card .media::before { | |
| inset: 7px; | |
| border: 1px solid rgba(255, 216, 154, 0.10); | |
| clip-path: polygon( | |
| 0 13px, 13px 0, | |
| calc(100% - 13px) 0, 100% 13px, | |
| 100% calc(100% - 13px), calc(100% - 13px) 100%, | |
| 13px 100%, 0 calc(100% - 13px) | |
| ); | |
| } | |
| .card .media::after { | |
| left: 12%; | |
| right: 12%; | |
| bottom: 7px; | |
| height: 2px; | |
| background: linear-gradient( | |
| 90deg, | |
| transparent, | |
| rgba(187, 40, 11, 0.50), | |
| rgba(255, 87, 18, 0.84), | |
| rgba(255, 201, 105, 0.82), | |
| rgba(255, 87, 18, 0.84), | |
| rgba(187, 40, 11, 0.50), | |
| transparent | |
| ); | |
| box-shadow: 0 0 10px rgba(255, 94, 19, 0.30); | |
| } | |
| .card .media-inner { | |
| position: relative; | |
| width: 100%; | |
| overflow: hidden; | |
| border: 1px solid rgba(255, 142, 44, 0.33); | |
| background: #040302; | |
| box-shadow: | |
| inset 0 2px 7px rgba(0, 0, 0, 0.94), | |
| inset 0 0 30px rgba(0, 0, 0, 0.65); | |
| clip-path: polygon( | |
| 0 10px, 10px 0, | |
| calc(100% - 10px) 0, 100% 10px, | |
| 100% calc(100% - 10px), calc(100% - 10px) 100%, | |
| 10px 100%, 0 calc(100% - 10px) | |
| ); | |
| } | |
| .card .media-inner::after { | |
| content: ""; | |
| position: absolute; | |
| inset: 0; | |
| pointer-events: none; | |
| box-shadow: | |
| inset 0 0 38px rgba(8, 3, 1, 0.72), | |
| inset 0 -30px 50px rgba(77, 15, 4, 0.12); | |
| } | |
| .card .media-inner img { | |
| display: block; | |
| width: 100%; | |
| max-width: 100%; | |
| height: auto; | |
| margin: 0 auto; | |
| border: 0; | |
| object-fit: contain; | |
| object-position: center; | |
| } | |
| .card .corner { | |
| position: absolute; | |
| z-index: 7; | |
| width: 52px; | |
| height: 52px; | |
| pointer-events: none; | |
| } | |
| .card .corner::after { | |
| content: ""; | |
| position: absolute; | |
| width: 24px; | |
| height: 2px; | |
| background: linear-gradient(90deg, rgba(255, 222, 160, 0.86), rgba(255, 79, 16, 0.08)); | |
| box-shadow: 0 0 7px rgba(255, 92, 20, 0.28); | |
| } | |
| .card .corner-tl { | |
| top: 0; | |
| left: 0; | |
| border-top: 3px solid rgba(255, 195, 96, 0.88); | |
| border-left: 3px solid rgba(207, 48, 13, 0.88); | |
| } | |
| .card .corner-tl::after { | |
| top: 12px; | |
| left: 5px; | |
| transform: rotate(-38deg); | |
| transform-origin: left center; | |
| } | |
| .card .corner-tr { | |
| top: 0; | |
| right: 0; | |
| border-top: 3px solid rgba(255, 195, 96, 0.88); | |
| border-right: 3px solid rgba(207, 48, 13, 0.88); | |
| } | |
| .card .corner-tr::after { | |
| top: 12px; | |
| right: 5px; | |
| transform: rotate(218deg); | |
| transform-origin: right center; | |
| } | |
| .card .corner-bl { | |
| bottom: 0; | |
| left: 0; | |
| border-bottom: 3px solid rgba(213, 50, 13, 0.82); | |
| border-left: 3px solid rgba(255, 153, 47, 0.80); | |
| } | |
| .card .corner-bl::after { | |
| bottom: 12px; | |
| left: 5px; | |
| transform: rotate(38deg); | |
| transform-origin: left center; | |
| } | |
| .card .corner-br { | |
| right: 0; | |
| bottom: 0; | |
| border-right: 3px solid rgba(255, 153, 47, 0.80); | |
| border-bottom: 3px solid rgba(213, 50, 13, 0.82); | |
| } | |
| .card .corner-br::after { | |
| right: 5px; | |
| bottom: 12px; | |
| transform: rotate(142deg); | |
| transform-origin: right center; | |
| } | |
| .card .panel { | |
| position: relative; | |
| z-index: 3; | |
| margin-bottom: 34px; | |
| padding: clamp(31px, 4.3vw, 49px); | |
| overflow: hidden; | |
| border: 1px solid var(--border); | |
| border-radius: 1px; | |
| background: | |
| radial-gradient(circle at 50% -14%, rgba(255, 153, 49, 0.10), transparent 31%), | |
| radial-gradient(circle at 0% 0%, rgba(222, 52, 14, 0.09), transparent 28%), | |
| linear-gradient(145deg, rgba(255, 126, 28, 0.055), transparent 38%), | |
| linear-gradient(180deg, rgba(26, 14, 8, 0.99), rgba(7, 5, 3, 0.995)); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 235, 202, 0.09), | |
| inset 0 -1px 0 rgba(95, 24, 8, 0.52), | |
| inset 0 -11px 23px rgba(0, 0, 0, 0.55), | |
| 0 11px 25px rgba(0, 0, 0, 0.31); | |
| clip-path: polygon( | |
| 0 12px, 12px 0, | |
| calc(100% - 12px) 0, 100% 12px, | |
| 100% calc(100% - 12px), calc(100% - 12px) 100%, | |
| 12px 100%, 0 calc(100% - 12px) | |
| ); | |
| } | |
| .card .panel::before, | |
| .card .panel::after { | |
| content: ""; | |
| position: absolute; | |
| pointer-events: none; | |
| } | |
| .card .panel::before { | |
| top: 0; | |
| left: 5%; | |
| width: 60%; | |
| height: 2px; | |
| background: linear-gradient( | |
| 90deg, | |
| transparent, | |
| rgba(209, 44, 11, 0.60), | |
| rgba(255, 91, 18, 0.91), | |
| rgba(255, 192, 87, 0.74), | |
| transparent | |
| ); | |
| box-shadow: 0 0 9px rgba(255, 84, 18, 0.23); | |
| } | |
| .card .panel::after { | |
| top: 13%; | |
| bottom: 13%; | |
| left: 0; | |
| width: 3px; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent, | |
| rgba(184, 40, 11, 0.55), | |
| rgba(255, 91, 18, 0.90), | |
| rgba(255, 185, 76, 0.64), | |
| rgba(202, 45, 11, 0.48), | |
| transparent | |
| ); | |
| box-shadow: 0 0 9px rgba(255, 87, 19, 0.22); | |
| } | |
| .card .panel-main { | |
| border-color: rgba(255, 130, 35, 0.39); | |
| background: | |
| radial-gradient(circle at 50% -16%, rgba(255, 183, 73, 0.12), transparent 32%), | |
| radial-gradient(circle at 3% 4%, rgba(215, 48, 12, 0.11), transparent 27%), | |
| linear-gradient(145deg, rgba(255, 107, 21, 0.064), transparent 40%), | |
| linear-gradient(180deg, rgba(30, 15, 7, 0.995), rgba(7, 5, 3, 0.995)); | |
| } | |
| .card .panel-head { | |
| position: relative; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| width: min(690px, 84%); | |
| margin: -6px auto 28px; | |
| padding: 14px 54px 15px; | |
| border: 1px solid rgba(255, 151, 45, 0.30); | |
| background: | |
| radial-gradient(circle at 50% 0%, rgba(255, 176, 65, 0.13), transparent 48%), | |
| linear-gradient(180deg, rgba(66, 22, 8, 0.92), rgba(25, 11, 6, 0.97)); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 232, 194, 0.11), | |
| inset 0 -1px 0 rgba(106, 26, 7, 0.60), | |
| 0 5px 16px rgba(0, 0, 0, 0.34); | |
| clip-path: polygon( | |
| 0 50%, 26px 0, | |
| calc(50% - 37px) 0, | |
| 50% 9px, | |
| calc(50% + 37px) 0, | |
| calc(100% - 26px) 0, | |
| 100% 50%, | |
| calc(100% - 26px) 100%, | |
| calc(50% + 37px) 100%, | |
| 50% calc(100% - 9px), | |
| calc(50% - 37px) 100%, | |
| 26px 100% | |
| ); | |
| } | |
| .card .panel-head::before, | |
| .card .panel-head::after { | |
| content: ""; | |
| position: absolute; | |
| top: 50%; | |
| width: 52px; | |
| height: 12px; | |
| transform: translateY(-50%); | |
| opacity: 0.88; | |
| background: linear-gradient( | |
| 90deg, | |
| transparent, | |
| rgba(220, 48, 13, 0.64), | |
| rgba(255, 143, 38, 0.88) | |
| ); | |
| clip-path: polygon(0 50%, 70% 0, 100% 50%, 70% 100%); | |
| } | |
| .card .panel-head::before { | |
| left: 15px; | |
| } | |
| .card .panel-head::after { | |
| right: 15px; | |
| transform: translateY(-50%) scaleX(-1); | |
| } | |
| .card .panel h2 { | |
| margin: 0; | |
| color: #ffe7bc; | |
| font-family: "Cinzel Decorative", Georgia, serif; | |
| font-size: clamp(1.33rem, 2.55vw, 2.03rem); | |
| font-weight: 700; | |
| line-height: 1.14; | |
| letter-spacing: 0.015em; | |
| text-align: center; | |
| text-shadow: | |
| 0 1px 0 rgba(255, 243, 221, 0.16), | |
| 0 0 12px rgba(255, 108, 22, 0.20), | |
| 0 4px 13px rgba(0, 0, 0, 0.72); | |
| } | |
| .card .copy { | |
| max-width: 1080px; | |
| margin: 0 auto 29px; | |
| color: #cbb9a9; | |
| font-size: clamp(1rem, 1.35vw, 1.10rem); | |
| line-height: 1.82; | |
| } | |
| .card .copy strong { | |
| color: #fff0d8; | |
| font-weight: 700; | |
| } | |
| .card .copy a { | |
| color: #ffb65f; | |
| font-weight: 600; | |
| text-decoration: none; | |
| border-bottom: 1px solid rgba(255, 150, 54, 0.40); | |
| transition: color 0.20s ease, border-color 0.20s ease; | |
| } | |
| .card .copy a:hover { | |
| color: #ffd29a; | |
| border-bottom-color: rgba(255, 195, 105, 0.88); | |
| text-shadow: none; | |
| } | |
| .card .details { | |
| position: relative; | |
| width: 100%; | |
| overflow: hidden; | |
| border: 1px solid rgba(255, 126, 33, 0.30); | |
| border-radius: 1px; | |
| background: | |
| linear-gradient(90deg, rgba(183, 39, 10, 0.10), transparent 40%), | |
| linear-gradient(180deg, #160b06, #060403); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 236, 204, 0.07), | |
| inset 0 -6px 13px rgba(0, 0, 0, 0.64); | |
| clip-path: polygon( | |
| 0 10px, 10px 0, | |
| calc(100% - 10px) 0, 100% 10px, | |
| 100% calc(100% - 10px), calc(100% - 10px) 100%, | |
| 10px 100%, 0 calc(100% - 10px) | |
| ); | |
| } | |
| .card .details::before { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| bottom: 0; | |
| left: 0; | |
| width: 3px; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent, | |
| rgba(184, 39, 10, 0.67), | |
| rgba(255, 91, 18, 0.90), | |
| rgba(255, 183, 72, 0.63), | |
| transparent | |
| ); | |
| } | |
| .card .details summary { | |
| position: relative; | |
| display: flex; | |
| align-items: center; | |
| min-height: 63px; | |
| padding: 17px 68px 17px 23px; | |
| cursor: pointer; | |
| list-style: none; | |
| color: #f0d7bd; | |
| font-family: "JetBrains Mono", monospace; | |
| font-size: 0.84rem; | |
| font-weight: 600; | |
| letter-spacing: 0.05em; | |
| background: | |
| radial-gradient(circle at 0% 50%, rgba(255, 94, 18, 0.11), transparent 24%), | |
| linear-gradient(90deg, rgba(144, 38, 12, 0.11), transparent 60%); | |
| } | |
| .card .details summary::-webkit-details-marker { | |
| display: none; | |
| } | |
| .card .details summary::before { | |
| content: ""; | |
| width: 9px; | |
| height: 9px; | |
| margin-right: 13px; | |
| flex: 0 0 auto; | |
| transform: rotate(45deg); | |
| border: 1px solid rgba(255, 209, 139, 0.80); | |
| background: #8f250d; | |
| box-shadow: 0 0 8px rgba(255, 97, 20, 0.40); | |
| } | |
| .card .details summary::after { | |
| content: ""; | |
| position: absolute; | |
| right: 25px; | |
| width: 11px; | |
| height: 11px; | |
| border-right: 2px solid rgba(255, 180, 82, 0.88); | |
| border-bottom: 2px solid rgba(255, 180, 82, 0.88); | |
| transform: rotate(45deg) translateY(-3px); | |
| transition: transform 0.20s ease; | |
| } | |
| .card .details[open] summary::after { | |
| transform: rotate(225deg) translate(-3px, -3px); | |
| } | |
| .card .details summary:hover { | |
| color: #fff1dc; | |
| text-shadow: 0 0 10px rgba(255, 110, 23, 0.38); | |
| } | |
| .card .details pre { | |
| margin: 0; | |
| padding: clamp(22px, 3vw, 33px); | |
| overflow-x: auto; | |
| color: #d6c0ae; | |
| font-family: "JetBrains Mono", monospace; | |
| font-size: clamp(0.78rem, 1.12vw, 0.90rem); | |
| line-height: 1.72; | |
| white-space: pre; | |
| border-top: 1px solid rgba(255, 122, 31, 0.19); | |
| background: | |
| radial-gradient(circle at 0% 0%, rgba(202, 46, 12, 0.075), transparent 28%), | |
| radial-gradient(circle at 100% 100%, rgba(255, 154, 46, 0.045), transparent 27%), | |
| repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 160, 69, 0.012) 29px 30px), | |
| linear-gradient(180deg, #0b0604, #030201); | |
| } | |
| .card .details code { | |
| color: #f0bd83; | |
| font-family: inherit; | |
| } | |
| .card .grid { | |
| display: grid; | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | |
| gap: 18px; | |
| } | |
| .card .item { | |
| position: relative; | |
| display: flex; | |
| min-height: 174px; | |
| overflow: hidden; | |
| border: 1px solid rgba(255, 130, 37, 0.24); | |
| border-radius: 1px; | |
| background: | |
| radial-gradient(circle at 0% 0%, rgba(222, 50, 13, 0.095), transparent 35%), | |
| radial-gradient(circle at 100% 100%, rgba(255, 156, 46, 0.055), transparent 35%), | |
| linear-gradient(145deg, rgba(255, 103, 20, 0.045), transparent 43%), | |
| linear-gradient(180deg, #190d07, #080503); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 235, 203, 0.07), | |
| inset 0 -7px 14px rgba(0, 0, 0, 0.56), | |
| 0 7px 17px rgba(0, 0, 0, 0.28); | |
| transition: border-color 0.20s ease, box-shadow 0.20s ease, transform 0.20s ease; | |
| clip-path: polygon( | |
| 0 10px, 10px 0, | |
| calc(100% - 10px) 0, 100% 10px, | |
| 100% calc(100% - 10px), calc(100% - 10px) 100%, | |
| 10px 100%, 0 calc(100% - 10px) | |
| ); | |
| } | |
| .card .item::before, | |
| .card .item::after { | |
| content: ""; | |
| position: absolute; | |
| pointer-events: none; | |
| } | |
| .card .item::before { | |
| top: 0; | |
| left: 7%; | |
| width: 57%; | |
| height: 2px; | |
| background: linear-gradient( | |
| 90deg, | |
| rgba(205, 43, 11, 0.68), | |
| rgba(255, 91, 18, 0.74), | |
| rgba(255, 189, 81, 0.45), | |
| transparent | |
| ); | |
| } | |
| .card .item::after { | |
| top: 15%; | |
| bottom: 15%; | |
| right: 0; | |
| width: 3px; | |
| background: linear-gradient( | |
| to bottom, | |
| transparent, | |
| rgba(210, 45, 11, 0.55), | |
| rgba(255, 102, 21, 0.70), | |
| rgba(255, 184, 76, 0.38), | |
| transparent | |
| ); | |
| } | |
| .card .item:nth-child(2)::before { | |
| background: linear-gradient(90deg, rgba(255, 176, 67, 0.66), rgba(255, 102, 21, 0.58), transparent); | |
| } | |
| .card .item:nth-child(3)::before { | |
| background: linear-gradient(90deg, rgba(255, 209, 121, 0.58), rgba(227, 70, 18, 0.62), transparent); | |
| } | |
| .card .item:nth-child(4)::before { | |
| background: linear-gradient(90deg, rgba(197, 43, 11, 0.70), rgba(255, 142, 37, 0.62), transparent); | |
| } | |
| .card .item:hover { | |
| transform: translateY(-1px); | |
| border-color: rgba(255, 159, 55, 0.43); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255, 235, 203, 0.09), | |
| inset 0 -7px 14px rgba(0, 0, 0, 0.56), | |
| 0 0 19px rgba(255, 88, 18, 0.14), | |
| 0 9px 20px rgba(0, 0, 0, 0.31); | |
| } | |
| .card .item-copy { | |
| position: relative; | |
| align-self: center; | |
| min-width: 0; | |
| padding: 31px 32px 31px 38px; | |
| } | |
| .card .item-copy::before { | |
| content: ""; | |
| position: absolute; | |
| left: 20px; | |
| top: 50%; | |
| width: 6px; | |
| height: 38px; | |
| transform: translateY(-50%); | |
| background: linear-gradient(to bottom, transparent, #e44715, #ffb44f, transparent); | |
| clip-path: polygon(50% 0, 100% 35%, 66% 50%, 100% 66%, 50% 100%, 0 66%, 34% 50%, 0 35%); | |
| filter: drop-shadow(0 0 5px rgba(255, 96, 18, 0.30)); | |
| } | |
| .card .item h3 { | |
| margin: 0 0 11px; | |
| color: #ffe2b7; | |
| font-family: "Cinzel Decorative", Georgia, serif; | |
| font-size: clamp(1.08rem, 1.65vw, 1.30rem); | |
| font-weight: 700; | |
| line-height: 1.25; | |
| letter-spacing: -0.01em; | |
| } | |
| .card .item:nth-child(2) h3 { | |
| color: #ffd18e; | |
| } | |
| .card .item:nth-child(3) h3 { | |
| color: #ffeacb; | |
| } | |
| .card .item:nth-child(4) h3 { | |
| color: #ffc06a; | |
| } | |
| .card .item p { | |
| margin: 0; | |
| color: #bca997; | |
| font-size: clamp(0.94rem, 1.22vw, 1.02rem); | |
| line-height: 1.67; | |
| } | |
| @media (max-width: 760px) { | |
| .card .title { | |
| letter-spacing: -0.058em; | |
| } | |
| .card .panel-head { | |
| width: 92%; | |
| } | |
| } | |
| @media (max-width: 620px) { | |
| .card { | |
| margin: 18px auto; | |
| padding: 24px 14px 29px; | |
| } | |
| .card .header { | |
| padding: 4px 0 33px; | |
| } | |
| .card .title { | |
| } | |
| .card .line { | |
| width: 88%; | |
| height: 22px; | |
| margin-top: 17px; | |
| } | |
| .card .line::before { | |
| left: 27%; | |
| } | |
| .card .line::after { | |
| right: 27%; | |
| } | |
| .card .media { | |
| padding: 8px; | |
| margin-bottom: 23px; | |
| } | |
| .card .corner { | |
| width: 30px; | |
| height: 30px; | |
| } | |
| .card .corner::after { | |
| width: 15px; | |
| } | |
| .card .panel { | |
| padding: 24px 17px; | |
| margin-bottom: 22px; | |
| } | |
| .card .panel-head { | |
| width: 100%; | |
| padding: 12px 38px; | |
| margin-bottom: 22px; | |
| } | |
| .card .panel h2 { | |
| font-size: 1.22rem; | |
| } | |
| .card .copy { | |
| font-size: 0.96rem; | |
| line-height: 1.74; | |
| } | |
| .card .details summary { | |
| min-height: 58px; | |
| padding: 15px 56px 15px 18px; | |
| font-size: 0.74rem; | |
| } | |
| .card .details pre { | |
| font-size: 0.77rem; | |
| } | |
| .card .grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .card .item { | |
| min-height: 152px; | |
| } | |
| .card .item-copy { | |
| padding: 25px 22px 25px 34px; | |
| } | |
| .card .item-copy::before { | |
| left: 17px; | |
| height: 31px; | |
| } | |
| .card .item h3 { | |
| font-size: 1.05rem; | |
| } | |
| .card .item p { | |
| font-size: 0.92rem; | |
| } | |
| } | |
| </style> |