/*
  MAIN_STYLE_FUN_V17_cleaned.css
  Cleaned from MAIN_STYLE_FUN_V17(12).css using index(30).html as reference.
  Dead legacy timeline/hero/skill/modal selectors were removed.
*/

:root {
    --ink: #111;
    --paper: #efefef;
    --paper-warm: #fff7d6;
    --red: #ff3b30;
    --blue: #2563ff;
    --yellow: #ffe45c;
    --green: #43d17a;
    --purple: #9b5cff;
    --muted: #666;
    --gap: 18px;
    --nav-height: 66px;
    --radius: 28px;
    --shadow-hard: 8px 8px 0 #111;
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(circle at 15% 10%, rgba(255, 228, 92, 0.35), transparent 24%),
        radial-gradient(circle at 85% 8%, rgba(37, 99, 255, 0.18), transparent 22%),
        linear-gradient(180deg, #efefef 0%, #f7f1df 48%, #efefef 100%);
    color: var(--ink);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.grain-layer {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.08;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 18px 18px;
    mix-blend-mode: multiply;
}

.cursor-orb {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(17, 17, 17, 0.45);
    border-radius: 999px;
    left: 0;
    top: 0;
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    backdrop-filter: invert(1);
    opacity: 0;
}

.cursor-orb.is-active {
    opacity: 1;
}

.cursor-orb.is-hovering {
    width: 62px;
    height: 62px;
    background: rgba(255, 228, 92, 0.22);
    border-color: rgba(17, 17, 17, 0.85);
}

.site {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px;
    position: relative;
    z-index: 2;
}

.header {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: sticky;
    top: 12px;
    z-index: 50;
    padding: 10px 14px;
    border: 3px solid var(--ink);
    border-radius: 999px;
    background: rgba(239, 239, 239, 0.84);
    backdrop-filter: blur(14px);
    box-shadow: 5px 5px 0 #111;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-family: "Bangers", sans-serif;
    font-size: clamp(20px, 2vw, 31px);
    letter-spacing: 0.6px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 3px solid #111;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 4px 4px 0 #111;
}

.main-nav {
    display: flex;
    gap: clamp(7px, 1.1vw, var(--gap));
    align-items: center;
    font-family: "Bangers", sans-serif;
    font-size: clamp(17px, 1.8vw, 28px);
}

.main-nav a {
    -webkit-text-stroke: 1px #000;
    color: transparent;
    text-decoration: none;
    padding: 6px 8px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: transform 120ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: black;
    -webkit-text-stroke: 0;
    transform: scale(1.06) rotate(-1.5deg);
    animation: calm-shake 0.45s ease-in-out infinite;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: -8px;
    height: 12px;
    width: 80%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 10\"><path d=\"M2 6 C20 2 40 9 60 5 C80 1 98 6 100 6\" stroke=\"%23000\" stroke-width=\"4.2\" fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    transition: transform 220ms cubic-bezier(.2,.9,.2,1);
    transform-origin: center;
    pointer-events: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-button {
    display: none;
    font-family: "Bangers", sans-serif;
    font-size: 20px;
    border: 3px solid #111;
    border-radius: 999px;
    background: #fff;
    box-shadow: 3px 3px 0 #111;
    padding: 8px 14px;
    cursor: pointer;
}

.section-shell {
    border: 4px solid #111;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow-hard);
}

.hero-section {
    position: relative;
    padding-top: 26px;
}

.cover {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 36px;
    border: 4px solid #111;
    box-shadow: var(--shadow-hard);
    background: #fff;
}

.cover img {
    width: 100%;
    height: clamp(420px, 62vw, 820px);
    display: block;
    object-fit: cover;
    opacity: 0.78;
    transition: opacity 0.25s ease-out, transform 0.6s ease;
}

.cover:hover img {
    opacity: 0.9;
    transform: scale(1.015);
}

.cover::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    background: radial-gradient(circle 420px at var(--mx, 80%) var(--my, 80%), rgba(10,10,10,0.28) 0%, rgba(255,255,255,0) 100%);
}

.cover:hover::before {
    opacity: 1;
}

.cover::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(239,239,239,0) 62%, rgba(239,239,239,1) 100%),
        linear-gradient(to right, rgba(239,239,239,0.95) 0%, rgba(239,239,239,0) 35%),
        linear-gradient(to left, rgba(239,239,239,0.95) 0%, rgba(239,239,239,0) 35%);
}

.hero-overlay {
    position: absolute;
    z-index: 6;
    left: clamp(18px, 5vw, 76px);
    bottom: clamp(24px, 6vw, 88px);
    max-width: 660px;
    padding: clamp(18px, 3vw, 34px);
    border: 4px solid #111;
    border-radius: 28px;
    background: rgba(255, 247, 214, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-hard);
    transform: rotate(-1deg);
}

.realm-kicker {
    font-family: "Bangers", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--red);
}

.hero-overlay h1,
.realm-header h2,
.contact-card h2 {
    font-family: "Bangers", sans-serif;
    letter-spacing: 1px;
    line-height: 0.95;
    margin: 0;
}

.hero-overlay h1 {
    font-size: clamp(48px, 7vw, 110px);
    max-width: 9ch;
}

.hero-subtitle {
    font-size: clamp(16px, 1.7vw, 22px);
    line-height: 1.45;
    margin: 16px 0 22px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-button {
    font-family: "Bangers", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 3px solid #111;
    border-radius: 999px;
    box-shadow: 4px 4px 0 #111;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 21px;
}

.pill-button.primary {
    background: var(--yellow);
}

.pill-button.ghost {
    background: #fff;
}

.pill-button:hover,
.portal-card:hover {
    transform: translate(-2px, -2px) rotate(-1deg);
    box-shadow: 7px 7px 0 #111;
}

.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(30px, 4vw, 60px);
    padding: clamp(26px, 4vw, 58px);
    margin: 84px 0;
    position: relative;
}

.about-photo {
    position: relative;
    width: min(620px, 100%);
    flex-shrink: 0;
}

.about-photo-holder {
    position: relative;
    transform-origin: center;
    transition: transform 0.25s ease;
}

.about-photo-holder:hover {
    transform: rotate(-1deg) scale(1.015);
}

.about-photo img,
.about-photo-holder img {
    width: 100%;
    height: auto;
    display: block;
}

.sticker-img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(4px 5px 0 rgba(0,0,0,0.16));
}

.sticker-img.second {
    margin: 50px auto;
}

.about-hover-card {
    position: absolute;
    top: -30px;
    left: 60%;
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 10;
    width: 250px;
    height: 200px;
    background-image: url("Imagens/card.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 12px;
}

.about-hover-title {
    margin: 0;
}

.about-hover-card .btn {
    background: none;
    border: 0;
    padding: 0;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.2s ease;
}

.about-hover-card .btn:hover {
    transform: scale(1.18) rotate(-3deg);
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.35));
}

.about-hover-card .btn:active {
    transform: scale(0.92);
}

.about-hover-card .btn img {
    width: 54px;
    height: auto;
}

.about-hover-card-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.about-photo-holder:hover .about-hover-card,
.about-photo-holder:focus-within .about-hover-card {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.about-photo-holder:not(:hover) .about-hover-card {
    transition-delay: 0.5s;
}

.about-content {
    max-width: 620px;
}

.about-title {
    width: min(540px, 100%);
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.about-text {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.about-text.big {
    font-size: clamp(18px, 1.5vw, 23px);
    font-weight: 700;
}

.creator-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.creator-stats div {
    min-height: 96px;
    padding: 14px 10px;
    border: 3px solid #111;
    border-radius: 18px;
    background: #fff;
    box-shadow: 4px 4px 0 #111;
    transform: rotate(var(--r, 1deg));
}

.creator-stats div:nth-child(2) {
    --r: -1deg;
    background: #e4f0ff;
}

.creator-stats div:nth-child(3) {
    --r: 1.5deg;
    background: #fff2c2;
}

.creator-stats div:nth-child(4) {
    --r: -1.3deg;
    background: #f2e7ff;
}

.creator-stats strong {
    display: block;
    font-family: "Bangers", sans-serif;
    font-size: 29px;
}

.creator-stats span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #333;
}

.arrow-guide,
.arrow-guide-second {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    animation: arrowBounce 1.4s ease-in-out infinite;
}

.arrow-guide img,
.arrow-guide-second img {
    width: 100px;
    height: auto;
    position: relative;
    pointer-events: none;
}

.arrow-guide img {
    transform: rotate(20deg);
}

.arrow-guide-second img {
    width: 30%;
    margin-top: 70px;
    transform: rotate(345deg);
}

.work-section {
    width: 100%;
    display: grid;
    grid-template-columns: 210px minmax(0, 720px) 210px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 90px 0 38px;
}

.work-title {
    margin: 0 auto;
    width: min(500px, 100%);
    height: auto;
    display: block;
}

.work-content-wrapper {
    text-align: center;
}

.work-intro {
    max-width: 660px;
    margin: 12px auto 18px;
    font-size: 18px;
    font-weight: 800;
}

.work-character {
    position: relative;
    width: 230px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(7px 9px 0 rgba(0,0,0,0.15));
    animation: danceFloat 1.8s ease-in-out infinite;
}

.work-character.mirror {
    transform: scaleX(-1);
    animation-delay: -0.5s;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border: 3px solid #111;
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 4px 4px 0 #111;
    font-family: "Bangers", sans-serif;
    font-size: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.project-link:hover {
    transform: translate(-2px, -2px) rotate(-1deg);
    box-shadow: 7px 7px 0 #111;
}

.portal-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 32px 0 80px;
}

.portal-card {
    min-height: 180px;
    padding: 18px;
    border: 4px solid #111;
    border-radius: 26px;
    background: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-hard);
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.portal-card:nth-child(1) {
    background: #e4f0ff;
}

.portal-card:nth-child(2) {
    background: #fff2c2;
}

.portal-card:nth-child(3) {
    background: #e9ffd9;
}

.portal-card:nth-child(4) {
    background: #f2e7ff;
}

.portal-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -38px;
    bottom: -38px;
    border-radius: 50%;
    border: 4px dashed #111;
    opacity: 0.28;
    animation: spin 14s linear infinite;
}

.portal-card span {
    font-family: "Bangers", sans-serif;
    font-size: 28px;
    color: var(--red);
}

.portal-card strong {
    display: block;
    margin-top: 18px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(31px, 3vw, 46px);
    line-height: 0.95;
}

.portal-card em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 900;
}

.portfolio-realm {
    padding: clamp(26px, 4vw, 54px);
    margin: 72px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-realm::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 9% 16%, rgba(255,255,255,0.8), transparent 16%),
        radial-gradient(circle at 96% 6%, rgba(255,255,255,0.62), transparent 18%);
}

.realm-vr {
    background: linear-gradient(135deg, rgba(228,240,255,0.92), rgba(255,255,255,0.74));
}

.realm-games {
    background: linear-gradient(135deg, rgba(255,242,194,0.92), rgba(255,255,255,0.74));
}

.realm-web {
    background: linear-gradient(135deg, rgba(233,255,217,0.92), rgba(255,255,255,0.74));
}

.realm-header {
    max-width: 840px;
    margin-bottom: 28px;
}

.realm-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.realm-header h2,
.contact-card h2 {
    font-size: clamp(46px, 7vw, 86px);
}

.realm-header p:not(.realm-kicker),
.contact-card p {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.55;
    font-weight: 800;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.portfolio-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    border: 4px solid #111;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    box-shadow: 7px 7px 0 #111;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
}

.portfolio-card:hover {
    box-shadow: 12px 12px 0 #111;
}

.portfolio-card.is-hidden {
    display: none;
}

.card-scene {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #111;
    background: radial-gradient(circle at 20% 24%, rgba(255,255,255,0.75), transparent 18%),
        linear-gradient(135deg, #fff, #e4f0ff);
}

.card-scene.has-video {
    background: #111;
}

.card-scene-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 10;
}

.card-scene span {
    font-size: clamp(42px, 5vw, 68px);
    display: inline-block;
    animation: bob 2.4s ease-in-out infinite;
    filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.16));
}

.scene-audio {
    background: linear-gradient(135deg, #f2e7ff, #fff);
}

.scene-wine {
    background: linear-gradient(135deg, #ffe2e2, #fff4c8);
}

.scene-game {
    background: linear-gradient(135deg, #fff2c2, #fff);
}

.scene-ball {
    background: linear-gradient(135deg, #dfffe7, #fff);
}

.scene-pet {
    background: linear-gradient(135deg, #f8e6ff, #fff7d6);
}

.scene-web {
    background: linear-gradient(135deg, #e9ffd9, #fff);
}

.scene-landing {
    background: linear-gradient(135deg, #e4f0ff, #fff2c2);
}

.scene-ui {
    background: linear-gradient(135deg, #fff0f0, #e9ffd9);
}

.portfolio-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.portfolio-card small {
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-card h3 {
    margin: 8px 0 10px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 0.95;
}

.portfolio-card p {
    margin: 0 0 18px;
    line-height: 1.55;
    font-weight: 700;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 16px;
}

.tag-row span {
    display: inline-flex;
    padding: 7px 10px;
    border: 2px solid #111;
    border-radius: 999px;
    background: #fff7d6;
    font-size: 12px;
    font-weight: 900;
}

.contact-section {
    margin: 110px 0 60px;
    padding: clamp(26px, 5vw, 70px);
    background: var(--paper-warm);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "✦ ✦ ✦ ✦ ✦";
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 40px;
    letter-spacing: 12px;
    opacity: 0.22;
    transform: rotate(12deg);
}

.contact-card {
    max-width: 880px;
}

.float-msg {
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    font-size: 13px;
    font-family: "Bangers", sans-serif;
    letter-spacing: 4px;
    opacity: 0;
    padding: 6px 10px;
    border-radius: 8px;
    background: #efefef;
    color: black;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    animation: floatUp 2.0s ease-out forwards;
    pointer-events: none;
    white-space: nowrap;
    z-index: 200;
}

.spark {
    position: fixed;
    z-index: 3000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid #111;
    pointer-events: none;
    animation: sparkPop 0.7s ease-out forwards;
}

.special-text {
    font-family: "Bangers", sans-serif;
    letter-spacing: 2px;
    text-decoration: underline wavy blue;
    -webkit-text-stroke: 1px #000;
    color: transparent;
    font-size: 1.18em;
}

.special-text-font-one-red {
    text-decoration: underline wavy red;
    font-weight: 700;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes calm-shake {
0% {
    transform: translate(0, 0) scale(1.06);
}

25% {
    transform: translate(-1.5px, 1.5px) scale(1.06);
}

50% {
    transform: translate(1.5px, -1.5px) scale(1.06);
}

75% {
    transform: translate(-1px, -1px) scale(1.06);
}

100% {
    transform: translate(0, 0) scale(1.06);
}
}

@keyframes arrowBounce {
0%, 100% {
    transform: translateY(0);
}

50% {
    transform: translateY(10px);
}
}

@keyframes floatUp {
0% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
}

20% {
    opacity: 1;
}

100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-108px);
}
}

@keyframes danceFloat {
0%, 100% {
    translate: 0 0;
    rotate: -1deg;
}

50% {
    translate: 0 -14px;
    rotate: 1deg;
}
}

@keyframes spin {
to {
    transform: rotate(360deg);
}
}

@keyframes bob {
0%, 100% {
    transform: translateY(0) rotate(-2deg);
}

50% {
    transform: translateY(-12px) rotate(3deg);
}
}

@keyframes sparkPop {
from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
}

to {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.2);
}
}

@media (max-width: 1180px) {
.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
}

.portal-map {
    grid-template-columns: repeat(2, 1fr);
}

.work-section {
    grid-template-columns: 140px minmax(0, 1fr) 140px;
}

.work-character {
    width: 160px;
}

.about-section {
    flex-direction: column;
    align-items: center;
}

.about-content {
    max-width: 900px;
}
}

@media (max-width: 930px) {
.header {
    border-radius: 24px;
    align-items: flex-start;
}

.mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
}

.main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 3px solid #111;
    border-radius: 24px;
    background: #fff7d6;
    box-shadow: 5px 5px 0 #111;
    font-size: 25px;
}

body.menu-open .main-nav {
    display: flex;
}

.main-nav a {
    color: #111;
    -webkit-text-stroke: 0;
    border-bottom: 2px dashed rgba(17,17,17,0.22);
}

.hero-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -70px 16px 0;
}

.work-section {
    grid-template-columns: 1fr;
}

.work-character {
    margin: 0 auto;
}

.about-content {
    order: 1;
}

.about-photo {
    order: 2;
}

.arrow-guide,
.arrow-guide-second {
    display: none;
}

.about-section {
    gap: 34px;
}

.about-photo-holder {
    display: none;
}

.hero-plane-route {
    width: 100%;
    height: 72px;
    margin: 8px 0 18px;
}

.hero-plane-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-layout-v10 {
    padding-bottom: 4px !important;
}

.hero-section {
    padding-bottom: 0 !important;
}

.hero-plane-route {
    height: 56px !important;
    margin: -6px auto 0 !important;
}

.about-section {
    margin-top: 22px !important;
}

.cook-print figcaption strong {
    font-size: clamp(12px, 3.6vw, 16px) !important;
    line-height: 0.95;
    letter-spacing: 0.2px;
}

.cook-print figcaption span {
    font-size: 9px !important;
    line-height: 1;
}

.cook-wall {
    gap: 14px;
}

.cook-print {
    padding: 8px;
}

.pet-print figcaption strong {
    font-size: clamp(12px, 3.6vw, 16px) !important;
    line-height: 0.95;
    letter-spacing: 0.2px;
}

.pet-print figcaption span {
    font-size: 9px !important;
    line-height: 1;
}

.pet-print {
    padding: 8px;
}

.place-print figcaption strong {
    font-size: clamp(12px, 3.6vw, 16px) !important;
    line-height: 0.95;
    letter-spacing: 0.2px;
}

.place-print figcaption span {
    font-size: 9px !important;
    line-height: 1;
}

.place-wall {
    gap: 14px;
}

.place-print {
    padding: 8px;
}

.site-footer {
    margin: 48px 0 18px;
    padding: 18px;
    border-radius: 26px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 13px;
}

.site-footer strong {
    font-size: 18px;
}
}

@media (max-width: 720px) {
.site {
    padding: 10px;
}

.logo .name {
    display: none;
}

.cover img {
    height: 470px;
}

.hero-overlay h1 {
    font-size: 56px;
}

.portfolio-grid,
.portal-map,
.creator-stats {
    grid-template-columns: 1fr;
}

.portfolio-card {
    min-height: auto;
}

.about-section,
.portfolio-realm,
.skill-lab,
.contact-section {
    border-radius: 22px;
    box-shadow: 5px 5px 0 #111;
}

.about-hover-card {
    left: 50%;
    top: 10px;
}

.work-character {
    width: 170px;
}

.cursor-orb {
    display: none;
}
}

@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
}
}

.portal-map {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.portal-card {
    appearance: none;
    font-family: inherit;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.portal-card:nth-child(5) {
    background: #e9f7ff;
}

.portal-card:nth-child(6) {
    background: #ffe9f3;
}

.portal-card:nth-child(7) {
    background: #eafff6;
}

.portal-card.active {
    background: var(--yellow);
    transform: translate(-3px, -3px) rotate(-1deg);
    box-shadow: 12px 12px 0 #111;
}

.portal-world {
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.portal-world.is-hidden {
    display: none !important;
}

.portal-world.is-focused {
    animation: portalSummon 0.42s ease-out both;
}

.realm-models {
    background: linear-gradient(135deg, rgba(233,247,255,0.94), rgba(255,255,255,0.78));
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.model-card {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    border: 4px solid #111;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    box-shadow: 7px 7px 0 #111;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.model-card:hover {
    box-shadow: 12px 12px 0 #111;
}

.model-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.model-card small,
.life-card small {
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-card h3,
.life-card h3 {
    margin: 8px 0 10px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(34px, 3.3vw, 50px);
    line-height: 0.95;
}

.model-card p,
.life-card p {
    margin: 0 0 18px;
    line-height: 1.55;
    font-weight: 750;
}

.life-section {
    padding: clamp(26px, 4vw, 54px);
    margin: 72px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 12%, rgba(255,228,92,0.38), transparent 18%),
        radial-gradient(circle at 88% 20%, rgba(255,59,48,0.18), transparent 19%),
        linear-gradient(135deg, rgba(234,255,246,0.96), rgba(255,255,255,0.78));
}

.life-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.life-card {
    min-height: 360px;
    padding: 18px;
    border: 4px solid #111;
    border-radius: 28px;
    background: #fff;
    box-shadow: 7px 7px 0 #111;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.life-card:hover {
    transform: translate(-3px, -3px) rotate(-0.6deg);
    box-shadow: 12px 12px 0 #111;
}

.life-card.big {
    grid-column: span 2;
    grid-row: span 2;
}

.life-card.wide {
    grid-column: span 3;
}

.life-photo {
    min-height: 190px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 3px dashed #111;
    border-radius: 22px;
    font-size: 72px;
    background: #fff7d6;
}

.life-photo.pet {
    background: linear-gradient(135deg, #eafff6, #fff);
}

@keyframes portalSummon {
0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
}

100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
}

@media (max-width: 1180px) {
.model-grid,
.life-board {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 720px) {
.model-grid,
.life-board {
    grid-template-columns: 1fr;
}

.life-card.big,
.life-card.wide {
    grid-column: span 1;
    grid-row: span 1;
}

.life-section,
.realm-models {
    border-radius: 22px;
    box-shadow: 5px 5px 0 #111;
}
}

@media (max-width: 620px) {
.journey-section {
    padding: 26px 16px;
}
}

.simple-journey {
    margin: 110px 0;
    padding: clamp(28px, 5vw, 70px);
    background: radial-gradient(circle at 14% 12%, rgba(255, 228, 92, 0.52), transparent 22%),
        radial-gradient(circle at 88% 18%, rgba(155, 92, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #fffaf0, #f4f0e7);
    position: relative;
    overflow: hidden;
}

.simple-timeline {
    width: min(1180px, 94%);
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.45fr 1fr;
    gap: 0;
    position: relative;
    align-items: start;
}

.simple-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 24px;
    height: 8px;
    border-radius: 999px;
    background: #111;
    box-shadow: 0 0 0 4px rgba(17,17,17,0.08);
}

.simple-timeline-item {
    position: relative;
    z-index: 2;
    padding: 64px 12px 0;
    text-align: center;
}

.simple-dot {
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translateX(-50%);
    border: 5px solid #111;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 10px rgba(255,228,92,0.20), 4px 4px 0 #111;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.simple-timeline-item:hover .simple-dot {
    transform: translateX(-50%) translateY(-5px) scale(1.08);
    box-shadow: 0 0 0 14px rgba(255,228,92,0.13), 6px 7px 0 #111;
}

.simple-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    border: 3px solid #111;
    border-radius: 999px;
    background: #fff;
    font-family: "Bangers", sans-serif;
    font-size: 24px;
    line-height: 1;
    box-shadow: 3px 3px 0 #111;
}

.simple-timeline-item h3 {
    margin: 0 0 6px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.92;
}

.simple-timeline-item p {
    max-width: 220px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
}

.simple-timeline-item.wide p {
    max-width: 310px;
}

@media (max-width: 980px) {
.simple-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
}

.simple-timeline::before {
    left: 31px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 8px;
    height: auto;
}

.simple-timeline-item {
    min-height: 110px;
    padding: 0 0 0 82px;
    text-align: left;
}

.simple-dot {
    left: 35px;
    top: 2px;
}

.simple-timeline-item p,
.simple-timeline-item.wide p {
    margin: 0;
    max-width: 100%;
}
}

.hero-roleline {
    margin: 0 0 8px;
    font-family: "Bangers", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(22px, 2.4vw, 34px);
    color: var(--red);
}

.hero-name {
    margin: 0;
    font-family: "Bangers", sans-serif;
    font-size: clamp(58px, 8vw, 126px);
    line-height: 0.9;
    letter-spacing: 1px;
}

.hero-cover-v10 {
    min-height: 0;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
}

.hero-layout-v10 {
    min-height: auto;
    padding-bottom: clamp(10px, 2vw, 24px);
}

.hero-cover-v10 > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.hero-layout-v10 {
    position: relative;
    z-index: 6;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(18px, 3vw, 46px);
    align-items: center;
    padding: clamp(24px, 4vw, 52px);
}

.hero-copy-v10 {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 610px;
    padding: clamp(22px, 3vw, 40px);
    transform: rotate(-0.7deg);
    background: rgba(255, 247, 214, 0.93);
    margin-left: clamp(4px, 1.6vw, 18px);
}

.hero-subtitle-v10 {
    max-width: 26ch;
    margin-top: 18px;
    font-size: clamp(17px, 1.8vw, 24px);
    line-height: 1.45;
}

.hero-moodboard {
    position: relative;
    min-height: auto;
    border: 4px solid #111;
    border-radius: 34px;
    background: radial-gradient(circle at 20% 18%, rgba(255,228,92,0.18), transparent 24%),
        radial-gradient(circle at 80% 16%, rgba(255,84,84,0.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,247,214,0.72));
    box-shadow: 10px 10px 0 #111;
    overflow: hidden;
    isolation: isolate;
}

.hero-moodboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.hero-photo-card {
    position: absolute;
    overflow: hidden;
    border: 4px solid #111;
    border-radius: 24px;
    background: #fff;
    box-shadow: 7px 7px 0 #111;
    animation: moodboardFloat 5.4s ease-in-out infinite;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.02) saturate(0.98);
}

.photo-1 {
    left: 6%;
    top: 8%;
    width: 22%;
    height: 26%;
    transform: rotate(-8deg);
}

.photo-2 {
    left: 33%;
    top: 4%;
    width: 19%;
    height: 20%;
    transform: rotate(6deg);
    animation-delay: -0.8s;
}

.photo-3 {
    right: 11%;
    top: 10%;
    width: 24%;
    height: 31%;
    transform: rotate(8deg);
    animation-delay: -1.2s;
}

.photo-4 {
    left: 12%;
    bottom: 13%;
    width: 25%;
    height: 30%;
    transform: rotate(5deg);
    animation-delay: -1.8s;
}

@keyframes moodboardFloat {
0%, 100% {
    translate: 0 0;
}

50% {
    translate: 0 -12px;
}
}

.hero-balloon {
    position: absolute;
    z-index: 4;
    padding: 8px 12px;
    border: 3px solid #111;
    border-radius: 999px;
    background: #fff;
    box-shadow: 4px 4px 0 #111;
    font-family: "Bangers", sans-serif;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1;
    letter-spacing: 1px;
    animation: balloonBob 4.2s ease-in-out infinite;
}

.hero-balloon::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 3px solid #111;
    border-bottom: 3px solid #111;
    transform: rotate(45deg);
}

.balloon-vr {
    left: 2%;
    top: 38%;
}

.balloon-vr::after {
    left: 16px;
    bottom: -8px;
}

.balloon-ai {
    left: 28%;
    top: 28%;
    animation-delay: -0.9s;
}

.balloon-ai::after {
    right: 16px;
    bottom: -8px;
}

.balloon-unity {
    right: 18%;
    top: 2%;
    animation-delay: -0.5s;
}

.balloon-unity::after {
    left: 16px;
    bottom: -8px;
}

.balloon-games {
    right: 1%;
    top: 42%;
    animation-delay: -1.1s;
}

.balloon-games::after {
    right: 16px;
    bottom: -8px;
}

.balloon-blender {
    right: 9%;
    bottom: 33%;
    animation-delay: -1.3s;
}

.balloon-blender::after {
    right: 18px;
    top: -8px;
    transform: rotate(225deg);
}

.balloon-figma {
    right: 32%;
    top: 60%;
    animation-delay: -2.7s;
}

.balloon-figma::after {
    left: 18px;
    bottom: -8px;
}

.balloon-c {
    right: 15%;
    top: 42%;
    animation-delay: -1.1s;
}

.balloon-c::after {
    right: 16px;
    bottom: -8px;
}

.balloon-web {
    left: 15%;
    top: 62%;
    animation-delay: -1.1s;
}

.balloon-web::after {
    right: 16px;
    bottom: -8px;
}

.balloon-mob {
    left: 25%;
    top: 52%;
    animation-delay: -0.1s;
}

.balloon-mob::after {
    right: 16px;
    bottom: -8px;
}

@keyframes balloonBob {
0%, 100% {
    translate: 0 0;
}

50% {
    translate: 0 -8px;
}
}

@media (max-width: 980px) {
.hero-layout-v10 {
    grid-template-columns: 1fr;
    gap: 26px;
}

.hero-copy-v10 {
    margin-left: 0;
    max-width: 560px;
}

.hero-moodboard {
    min-height: 560px;
}
}

@media (max-width: 720px) {
.hero-cover-v10 {
    min-height: 980px;
}

.hero-copy-v10 {
    padding: 20px;
}

.hero-moodboard {
    min-height: 640px;
    border-radius: 24px;
}

.hero-photo-card {
    border-radius: 18px;
    border-width: 3px;
}

.photo-1 {
    left: 5%;
    top: 10%;
    width: 28%;
    height: 24%;
}

.photo-2 {
    left: 33%;
    top: 3%;
    width: 24%;
    height: 17%;
}

.photo-3 {
    right: 6%;
    top: 12%;
    width: 28%;
    height: 26%;
}

.photo-4 {
    left: 8%;
    bottom: 18%;
    width: 32%;
    height: 26%;
}

.hero-balloon {
    font-size: 16px;
    padding: 6px 10px;
    border-width: 2px;
}
}

.realm-title.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.realm-title-icon {
    display: inline-grid;
    place-items: center;
    width: clamp(46px, 4.5vw, 68px);
    height: clamp(46px, 4.5vw, 68px);
    border: 3px solid #111;
    border-radius: 18px;
    background: #fff;
    box-shadow: 4px 4px 0 #111;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: 1;
    transform-origin: center;
    animation: titleIconOrbit 4.8s ease-in-out infinite;
}

.icon-games .realm-title-icon {
    animation-duration: 3.9s;
}

.icon-vr .realm-title-icon {
    background: #eef6ff;
}

.icon-games .realm-title-icon {
    background: #fff0ea;
}

.icon-models .realm-title-icon {
    background: #f4efff;
}

@keyframes titleIconOrbit {
0%, 100% {
    transform: translateY(0) rotate(0deg);
}

25% {
    transform: translateY(-6px) rotate(10deg);
}

50% {
    transform: translateY(-2px) rotate(0deg);
}

75% {
    transform: translateY(-8px) rotate(-10deg);
}
}

.hero-cover-v10::before,
.hero-cover-v10::after {
    display: none !important;
}

.hero-cover-v10 > img {
    display: none !important;
}

.hero-layout-v10 {
    padding: clamp(18px, 3.4vw, 34px) 0;
    align-items: start;
}

.hero-copy-v10 {
    position: relative;
    z-index: 5;
}

.hero-moodboard {
    min-height: clamp(480px, 54vw, 560px);
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    isolation: isolate;
}

.hero-moodboard::before {
    display: none !important;
}

.hero-balloon {
    border-radius: 999px;
}

.hero-balloon::after {
    display: none !important;
}

.hero-photo-card {
    border-radius: 24px;
    box-shadow: 7px 7px 0 #111;
}

.photo-1 {
    left: 2%;
    top: 7%;
    width: 22%;
    height: 34%;
    transform: rotate(-8deg);
    z-index: 2;
}

.photo-2 {
    left: 24%;
    top: 0;
    width: 18%;
    height: 22%;
    transform: rotate(7deg);
    z-index: 4;
    animation-delay: -0.8s;
}

.photo-3 {
    right: 10%;
    top: 8%;
    width: 26%;
    height: 38%;
    transform: rotate(8deg);
    z-index: 3;
    animation-delay: -1.2s;
}

.photo-4 {
    left: 35%;
    bottom: 0%;
    width: 20%;
    height: 36%;
    transform: rotate(5deg);
    z-index: 5;
    animation-delay: -1.8s;
}

.balloon-vr {
    left: 0;
    top: 41%;
}

.balloon-ai {
    left: 27%;
    top: 26%;
    animation-delay: -0.9s;
}

.balloon-unity {
    right: 13%;
    top: 0;
    animation-delay: -0.5s;
}

.balloon-games {
    right: -1%;
    top: 46%;
    animation-delay: -1.1s;
}

@media (max-width: 980px) {
.hero-layout-v10 {
    padding-top: 80px;
}

.hero-moodboard {
    min-height: 560px;
}
}

@media (max-width: 720px) {
.realm-title.with-icon {
    gap: 10px;
}

.hero-cover-v10 {
    min-height: 980px;
}

.hero-layout-v10 {
    padding-top: 80px;
}

.hero-moodboard {
    min-height: 640px;
}

.photo-1 {
    left: 0;
    top: 10%;
    width: 31%;
    height: 29%;
}

.photo-2 {
    left: 24%;
    top: 1%;
    width: 23%;
    height: 17%;
}

.photo-3 {
    right: 3%;
    top: 12%;
    width: 31%;
    height: 28%;
}

.photo-4 {
    left: 5%;
    bottom: 16%;
    width: 35%;
    height: 26%;
}
}

.hero-section,
.portal-map,
.portfolio-realm,
.life-section,
.skill-lab,
.simple-journey,
.contact-section {
    position: relative;
}

.photo-7 {
    left: 45%;
    top: 28%;
    width: 21%;
    height: 30%;
    transform: rotate(-3deg);
    z-index: 7;
    animation-delay: -1.5s;
}

@media (max-width: 720px) {
.hero-moodboard {
    min-height: 690px;
}

.photo-7 {
    left: 41%;
    top: 31%;
    width: 26%;
    height: 24%;
}
}

.hero-moodboard .hero-photo-card,
.hero-moodboard .hero-photo-card:hover,
.hero-moodboard .hero-photo-card:focus,
.hero-moodboard .hero-photo-card:focus-within {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

.hero-moodboard .hero-photo-card img,
.hero-moodboard .hero-photo-card:hover img,
.hero-moodboard .hero-photo-card:focus img,
.hero-moodboard .hero-photo-card:focus-within img {
    opacity: 1 !important;
    visibility: visible !important;
    filter: contrast(1.02) saturate(0.98) !important;
    transform: none !important;
}

.hero-moodboard .hero-photo-card {
    pointer-events: none;
}

.hero-section {
    padding-bottom: clamp(18px, 3vw, 34px);
}

.hero-plane-route {
    position: relative;
    width: min(94%, 1380px);
    height: clamp(108px, 11vw, 150px);
    margin: clamp(6px, 1.2vw, 18px) auto 0;
    pointer-events: none;
    z-index: 2;
}

.hero-plane-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
}

.hero-plane-path {
    fill: none !important;
    stroke: black;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16 18;
    opacity: 0.95;
    animation: heroPlaneDash 1.15s linear infinite;
}

.hero-plane-icon-white {
    fill: #ffffff;
    stroke: #111;
    stroke-width: 4;
    stroke-linejoin: round;
}

.hero-plane-icon-yellow {
    fill: yellow;
    stroke: #111;
    stroke-width: 4;
    stroke-linejoin: round;
}

.hero-plane-art {
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes heroPlaneDash {
from {
    stroke-dashoffset: 0;
}

to {
    stroke-dashoffset: -34;
}
}

@media (max-width: 980px) {
.hero-plane-route {
    width: 96%;
    height: 132px;
    margin-top: 4px;
}

.hero-plane-path {
    stroke-width: 4.5;
    stroke-dasharray: 14 16;
}
}

@media (max-width: 720px) {
.hero-plane-route {
    width: 98%;
    height: 110px;
    margin-top: 0;
}

.hero-plane-path {
    stroke-width: 3.5;
    stroke-dasharray: 11 13;
}
}

@media (prefers-reduced-motion: reduce) {
.hero-plane-path {
    animation: none !important;
}
}

.life-card.food-card {
    grid-column: 1 / -1;
    grid-row: span 2;
    overflow: visible;
    padding: clamp(20px, 3vw, 34px);
    background: radial-gradient(circle at 10% 15%, rgba(255, 228, 92, 0.36), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(255, 59, 48, 0.14), transparent 26%),
        linear-gradient(135deg, #fffef8, #fff7d6);
}

.food-card > p {
    max-width: 760px;
}

.cook-wall {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: center;
    gap: clamp(18px, 2.6vw, 42px);
    min-height: clamp(420px, 42vw, 620px);
    margin-top: 34px;
    padding: clamp(28px, 4vw, 60px);
    border: 3px dashed rgba(17, 17, 17, 0.42);
    border-radius: 34px;
    background: linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
        rgba(255, 255, 255, 0.42);
    background-size: 24px 24px;
}

.cook-print {
    --rot: -4deg;
    --y: 0px;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 12px 12px 16px;
    background: #fffdf4;
    border: 2px solid #111;
    box-shadow: 7px 7px 0 #111,
        0 18px 34px rgba(0, 0, 0, 0.15);
    transform: translateY(var(--y)) rotate(var(--rot));
    transition: transform 0.22s ease, box-shadow 0.22s ease, z-index 0.22s ease;
}

.cook-print::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    width: 64px;
    height: 22px;
    transform: translateX(-50%) rotate(-5deg);
    background: rgba(255, 228, 92, 0.75);
    border: 1.5px solid rgba(17, 17, 17, 0.34);
    box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.14);
    z-index: 3;
}

.cook-print img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 2px solid #111;
    background: #eee;
}

.cook-print figcaption {
    padding-top: 10px;
    text-align: center;
}

.cook-print figcaption span {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--red);
    text-transform: uppercase;
}

.cook-print figcaption strong {
    display: block;
    color: black;
    font-size: clamp(5px, .8vw, 14px);
    line-height: 0.92;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.cook-print:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1;
    --rot: -8deg;
    --y: 28px;
}

.cook-print:nth-child(2) {
    grid-column: 5 / span 3;
    grid-row: 1;
    --rot: 7deg;
    --y: -18px;
}

.cook-print:nth-child(3) {
    grid-column: 8 / span 4;
    grid-row: 1;
    --rot: -5deg;
    --y: 20px;
}

.cook-print:nth-child(4) {
    grid-column: 2 / span 4;
    grid-row: 2;
    --rot: 8deg;
    --y: -10px;
}

.cook-print:nth-child(5) {
    grid-column: 6 / span 3;
    grid-row: 2;
    --rot: -7deg;
    --y: 26px;
}

.cook-print:nth-child(6) {
    grid-column: 9 / span 4;
    grid-row: 2;
    --rot: 6deg;
    --y: -12px;
}

.cook-featured {
    z-index: 4;
}

.cook-print:hover {
    z-index: 20;
    transform: translateY(calc(var(--y) - 12px)) rotate(0deg) scale(1.045);
    box-shadow: 11px 11px 0 #111,
        0 26px 46px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px)and (max-width: 1024px) {
.life-card.food-card {
    grid-column: 1 / -1;
    overflow: hidden;
}

.cook-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    gap: 22px;
}

.cook-print,
.cook-print:nth-child(1),
.cook-print:nth-child(2),
.cook-print:nth-child(3),
.cook-print:nth-child(4),
.cook-print:nth-child(5),
.cook-print:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    --y: 0px;
}

.cook-print:nth-child(odd) {
    --rot: -5deg;
}

.cook-print:nth-child(even) {
    --rot: 5deg;
}
}

@media (max-width: 720px)and (max-width: 1024px) {
.life-card.food-card {
    grid-column: span 1;
}

.cook-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
}

.cook-print {
    padding: 8px 8px 12px;
    box-shadow: 5px 5px 0 #111,
            0 14px 24px rgba(0, 0, 0, 0.14);
}

.cook-print::before {
    width: 46px;
    height: 17px;
    top: -10px;
}

.cook-print figcaption span {
    font-size: 9px;
}

.cook-print figcaption strong {
    font-size: clamp(17px, 5vw, 22px);
}
}

@media (max-width: 420px) {
.cook-wall {
    gap: 12px;
    padding: 14px;
}

.cook-print {
    padding: 7px 7px 10px;
}
}

.pet-card {
    overflow: visible;
}

.life-photo.pet-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: center;
    gap: 14px;
    min-height: 230px;
    padding: 18px 14px;
    margin: 14px 0 18px;
    font-size: initial;
    overflow: visible;
}

.pet-print {
    --rot: -5deg;
    width: min(100%, 142px);
    margin: 0;
    padding: 8px 8px 12px;
    background: #fffdf4;
    border: 2px solid #111;
    box-shadow: 5px 5px 0 #111,
        0 12px 24px rgba(0, 0, 0, 0.14);
    transform: rotate(var(--rot));
    transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0.2s ease;
}

.pet-print:nth-child(1) {
    --rot: -7deg;
    translate: -4px 8px;
}

.pet-print:nth-child(2) {
    --rot: 6deg;
    translate: 4px -8px;
}

.pet-print::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 46px;
    height: 17px;
    transform: translateX(-50%) rotate(-4deg);
    background: rgba(255, 228, 92, 0.74);
    border: 1.5px solid rgba(17, 17, 17, 0.32);
    z-index: 3;
}

.pet-print img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 2px solid #111;
    background: #eee;
}

.pet-print figcaption {
    padding-top: 8px;
    text-align: center;
}

.pet-print figcaption span {
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--red);
    text-transform: uppercase;
}

.pet-print figcaption strong {
    display: block;
    color: black;
    font-size: clamp(5px, .8vw, 14px);
    line-height: 0.92;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pet-print:hover {
    z-index: 10;
    transform: rotate(0deg) translateY(-6px) scale(1.05);
    box-shadow: 7px 7px 0 #111,
        0 18px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 420px) {
.life-photo.pet-duo {
    gap: 10px;
    padding: 14px 10px;
}

.pet-print {
    width: min(100%, 126px);
    padding: 7px 7px 10px;
}

.pet-print figcaption strong {
    font-size: 17px;
}
}

.places-card {
    overflow: visible;
    background: radial-gradient(circle at 12% 18%, rgba(37, 99, 255, 0.14), transparent 24%),
        radial-gradient(circle at 88% 70%, rgba(255, 228, 92, 0.28), transparent 26%),
        #fff;
}

.places-card > p {
    max-width: 720px;
}

.place-wall {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 28px);
    align-items: center;
    min-height: clamp(320px, 30vw, 460px);
    margin-top: 28px;
    padding: clamp(22px, 3vw, 42px);
    border: 3px dashed rgba(17, 17, 17, 0.42);
    border-radius: 30px;
    background: linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
        rgba(255, 255, 255, 0.5);
    background-size: 24px 24px;
}

.place-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}

.place-print {
    --rot: -4deg;
    --y: 0px;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 10px 10px 14px;
    background: #fffdf4;
    border: 2px solid #111;
    box-shadow: 6px 6px 0 #111,
        0 16px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(var(--y)) rotate(var(--rot));
    transition: transform 0.22s ease, box-shadow 0.22s ease, z-index 0.22s ease;
}

.place-print::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    width: 54px;
    height: 19px;
    transform: translateX(-50%) rotate(-5deg);
    background: rgba(255, 228, 92, 0.75);
    border: 1.5px solid rgba(17, 17, 17, 0.34);
    box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.14);
    z-index: 3;
}

.place-print img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 2px solid #111;
    background: #eee;
}

.place-print figcaption {
    padding-top: 8px;
    text-align: center;
}

.place-print figcaption span {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--red);
    text-transform: uppercase;
}

.place-print figcaption strong {
    display: block;
    color: black;
    font-size: clamp(5px, .8vw, 14px);
    line-height: 0.92;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.place-print:nth-child(1),
.place-print:nth-child(2),
.place-print:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 190px;
    justify-self: center;
}

.place-print:hover {
    z-index: 20;
    transform: translateY(calc(var(--y) - 10px)) rotate(0deg) scale(1.045);
    box-shadow: 10px 10px 0 #111,
        0 24px 42px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
.place-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
}

.place-print,
.place-print:nth-child(1),
.place-print:nth-child(2),
.place-print:nth-child(3),
.place-print:nth-child(4),
.place-print:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    --y: 0px;
}

.place-print:nth-child(odd) {
    --rot: -5deg;
}

.place-print:nth-child(even) {
    --rot: 5deg;
}
}

@media (max-width: 720px)and (max-width: 1024px) {
.place-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
}

.place-print {
    padding: 8px 8px 12px;
}

.place-print::before {
    width: 44px;
    height: 16px;
    top: -10px;
}

.place-print figcaption strong {
    font-size: clamp(16px, 5vw, 22px);
}
}

.skill-lab.software-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 64px);
    margin: 92px 0;
    background: radial-gradient(circle at 12% 20%, rgba(255, 228, 92, 0.26), transparent 24%),
        radial-gradient(circle at 88% 70%, rgba(37, 99, 255, 0.22), transparent 26%),
        #111;
    color: #fff;
    box-shadow: 8px 8px 0 var(--red);
}

.skill-lab.software-banner .realm-kicker {
    color: var(--yellow);
}

.software-banner .realm-header {
    position: relative;
    z-index: 2;
}

.software-marquee {
    --marquee-speed: 32s;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: clamp(28px, 4vw, 46px);
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 30px;
    background: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        #181818;
    background-size: 24px 24px;
    box-shadow: 7px 7px 0 var(--red);
}

.software-marquee::before,
.software-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(50px, 10vw, 150px);
    z-index: 4;
    pointer-events: none;
}

.software-marquee::before {
    left: 0;
    background: linear-gradient(to right, #181818, transparent);
}

.software-marquee::after {
    right: 0;
    background: linear-gradient(to left, #181818, transparent);
}

.software-track {
    display: flex;
    width: max-content;
    gap: clamp(16px, 2vw, 30px);
    padding: clamp(22px, 3vw, 38px);
    animation: softwareSlide var(--marquee-speed) linear infinite;
}

.software-item {
    flex: 0 0 auto;
    width: clamp(90px, 9vw, 140px);
    height: clamp(90px, 9vw, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: inherit;
    transform: rotate(var(--r, -1deg));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.software-item:nth-child(odd) {
    --r: -2deg;
}

.software-item:nth-child(even) {
    --r: 2deg;
}

.software-item img {
    width: clamp(58px, 6vw, 92px);
    height: clamp(58px, 6vw, 92px);
    object-fit: contain;
    display: block;
}

.software-item span {
    display: none;
}

.software-item:nth-child(odd) {
    --r: -1.5deg;
}

.software-item:nth-child(even) {
    --r: 1.5deg;
}

.software-item span {
    font-family: "Bangers", sans-serif;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 0.95;
    letter-spacing: 0.6px;
    text-align: center;
    text-transform: uppercase;
}

@keyframes softwareSlide {
from {
    transform: translateX(0);
}

to {
    transform: translateX(-50%);
}
}

@media (max-width: 980px) {
.software-marquee {
    --marquee-speed: 28s;
}

.software-item {
    width: 140px;
    min-height: 128px;
}
}

@media (max-width: 720px) {
.skill-lab.software-banner {
    border-radius: 22px;
    box-shadow: 5px 5px 0 #111;
}

.software-marquee {
    --marquee-speed: 24s;
    border-radius: 22px;
}

.software-track {
    gap: 14px;
    padding: 18px;
}

.software-item {
    width: 118px;
    min-height: 112px;
    padding: 14px;
    border-radius: 18px;
}

.software-item img {
    width: 46px;
    height: 46px;
}

.software-item span {
    font-size: 20px;
}
}

@media (prefers-reduced-motion: reduce) {
.software-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
}
}

@media (max-width: 930px) {
    body.menu-open {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.site-footer {
    margin: 80px 0 24px;
    padding: 22px 26px;
    border: 4px solid #111;
    border-radius: 999px;
    background: #fff;
    box-shadow: 6px 6px 0 #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 900;
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

.site-footer strong {
    font-family: "Bangers", sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
}

@media (max-width: 1100px) {
    .about-content {
        order: 1;
    }

    .about-photo {
        order: 2;
    }

    .arrow-guide,
    .arrow-guide-second {
        display: none;
    }

    .about-section {
        gap: 34px;
        margin-top: 22px !important;
    }

    .about-photo-holder {
        display: none;
    }

    .hero-layout-v10 {
        padding-bottom: 4px !important;
    }

    .hero-section {
        padding-bottom: 0 !important;
    }

    .hero-plane-route {
        width: 100%;
        height: 56px !important;
        margin: -6px auto 0 !important;
    }

    .hero-plane-svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .cook-wall,
    .place-wall {
        gap: 14px;
    }

    .cook-print,
    .pet-print,
    .place-print {
        padding: 8px;
    }

    .cook-print figcaption strong,
    .pet-print figcaption strong,
    .place-print figcaption strong {
        font-size: clamp(12px, 3.6vw, 16px) !important;
        line-height: 0.95;
        letter-spacing: 0.2px;
    }

    .cook-print figcaption span,
    .pet-print figcaption span,
    .place-print figcaption span {
        font-size: 9px !important;
        line-height: 1;
    }

    .site-footer {
        margin: 48px 0 18px;
        padding: 18px;
        border-radius: 26px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 13px;
    }

    .site-footer strong {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .life-board {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .life-card,
    .life-card.big,
    .life-card.wide,
    .life-card.food-card,
    .pet-card,
    .places-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-width: 0;
    }

    .life-card.food-card {
        overflow: hidden;
    }

    .cook-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
        gap: 22px;
        padding: 24px;
    }

    .cook-print,
    .cook-print:nth-child(1),
    .cook-print:nth-child(2),
    .cook-print:nth-child(3),
    .cook-print:nth-child(4),
    .cook-print:nth-child(5),
    .cook-print:nth-child(6) {
        grid-column: auto !important;
        grid-row: auto !important;
        --y: 0px;
    }
}
