/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1a1625;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(168,85,247,0.3); color: #e9d5ff; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px) { .container { padding: 0 1.5rem; } }
@media(min-width:1024px) { .container { padding: 0 2rem; } }

.text-purple { color: #a855f7; }
.text-emerald { color: #34d399; }
.text-blue { color: #60a5fa; }

/* --- Animations --- */
@keyframes fadeUp { from { opacity:0; transform:translateY(25px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleUp { from { opacity:0; transform:scale(.92) translateY(15px); } to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.5; } }

.fade-in { opacity: 0; animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(26,22,37,.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168,85,247,.15);
    transition: background .3s;
}
.navbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1rem;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
@media(min-width:640px) { .navbar-inner { padding: 0 1.5rem; } }

.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.navbar-brand-icon {
    width: 36px; height: 36px; border-radius: 8px; background: #7c3aed;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.navbar-brand-text { font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; display: none; }
@media(min-width:640px) { .navbar-brand-text { display: block; } }

.navbar-links { display: none; gap: 1.5rem; }
@media(min-width:768px) { .navbar-links { display: flex; } }

.nav-link {
    color: #d1d5db; font-size: .875rem; font-weight: 500;
    padding: .4rem .6rem; border-radius: .3rem; transition: color .3s;
}
.nav-link:hover { color: #c084fc; }

/* Hamburger */
.navbar-toggle {
    display: flex; align-items: center; justify-content: center;
    padding: .5rem; background: none; border: none; color: #9ca3af;
}
@media(min-width:768px) { .navbar-toggle { display: none; } }

.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
    display: block; height: 2px; background: currentColor; border-radius: 2px;
    transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile {
    display: none; padding: .5rem 1rem 1rem;
    background: #1a1625; border-bottom: 1px solid rgba(168,85,247,.15);
}
.navbar-mobile.open { display: flex; flex-direction: column; gap: .25rem; }
@media(min-width:768px) { .navbar-mobile { display: none !important; } }
.navbar-mobile .nav-link { padding: .6rem .5rem; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 6rem 0 4rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, #1a1625, #2a1b3d 50%, #1a1625);
    opacity: .9;
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(120px);
    animation: pulse 5s ease-in-out infinite;
}
.hero-orb-purple { top: 20%; left: 20%; width: 22rem; height: 22rem; background: rgba(147,51,234,.2); }
.hero-orb-green { bottom: 20%; right: 20%; width: 22rem; height: 22rem; background: rgba(16,185,129,.1); animation-delay: .8s; }

.hero-content {
    position: relative; z-index: 10; max-width: 1200px;
    margin: 0 auto; padding: 0 1.5rem; text-align: center; width: 100%;
}
.hero-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    font-size: 3rem; font-weight: 900; letter-spacing: -.02em; margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 40px rgba(168,85,247,.3));
}
@media(min-width:768px) { .hero-logo { font-size: 4.5rem; } }

.hero-subtitle {
    font-size: 1.15rem; color: #d1d5db; max-width: 38rem; margin: 0 auto 2.5rem;
    font-weight: 300; line-height: 1.8;
}
@media(min-width:768px) { .hero-subtitle { font-size: 1.35rem; } }

.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 1.8rem; border-radius: 9999px; font-weight: 600; font-size: .95rem;
    transition: all .3s; border: none;
}
.btn-primary {
    background: #9333ea; color: #fff;
    box-shadow: 0 8px 25px rgba(147,51,234,.25);
}
.btn-primary:hover { background: #a855f7; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(147,51,234,.35); }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: rgba(255,255,255,.4); transform: translateY(-2px); }

/* ============================================================
   GAMES SECTION
   ============================================================ */
.section-games { padding: 5rem 0; background: #1a1625; }

.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
@media(min-width:768px) { .section-header h2 { font-size: 2.5rem; } }
.section-header p { color: #9ca3af; font-size: 1.05rem; max-width: 50rem; }

.section-header-center { text-align: center; }
.section-header-center p { margin: 0 auto; }

.games-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px) { .games-grid { grid-template-columns: 1fr 1fr; } }

.game-card {
    background: #14111d; border-radius: 1.5rem; overflow: hidden;
    border: 1px solid rgba(255,255,255,.05); transition: all .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.3); display: flex; flex-direction: column;
}
.game-card:hover { border-color: rgba(168,85,247,.2); transform: translateY(-4px); }

.game-card-image { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.game-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.game-card:hover .game-card-image img { transform: scale(1.05); }

.badge {
    position: absolute; top: 1.2rem; left: 1.2rem;
    padding: .3rem .8rem; border-radius: 9999px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    backdrop-filter: blur(8px);
}
.badge-emerald { background: rgba(16,185,129,.2); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
.badge-blue { background: rgba(59,130,246,.2); color: #60a5fa; border: 1px solid rgba(59,130,246,.25); }

.game-card-body { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.game-platform { display: flex; align-items: center; gap: .5rem; color: #9ca3af; font-size: .8rem; font-weight: 500; margin-bottom: .8rem; }
.game-card-body h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: .8rem; transition: color .3s; }
.game-card:hover .game-card-body h3 { color: #c084fc; }
.game-card-body > p { color: #9ca3af; line-height: 1.7; font-size: .95rem; flex-grow: 1; margin-bottom: 1.5rem; }

.game-card-footer { padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.05); }

.btn-store {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.5rem; border-radius: .8rem; font-weight: 700; font-size: .85rem;
    color: #fff; transition: all .3s;
}
.btn-store-emerald { background: #059669; box-shadow: 0 6px 20px rgba(5,150,105,.2); }
.btn-store-emerald:hover { background: #10b981; transform: translateY(-2px); }
.btn-store-blue { background: #2563eb; box-shadow: 0 6px 20px rgba(37,99,235,.2); }
.btn-store-blue:hover { background: #3b82f6; transform: translateY(-2px); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.section-team { padding: 5rem 0; background: #14111d; }

.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.team-card {
    background: #1a1625; padding: 1.8rem; border-radius: 1.3rem;
    border: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden;
    transition: border-color .35s;
}
.team-card:hover { border-color: rgba(168,85,247,.2); }
.team-card-glow {
    position: absolute; right: -2rem; top: -2rem; width: 7rem; height: 7rem;
    background: rgba(147,51,234,.05); border-radius: 50%; filter: blur(40px);
    transition: background .3s;
}
.team-card:hover .team-card-glow { background: rgba(147,51,234,.12); }

.team-card-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
.team-avatar {
    width: 4.5rem; height: 4.5rem; border-radius: .8rem; overflow: hidden;
    border: 2px solid rgba(255,255,255,.05); box-shadow: 0 10px 30px rgba(0,0,0,.3); flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card-header h3 { font-size: 1.3rem; font-weight: 700; }
.team-role { color: #c084fc; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .7rem; }
.team-desc { color: #d1d5db; margin-bottom: 2rem; line-height: 1.7; font-style: italic; font-size: .95rem; }

.team-stats {
    padding: 1.2rem; border-radius: .8rem; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.05);
}
.team-stats-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: .8rem; color: #9ca3af; font-weight: 500; font-size: .9rem;
}
.team-stats-row strong { font-size: 1.15rem; }

.btn-portfolio {
    display: flex; width: 100%; padding: .85rem; border-radius: .6rem;
    font-weight: 700; align-items: center; justify-content: center; gap: .5rem;
    transition: all .3s; border: none; font-size: .9rem;
}
.btn-portfolio-emerald { background: rgba(5,150,105,.1); color: #34d399; }
.btn-portfolio-emerald:hover { background: #059669; color: #fff; }
.btn-portfolio-purple { background: rgba(147,51,234,.1); color: #c084fc; }
.btn-portfolio-purple:hover { background: #9333ea; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0f0d15; padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand p { color: #9ca3af; font-size: .85rem; line-height: 1.7; max-width: 18rem; margin: 1rem 0; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.2rem; }
.footer-email {
    display: inline-flex; align-items: center; gap: .5rem;
    color: #9ca3af; font-size: .85rem; font-weight: 500; transition: color .3s;
}
.footer-email:hover { color: #c084fc; }

.footer h4 {
    color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    font-size: .65rem; margin-bottom: 1rem;
}
.footer ul li { margin-bottom: .6rem; }
.footer ul a { color: #9ca3af; font-size: .85rem; transition: color .3s; }
.footer ul a:hover { color: #a855f7; }

.footer-stores { display: flex; flex-direction: column; gap: .5rem; }
.store-badge {
    display: flex; align-items: center; gap: .6rem;
    padding: .6rem; background: rgba(255,255,255,.05); border-radius: .6rem;
    border: 1px solid rgba(255,255,255,.05); font-size: .75rem; font-weight: 700;
    color: #d1d5db; transition: background .3s; max-width: 180px;
}
.store-badge:hover { background: rgba(255,255,255,.1); }
.store-icon-gp {
    width: 1.6rem; height: 1.6rem; border-radius: .35rem; background: #34A853;
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem; font-weight: 900; color: #fff;
}

.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.05); text-align: center; }
.footer-bottom p { color: #6b7280; font-size: .7rem; }

/* Portfolio-page simplified footer */
.footer-simple {
    display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.footer-logo-link { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.1rem; }
.footer-copy { color: #6b7280; font-size: .7rem; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio { min-height: 100vh; background: #14111d; padding: 6rem 0 4rem; }

.back-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: #9ca3af; margin-bottom: 2.5rem; font-weight: 500; font-size: .9rem; transition: color .3s;
}
.back-link:hover { color: #c084fc; }
.back-link.back-link-emerald:hover { color: #34d399; }
.back-link svg { transition: transform .3s; }
.back-link:hover svg { transform: translateX(-3px); }

/* Profile header */
.portfolio-header {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    margin-bottom: 3rem; padding: 2rem; border-radius: 1.3rem;
    background: #1a1625; border: 1px solid rgba(255,255,255,.05);
    box-shadow: 0 15px 40px rgba(0,0,0,.3); position: relative; overflow: hidden;
    text-align: center;
}
@media(min-width:768px) {
    .portfolio-header { flex-direction: row; text-align: left; }
}

.portfolio-header-glow {
    position: absolute; top: 0; right: 0; width: 14rem; height: 14rem;
    border-radius: 50%; filter: blur(50px); margin-right: -7rem; margin-top: -7rem;
}
.glow-emerald { background: rgba(16,185,129,.06); }
.glow-purple { background: rgba(168,85,247,.06); }

.portfolio-avatar {
    width: 7rem; height: 7rem; border-radius: 50%; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.4); flex-shrink: 0; position: relative; z-index: 2;
}
.avatar-emerald { border: 3px solid rgba(16,185,129,.25); }
.avatar-purple { border: 3px solid rgba(168,85,247,.25); }
.portfolio-avatar img { width: 100%; height: 100%; object-fit: cover; }

.portfolio-info { position: relative; z-index: 2; }
.portfolio-info h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: .3rem; }
@media(min-width:768px) { .portfolio-info h1 { font-size: 2.2rem; } }

.portfolio-role { font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: .8rem; }
.role-emerald { color: rgba(52,211,153,.6); }
.role-purple { color: rgba(192,132,252,.6); }

.portfolio-bio { color: #9ca3af; max-width: 38rem; line-height: 1.7; font-size: .9rem; }
.portfolio-count { color: #6b7280; font-size: .85rem; margin-top: .6rem; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.filter-btn {
    padding: .4rem .9rem; border-radius: 9999px; font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
    background: rgba(255,255,255,.05); color: #9ca3af;
    border: 1px solid rgba(255,255,255,.08); transition: all .25s;
}
.filter-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.filter-btn.active { color: #fff; }
.filter-btn.active.filter-emerald { background: #059669; border-color: #059669; }
.filter-btn.active.filter-purple { background: #7c3aed; border-color: #7c3aed; }

/* Projects grid */
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .projects-grid { grid-template-columns: 1fr 1fr 1fr; } }

.project-card {
    background: #1a1625; border-radius: 1rem; overflow: hidden;
    border: 1px solid rgba(255,255,255,.05); transition: all .35s; cursor: pointer;
    opacity: 0; animation: fadeUp .5s ease forwards;
}
.project-card.card-emerald:hover { border-color: rgba(16,185,129,.3); }
.project-card.card-purple:hover { border-color: rgba(168,85,247,.3); }

.project-card-image { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card-image img { transform: scale(1.06); }

.year-badge {
    position: absolute; top: .8rem; right: .8rem;
    background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
    padding: .2rem .6rem; border-radius: 9999px;
    font-size: .7rem; font-weight: 700; border: 1px solid rgba(255,255,255,.1);
    color: #d1d5db; display: flex; align-items: center; gap: .3rem;
}

.project-card-body { padding: 1.2rem; }
.project-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; transition: color .3s; }
.card-emerald:hover .project-card-body h3 { color: #34d399; }
.card-purple:hover .project-card-body h3 { color: #c084fc; }

.engine-badge {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .65rem; padding: .2rem .5rem; border-radius: .35rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: .6rem;
}
.engine-unity { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.engine-unreal { background: rgba(59,130,246,.1); color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
.engine-renpy { background: rgba(236,72,153,.1); color: #f472b6; border: 1px solid rgba(236,72,153,.2); }
.engine-pygame { background: rgba(234,179,8,.1); color: #fbbf24; border: 1px solid rgba(234,179,8,.2); }

.project-desc {
    color: #9ca3af; font-size: .8rem; margin-bottom: .8rem; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.project-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
    font-size: .55rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
    padding: .2rem .4rem; border-radius: .2rem; background: rgba(255,255,255,.05); color: #6b7280;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    align-items: center; justify-content: center; padding: 1rem;
}
@media(min-width:768px) { .modal-overlay { padding: 2rem; } }
.modal-overlay.open { display: flex; }

.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.88); backdrop-filter: blur(4px);
    animation: fadeIn .25s ease;
}

.modal-container {
    background: #1a1625; width: 100%; max-width: 56rem; max-height: 90vh;
    border-radius: 1.3rem; overflow: hidden; position: relative; z-index: 10;
    border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column;
    animation: scaleUp .3s ease;
}

.modal-close {
    position: absolute; top: 1rem; right: 1rem; padding: .4rem;
    background: rgba(0,0,0,.5); color: #fff; border-radius: 50%; border: none;
    z-index: 20; transition: background .3s; display: flex;
}
.close-emerald:hover { background: #059669; }
.close-purple:hover { background: #7c3aed; }

.modal-scroll { overflow-y: auto; }

.modal-grid { display: grid; grid-template-columns: 1fr; }
@media(min-width:768px) { .modal-grid { grid-template-columns: 1fr 1fr; } }

.modal-info { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.modal-category {
    display: flex; align-items: center; gap: .4rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; margin-bottom: .3rem;
}
.cat-emerald { color: #34d399; }
.cat-purple { color: #c084fc; }

.modal-title { font-size: 1.8rem; font-weight: 700; margin-bottom: .8rem; }

.modal-meta { display: flex; flex-wrap: wrap; gap: .6rem; }
.meta-item {
    display: inline-flex; align-items: center; gap: .35rem;
    color: #9ca3af; background: rgba(255,255,255,.05); padding: .3rem .6rem;
    border-radius: .35rem; border: 1px solid rgba(255,255,255,.05); font-size: .8rem;
}
.meta-item strong { color: #fff; font-weight: 500; }

.modal-section-title {
    font-size: 1rem; font-weight: 700; padding-left: .8rem; margin-bottom: .4rem;
}
.bar-emerald { border-left: 3px solid #10b981; }
.bar-purple { border-left: 3px solid #a855f7; }

.modal-description { color: #9ca3af; line-height: 1.7; font-size: 1rem; }

.modal-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.modal-tag {
    padding: .35rem .8rem; background: rgba(255,255,255,.05); border-radius: 9999px;
    font-size: .8rem; font-weight: 500; color: #d1d5db;
}

.modal-download { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.btn-download {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.5rem; border-radius: .8rem; font-weight: 700; color: #fff;
    transition: all .3s; border: none; font-size: .9rem;
}
.btn-dl-emerald { background: #059669; box-shadow: 0 6px 20px rgba(5,150,105,.2); }
.btn-dl-emerald:hover { background: #10b981; transform: translateY(-2px); }
.btn-dl-purple { background: #7c3aed; box-shadow: 0 6px 20px rgba(124,58,237,.2); }
.btn-dl-purple:hover { background: #8b5cf6; transform: translateY(-2px); }

.modal-screenshots {
    background: rgba(0,0,0,.4); padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
}
.modal-screenshots h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.modal-screen {
    border-radius: .8rem; overflow: hidden; border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.modal-screen img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
