/* ============================================================
   NAKA PORTFOLIO — style.css
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #4da3ff;
    --accent-light: #82cfff;
    --bg: #000;
    --bg-surface: rgba(10, 11, 16, 0.92);
    --border: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(77, 163, 255, 0.35);
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --radius: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    font-size: clamp(13px, 1.2vw, 17px);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-display);
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background var(--transition);
}

.logo, .logo-text{
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: var(--text);
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

nav a:hover {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
}

nav a.nav-active {
    color: var(--text);
    border-color: rgba(77,163,255,0.45);
    background: rgba(77,163,255,0.08);
    box-shadow: 0 0 12px rgba(77,163,255,0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px) 60px;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    background: #000 url('https://picsum.photos/1920/1080') center / cover no-repeat;
}

/* Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
    pointer-events: none;
}

.hero-left,
.profile-big {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-roles {
    margin-top: 18px;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.35s forwards;
    overflow: hidden;
}

#typed-role {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 10px rgba(0,0,0,0.9);
    white-space: nowrap;
    will-change: contents;
}

.hero-roles span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 10px rgba(0,0,0,0.9);
}

.hero-roles span::before {
    content: '— ';
    color: var(--accent);
    opacity: 0.7;
}

.hero-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 24px rgba(77, 163, 255, 0.4);
    opacity: 0;
    animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 0 36px rgba(77, 163, 255, 0.6);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CURSOR — particles
   ============================================================ */
.cursor-particle {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, rgba(200,200,200,0.6) 60%, transparent 100%);
    will-change: transform, opacity;
    z-index: 99998;
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-group.visible > *:nth-child(1) { transition-delay: 0s;   opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }

/* ============================================================
   TYPING CURSOR BLINK
   ============================================================ */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.9s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ============================================================
   PROFILE CARD
   ============================================================ */
.profile-big {
    width: clamp(280px, 34vw, 400px);
    background: #111214;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    animation: fadeUp 0.7s ease 0.55s forwards;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.profile-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
}

.profile-big:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.profile-big.scaled {
    animation: copyPulse 0.2s ease-in-out;
}

@keyframes copyPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ── Banner — pure black ── */
.dc-banner {
    width: 100%;
    height: 80px;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* ONLINE badge top-right */
.dc-online-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-mono);
}

.dc-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23a55a;
    box-shadow: 0 0 6px rgba(35,165,90,0.8);
    display: inline-block;
}

/* ── Avatar row ── */
.dc-avatar-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 14px;
    margin-top: -44px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.dc-avatar-wrap {
    position: relative;
    display: inline-block;
}

/* gradient ring */
.dc-avatar-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 3px;
    background: rgb(70, 70, 70);
    display: inline-block;
}

.dc-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #111214;
    display: block;
    object-fit: cover;
}

/* green online dot */
.dc-status-dot {
    position: absolute;
    bottom: 4px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #23a55a;
    border-radius: 50%;
    border: 3px solid #111214;
    box-shadow: 0 0 6px rgba(35,165,90,0.6);
}

/* hobby bubble */
.dc-hobby-bubble {
    margin-bottom: 6px;
    background: #2b2d31;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    pointer-events: none;
    position: relative;
}

.dc-hobby-bubble::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #2b2d31;
    border-left: none;
}

.dc-hobby-plus {
    color: #23a55a;
    font-size: 1rem;
    font-weight: 700;
}

/* ── Info ── */
.dc-info { padding: 4px 14px 16px; }

.dc-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.dc-display-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f2f3f5;
    line-height: 1.2;
}

.dc-badge { font-size: 0.95rem; line-height: 1; }

.dc-username {
    font-size: 0.82rem;
    color: #b5bac1;
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

/* bio box */
.dc-bio-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111214;
    border-radius: 8px;
    padding: 10px 13px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #dbdee1;
}

.dc-bio-icon { font-size: 1rem; flex-shrink: 0; }
.dc-bio-box em { font-style: italic; color: #c4c9d4; }

/* divider */
.dc-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 10px 0;
}

/* section label */
.dc-section-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b5bac1;
    margin-bottom: 7px;
    font-family: var(--font-mono);
}

.dc-note-sub {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
}

/* role pills */
.dc-roles {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dc-role {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid;
    font-family: var(--font-mono);
}

.dc-role--red  { color: #f38ba8; border-color: #f38ba8; background: rgba(243,139,168,0.1); }
.dc-role--blue { color: #89b4fa; border-color: #89b4fa; background: rgba(137,180,250,0.1); }
.dc-role--teal { color: #94e2d5; border-color: #94e2d5; background: rgba(148,226,213,0.1); }

/* links */
.dc-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.dc-link-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #b5bac1;
}

.dc-link-icon { font-size: 0.88rem; }

/* note placeholder */
.dc-note-placeholder {
    font-size: 0.82rem;
    color: #4e5058;
    margin-bottom: 4px;
}

/* view button */
.dc-view-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #5865f2;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background var(--transition), transform 0.15s ease;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.dc-view-btn:hover  { background: #4752c4; transform: translateY(-1px); }
.dc-view-btn:active { background: #3c45a5; transform: scale(0.98); }


/* ============================================================
   MODELS SECTION
   ============================================================ */
.models {
    text-align: center;
    padding: 80px 20px 40px;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.featured-section {
    min-height: 60vh;
    padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 40px) 64px;
    background:
        radial-gradient(circle at top, rgba(77, 163, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #020204 0%, #090a10 50%, #08080b 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.featured-header {
    max-width: 1400px;
    margin: 0 auto clamp(20px, 3vw, 36px);
    padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.5vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--bg-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    max-width: 1400px;
    margin: 0 auto;
}

.featured-row {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr) minmax(160px, 280px);
    gap: clamp(12px, 2vw, 20px);
    align-items: stretch;
}

.featured-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--bg-surface);
    padding: 14px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition);
}

.featured-col:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.featured-col--details {
    align-items: stretch;
    justify-content: flex-start;
}

.featured-col--preview {
    justify-content: center;
    align-items: stretch;
    padding: clamp(12px, 1.8vw, 18px);
}

.featured-col--ad {
    justify-content: center;
    align-items: center;
}

.featured-details-box {
    width: 100%;
}

.featured-details-box-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-details-box-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
}

.featured-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.featured-card-wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    flex: 1;
}

.featured-card-wrap .project-card {
    flex: 1;
    width: 100%;
    min-height: 200px;
}

.featured-ad-slot {
    width: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.featured-ad-link {
    display: block;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity var(--transition), transform var(--transition);
}

.featured-ad-link:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.featured-ad-slot img {
    width: auto;
    max-width: 100%;
    max-height: 260px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Meta badges */
.meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.meta-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(10, 10, 14, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.meta-badge:hover {
    background: rgba(30, 30, 38, 0.95);
    border-color: var(--border-accent);
}

.meta-badge--muted {
    color: var(--text-muted);
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.08);
}

/* Project cards */
.project-card {
    width: 100%;
    min-height: 200px;
    padding: 28px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card > * {
    position: relative;
    z-index: 1;
}

.project-card--amasurvival {
    background-image: url(cavemc.png);
}

.project-card--soon {
    background: linear-gradient(135deg, #0d0e14 0%, #141620 100%);
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.project-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

.project-card-details {
    margin-top: 16px;
    padding: 12px 26px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.1);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.project-card-details:hover:not(:disabled) {
    background: rgba(0, 200, 255, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(77, 163, 255, 0.25);
}

.project-card-details:disabled {
    opacity: 0.45;
    cursor: default;
    border-style: dashed;
}

.card-tag {
    position: absolute;
    bottom: 10px;
    right: 14px;
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    z-index: 2;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 48px 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

footer h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 12px;
}

footer h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

footer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 4px;
}

footer a {
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

footer a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
    .featured-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .featured-ad-slot img {
        max-width: min(300px, 100%);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {

    /* ── Navbar ── */
    .menu-toggle { display: block; }

    nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        position: absolute;
        top: 62px;
        right: 0;
        width: 220px;
        padding: 12px 8px;
        border: 1px solid var(--border);
        border-radius: 0 0 0 12px;
    }

    nav.active { display: flex; }

    nav a {
        width: 100%;
        padding: 13px 16px;
        border-radius: 8px;
        font-size: 1rem;
    }

    /* ── Hero ── */
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        gap: 32px;
    }

    .hero-eyebrow { font-size: 0.85rem; }

    .hero-left h1 { font-size: clamp(3rem, 13vw, 5rem); }

    .hero-roles {
        min-height: 2.4rem;
        justify-content: center;
    }

    #typed-role {
        font-size: 1rem;
    }

    .hero-cta {
        margin-left: auto;
        margin-right: auto;
        padding: 16px 36px;
        font-size: 1rem;
    }

    /* ── Profile card ── */
    .profile-big {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .dc-display-name  { font-size: 1.3rem; }
    .dc-username      { font-size: 1rem; }
    .dc-bio-box       { font-size: 1rem; padding: 13px 14px; }
    .dc-bio-box em    { font-size: 1rem; }
    .dc-section-label { font-size: 0.8rem; letter-spacing: 0.08em; }
    .dc-role          { font-size: 0.82rem; padding: 6px 14px; }
    .dc-link-item     { font-size: 1rem; gap: 10px; }
    .dc-note-placeholder { font-size: 0.95rem; }
    .dc-view-btn      { font-size: 1.05rem; padding: 14px; border-radius: 6px; margin-top: 14px; }
    .dc-hobby-bubble  { font-size: 0.9rem; padding: 7px 12px; }
    .dc-avatar-ring   { width: 80px; height: 80px; }

    /* ── Models heading ── */
    .models { font-size: clamp(1.6rem, 5vw, 2.2rem); padding: 60px 20px 30px; }

    /* ── Slider controls ── */
    .slider-controls { padding: 0 16px; bottom: 20px; }

    .arrow {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .counter {
        font-size: 0.85rem;
        padding: 7px 16px;
    }

    /* ── Slide content ── */
    .slide h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }

    .slide p {
        font-size: 1rem;
        padding: 0 16px;
        line-height: 1.6;
    }

    .slide .tag {
        font-size: 0.8rem;
        padding: 5px 14px;
    }

    .btn-main {
        padding: 18px 36px;
        font-size: 1rem;
        width: 90%;
        max-width: 280px;
    }

    .btn-small {
        padding: 13px 22px;
        font-size: 0.9rem;
    }

    .owner-label { font-size: 0.78rem; }

    .slide-creators { font-size: 0.78rem; }

    /* ── Footer ── */
    footer { padding: 36px 20px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    footer h3 { font-size: 1.1rem; }
    footer h4 { font-size: 0.78rem; }
    footer p  { font-size: 0.9rem; }
    footer a  { font-size: 0.9rem; }
}

/* ── Extra small phones ── */
@media (max-width: 400px) {
    .hero-left h1 { font-size: clamp(2.5rem, 14vw, 3.5rem); }
    .btn-main { padding: 16px 24px; font-size: 0.95rem; }
    .arrow { width: 50px; height: 50px; }
    .footer-grid { grid-template-columns: 1fr; }
    .dc-view-btn { font-size: 1rem; }
}
/* =========================
   FEATURED SLIDER
   ========================= */

.featured-section {
    height: 100vh;
    padding: 0 !important;
    display: block !important;
    background:
        radial-gradient(circle at top, rgba(77,163,255,0.08), transparent 40%),
        #050507;
    overflow: hidden;
}

/* container */
.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

/* slides wrapper */
.slides {
    height: 300%;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}

/* each slide */
.slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Dark overlay per slide for readability */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 0;
}

/* Ensure slide content sits above overlay */
.slide > * {
    position: relative;
    z-index: 1;
}

/* Slide-specific backgrounds */
.slide:nth-child(1) {
    background-image: url('cavemc.png');
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #0a0010 0%, #1a0030 50%, #0d0020 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #050508 0%, #0d0e18 50%, #08080d 100%);
    border-top: 1px dashed rgba(255,255,255,0.08);
}

/* tag */
.slide .tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* title */
.slide h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* description */
.slide p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slide-creators {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: -8px;
}

/* owners buttons */
.owners {
    display: flex;
    flex-direction: flex;
    gap: 8px;
    align-items: flex-start;
}

.owner-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.owner-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.btn-small {
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 0 10px rgba(77,163,255,0.1);
}

.btn-small:hover {
    transform: translateY(-2px);
    border-color: rgba(77,163,255,0.65);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.btn-small:active {
    transform: translateY(0) scale(0.97);
}

/* main button */
.btn-main {
    margin-top: 10px;
    padding: 14px 36px;
    border-radius: 999px;
    border: 1px solid rgba(77,163,255,0.4);
    background: rgba(77,163,255,0.12);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 0 18px rgba(77,163,255,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: rgba(77,163,255,0.25);
    border-color: rgba(77,163,255,0.7);
    box-shadow: 0 0 32px rgba(77,163,255,0.4), 0 8px 24px rgba(0,0,0,0.3);
}

.btn-main:active {
    transform: translateY(0) scale(0.97);
}

/* controls */
.slider-controls {
    position: fixed;
    bottom: 28px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    pointer-events: auto;
    z-index: 999;
}

/* counter */
.counter {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.45);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    letter-spacing: 0.1em;
}

/* arrows */
.arrows {
    display: flex;
    gap: 10px;
}

.arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(77,163,255,0.3);
    background: rgba(77,163,255,0.08);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 0 12px rgba(77,163,255,0.1);
    user-select: none;
}

.arrow:hover {
    transform: scale(1.12);
    border-color: rgba(77,163,255,0.7);
    background: rgba(77,163,255,0.2);
    box-shadow: 0 0 22px rgba(77,163,255,0.4);
}

.arrow:active {
    transform: scale(0.95);
}

/* slide content fade-in on transition */
.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: slideContentIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideContentIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}