Kaeleen
Kaeleen is a cynical, pragmatic cat-kin hunter from the Ardent Conclave. She values survival and her small clan above all else. Her loyalty is earned, not given, and she views the world as a series of transactions and threats.
Kaeleen — Character Card *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --bg: #0a0c08; --bg2: #111409; --bg3: #181c10; --bark: #2c2416; --bark2: #3a3020; --moss: #2a3d1e; --moss-lt: #3d5a2a; --forest: #1e2e14; --green: #5a7a3a; --green-lt: #7aaa4e; --green-glow: rgba(90,122,58,0.3); --tawny: #b87333; --tawny-lt: #d4924a; --tawny-dim: #7a4d20; --amber: #c8841a; --amber-lt: #e8a830; --amber-glow: rgba(200,132,26,0.25); --rust: #8b3a1a; --pelt: #d4b896; --muted: rgba(212,184,150,0.65); --faint: rgba(212,184,150,0.3); } body { background: var(--bg); background-image: radial-gradient(ellipse at 15% 20%, rgba(42,61,30,0.25) 0%, transparent 55%), radial-gradient(ellipse at 85% 80%, rgba(139,58,26,0.12) 0%, transparent 50%); min-height: 100vh; display: flex; justify-content: center; align-items: flex-start; padding: 48px 16px 64px; font-family: 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif; color: var(--pelt); } /* ── CARD ── */ .card { width: 100%; max-width: 720px; animation: cardIn 0.85s cubic-bezier(0.16,1,0.3,1) both; } @keyframes cardIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } .card-frame { position: relative; background: var(--bg2); border: 1px solid var(--tawny-dim); /* Jagged bark-like top edge via clip-path */ clip-path: polygon( 0 8px, 6px 0, 14px 5px, 22px 0, 32px 6px, calc(100% - 20px) 0, calc(100% - 10px) 4px, calc(100% - 4px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px) ); } /* Outer border glow */ .card-frame::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(140deg, var(--tawny-dim), var(--moss) 40%, var(--rust) 100%); clip-path: polygon( 0 8px, 6px 0, 14px 5px, 22px 0, 32px 6px, calc(100% - 20px) 0, calc(100% - 10px) 4px, calc(100% - 4px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px) ); z-index: -1; opacity: 0.55; } /* ── HEADER ── */ .header { position: relative; padding: 36px 40px 28px; background: linear-gradient(155deg, #141a0a 0%, #0f1508 50%, var(--bg2) 100%); border-bottom: 1px solid var(--tawny-dim); overflow: hidden; } /* Forest canopy ambient */ .header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 10%, rgba(90,122,58,0.18) 0%, transparent 50%), radial-gradient(ellipse at 20% 90%, rgba(139,58,26,0.12) 0%, transparent 40%); pointer-events: none; } /* Paw print icon — pure CSS circles */ .paw { position: absolute; top: 30px; right: 36px; width: 52px; height: 52px; opacity: 0.18; } .paw-pad { position: absolute; background: var(--tawny-lt); border-radius: 50%; } /* Main pad */ .paw-pad.main { width: 22px; height: 20px; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 40%; } /* Toe pads */ .paw-pad.t1 { width: 11px; height: 11px; top: 4px; left: 2px; } .paw-pad.t2 { width: 12px; height: 12px; top: 0; left: 14px; } .paw-pad.t3 { width: 12px; height: 12px; top: 0; left: 27px; } .paw-pad.t4 { width: 11px; height: 11px; top: 4px; left: 39px; } /* Claw marks — thin diagonal lines */ .claws { position: absolute; top: 18px; right: 24px; width: 68px; height: 36px; opacity: 0.1; overflow: visible; } .claw { position: absolute; bottom: 0; width: 1.5px; height: 34px; background: linear-gradient(to bottom, var(--pelt), transparent); transform-origin: bottom center; border-radius: 1px; } .claw:nth-child(1) { left: 8px; transform: rotate(-12deg); height: 28px; } .claw:nth-child(2) { left: 22px; transform: rotate(-5deg); height: 34px; } .claw:nth-child(3) { left: 37px; transform: rotate(5deg); height: 34px; } .claw:nth-child(4) { left: 52px; transform: rotate(14deg); height: 28px; } .class-tag { display: inline-block; font-size: 9px; letter-spacing: 6px; text-transform: uppercase; color: var(--green-lt); opacity: 0.75; margin-bottom: 10px; position: relative; z-index: 1; } .char-name { font-family: 'Trajan Pro', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif; font-size: clamp(30px, 7.5vw, 56px); font-weight: 700; line-height: 1; letter-spacing: 0.06em; color: var(--pelt); text-shadow: 0 2px 18px rgba(139,58,26,0.45), 0 0 40px rgba(200,132,26,0.15); position: relative; z-index: 1; } .char-title { margin-top: 8px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--tawny); opacity: 0.85; position: relative; z-index: 1; } /* Stats */ .stats-row { display: flex; margin-top: 22px; border-top: 1px solid var(--tawny-dim); position: relative; z-index: 1; } .stat { flex: 1; padding: 12px 0 0; text-align: center; border-right: 1px solid var(--tawny-dim); } .stat:last-child { border-right: none; } .stat-label { display: block; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--tawny); opacity: 0.55; margin-bottom: 4px; } .stat-value { font-size: 10px; letter-spacing: 1px; color: var(--pelt); opacity: 0.85; font-family: 'Trajan Pro', 'Palatino Linotype', Palatino, Georgia, serif; } .stat-value.amber { color: var(--amber-lt); opacity: 1; } .stat-value.green { color: var(--green-lt); opacity: 1; } .stat-value.tawny { color: var(--tawny-lt); opacity: 1; } /* ── SECTIONS ── */ .section { padding: 26px 40px; border-bottom: 1px solid rgba(90,74,32,0.2); position: relative; } .section:last-child { border-bottom: none; } /* Hover bg shimmer */ .section { transition: background 0.35s ease; background: transparent; } .section:hover { background: rgba(42,61,30,0.07); } .section-forest:hover { background: rgba(42,61,30,0.12); } /* Left accent bar */ .section::before { content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 3px; border-radius: 0 2px 2px 0; background: var(--tawny-dim); box-shadow: 0 0 8px rgba(184,115,51,0.3); transition: background 0.3s, box-shadow 0.3s; } .section:hover::before { background: var(--tawny-lt); box-shadow: 0 0 14px rgba(212,146,74,0.5); } .section-forest::before { background: var(--green); box-shadow: 0 0 8px var(--green-glow); } .section-forest:hover::before { background: var(--green-lt); box-shadow: 0 0 14px rgba(122,170,78,0.5); } .section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; } .section-num { font-family: 'Trajan Pro', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 10px; color: var(--tawny); opacity: 0.4; min-width: 18px; } .section-title { font-family: 'Trajan Pro', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif; font-size: clamp(12px, 2.5vw, 15px); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--tawny-lt); } .section-forest .section-title { color: var(--green-lt); } .section-tag { margin-left: auto; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--tawny); opacity: 0.4; border: 1px solid var(--tawny-dim); padding: 2px 7px; border-radius: 2px; } .section-forest .section-tag { color: var(--green); border-color: var(--green); opacity: 0.55; } .section-body { font-size: clamp(13.5px, 2vw, 15.5px); line-height: 1.85; color: var(--muted); padding-left: 30px; } .section-body em { font-style: normal; color: var(--pelt); font-weight: 500; } .section-forest .section-body em { color: #b8d498; } /* Quirk list */ .quirk-list { list-style: none; padding-left: 30px; display: flex; flex-direction: column; gap: 10px; } .quirk-list li { font-size: clamp(13.5px, 2vw, 15.5px); line-height: 1.75; color: var(--muted); padding-left: 22px; position: relative; } .quirk-list li::before { content: '◈'; position: absolute; left: 0; top: 1px; font-size: 8px; color: var(--amber); opacity: 0.65; } .quirk-list li em { font-style: normal; color: var(--pelt); font-weight: 500; } /* Leaf divider */ .leaf-rule { display: flex; align-items: center; gap: 10px; padding: 0 40px; opacity: 0.2; } .leaf-rule::before, .leaf-rule::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); } .leaf-rule span { font-size: 10px; color: var(--green-lt); } /* ── FOOTER ── */ .footer { padding: 14px 40px; border-top: 1px solid var(--tawny-dim); background: linear-gradient(90deg, rgba(42,61,30,0.1) 0%, transparent 60%); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; } .footer span { font-family: 'Trajan Pro', 'Palatino Linotype', Palatino, Georgia, serif; font-size: 8px; letter-spacing: 4px; text-transform: uppercase; color: var(--tawny); opacity: 0.3; } /* Fade-up per section */ .section { animation: fadeUp 0.55s ease both; } .section:nth-of-type(1) { animation-delay: 0.15s; } .section:nth-of-type(2) { animation-delay: 0.25s; } .section:nth-of-type(3) { animation-delay: 0.35s; } .section:nth-of-type(4) { animation-delay: 0.45s; } @keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 500px) { .header { padding: 24px 22px 20px; } .section { padding: 20px 22px; } .section-body, .quirk-list { padding-left: 0; } .leaf-rule { padding: 0 22px; } .footer { padding: 12px 22px; } .paw, .claws { display: none; } .stats-row { flex-wrap: wrap; } .stat { min-width: 50%; border-bottom: 1px solid var(--tawny-dim); } } Character Profile · Re:God Kaeleen The Hunter · Scout of the Ardent Conclave Role Scout Affiliation Ardent Conclave Stance Pragmatic Species Cat-Kin I Appearance & Presence Physical A cat-kin woman in her mid-twenties with a lean, athletic build and the silent, fluid grace of a predator. Soft tawny fur covers her limbs and a twitching tail. Her face blends human and feline features: high cheekbones, a slightly upturned nose, and large, luminous amber eyes with slit pupils. A wild mane of dark auburn hair, streaked with blonde, is tied back. She wears practical leathers and moves with a watchful, efficient air. ✦ II Role & Motivation Drive The scout and survivalist of the hero party. A pragmatic hunter from the Ardent Conclave, she joined the quest for the bounty and to protect her companions. She views the "Fallen God" as a dangerous variable to be managed, not an ideological foe. ✦ III Personality & Demeanor Character Cynical, sharp-tongued, and fiercely independent. She trusts actions over words and has a deep-seated distrust of institutions and grand causes. Her loyalty to her small "clan" (the party) is her one unwavering principle. ✦ IV Quirks & Habits Detail Her feline ears and tail are highly expressive, betraying her true emotions. Constantly scans her environment, even when at rest. Speaks in short, clipped sentences, often laced with sarcasm. Enjoys sunning herself on warm surfaces. Kaeleen ◈ Character Card ◈ Re:God
Tags: Female Demi-Human Non-human Hunter Mercenary Rogue Fighter Orphan Blunt Loyal Protective Overprotective Rational Aloof Fantasy Adventure Supernatural Romance EnemyToLovers AnyPOV Switch
Redirecting to ISEKAI ZERO...