/* Abstract gradient + fluid shapes style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-ui: "Inter", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;

    --bg-0: #0b1020;
    --bg-1: #121a35;
    --bg-2: #1b2550;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.14);
    --line: rgba(255, 255, 255, 0.18);
    --line-strong: rgba(255, 255, 255, 0.32);

    --text: #f5f7ff;
    --text-dim: #d5dcff;
    --text-muted: #a9b4e8;

    --g1: #7c3aed;
    --g2: #06b6d4;
    --g3: #22c55e;
    --g4: #f59e0b;
    --g5: #ec4899;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 24px 72px rgba(0, 0, 0, 0.3);

    --pop-green: #34d399;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(1400px 900px at -10% -20%, rgba(124, 58, 237, 0.5), transparent 55%),
        radial-gradient(1200px 700px at 110% -10%, rgba(6, 182, 212, 0.45), transparent 55%),
        radial-gradient(900px 700px at 50% 120%, rgba(34, 197, 94, 0.25), transparent 60%),
        linear-gradient(130deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
    line-height: 1.62;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(14, 20, 42, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(130%);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 20, 42, 0.72);
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.logo-icon {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.7rem;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--g2), var(--g5));
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.28s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 84px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.28) 1px, transparent 1.5px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.22) 1px, transparent 1.5px);
    background-size: 32px 32px, 46px 46px;
}

.grid-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 55% at 30% 20%, rgba(236, 72, 153, 0.26), transparent 70%),
        radial-gradient(55% 60% at 70% 70%, rgba(34, 197, 94, 0.2), transparent 70%);
}

.glow-effect {
    position: absolute;
    width: min(110vw, 820px);
    height: min(90vw, 650px);
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 43% 57% 64% 36% / 42% 35% 65% 58%;
    background: linear-gradient(130deg, rgba(124, 58, 237, 0.45), rgba(6, 182, 212, 0.4), rgba(236, 72, 153, 0.35));
    filter: blur(46px);
    animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 43% 57% 64% 36% / 42% 35% 65% 58%;
        transform: translateX(-50%) scale(1);
    }
    50% {
        border-radius: 62% 38% 44% 56% / 52% 63% 37% 48%;
        transform: translateX(-50%) scale(1.06);
    }
}

.hero-content {
    max-width: 840px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.35rem;
    padding: 0.42rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.6rem, 8vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.title-word {
    display: block;
    color: #fff;
}

.title-word.highlight {
    background: linear-gradient(100deg, #fff, #dbeafe, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 710px;
    margin: 0 auto 2rem;
    color: var(--text-dim);
    font-size: clamp(0.95rem, 2vw, 1.06rem);
    line-height: 1.78;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.84rem 1.62rem;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--g2), var(--g1));
    box-shadow: 0 10px 28px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
}

.btn-outline {
    color: #fff;
    background: transparent;
    border: 1px solid var(--line-strong);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-box {
    text-align: center;
    padding: 0.95rem 0.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 0.83rem;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.stat-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.mouse {
    width: 18px;
    height: 30px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    position: relative;
}

.mouse::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 5px;
    border-radius: 1px;
    background: #fff;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(7px);
    }
}

section {
    padding: 86px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #e0e7ff;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.72;
}

.games-section,
.team-section,
.news-section {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.games-showcase {
    margin-bottom: 2.9rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

.game-media {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

.game-1 { background: linear-gradient(135deg, #7c3aed, #06b6d4, #22c55e); }
.game-2 { background: linear-gradient(135deg, #818cf8, #22d3ee); }
.game-3 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.game-4 { background: linear-gradient(135deg, #ec4899, #a855f7); }
.game-5 { background: linear-gradient(135deg, #22c55e, #f59e0b); }

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 16, 32, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.game-media:hover .game-overlay { opacity: 1; }
.game-media:hover .game-image { transform: scale(1.03); }

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.7rem;
}

.game-badge.featured {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.12));
    border-color: var(--line-strong);
}

.play-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-info {
    padding: 1.75rem 1.55rem;
}

.game-meta {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
}

.game-platform,
.game-year {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.game-title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.game-genre {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e9d5ff;
    margin-bottom: 0.75rem;
}

.game-description {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.72;
    margin-bottom: 1rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.feature-tag {
    font-family: var(--font-mono);
    font-size: 0.53rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.55rem;
}

.game-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.games-grid,
.team-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 0.95rem;
}

.game-card,
.team-member,
.news-card,
.info-card,
.social-media,
.contact-form,
.position-item,
.value-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.game-card,
.team-member,
.news-card {
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.game-card:hover,
.team-member:hover,
.news-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.game-card .game-image { height: 148px; }
.game-content { padding: 1.05rem 1.1rem 1.2rem; }
.game-card .game-title { font-size: 1.02rem; }
.game-card .game-description { font-size: 0.85rem; }

.game-link,
.news-link {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
}

.game-link:hover,
.news-link:hover { color: #e9d5ff; }

.studio-section,
.careers-section,
.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-content,
.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.studio-description,
.careers-description,
.member-bio,
.news-excerpt,
.info-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.72;
}

.studio-description,
.careers-description {
    margin-bottom: 0.8rem;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.value-item {
    text-align: center;
    padding: 1rem 0.65rem;
}

.value-icon {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.value-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.value-item p {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.studio-visual {
    position: relative;
}

.studio-image,
.careers-image {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.studio-image {
    background: linear-gradient(140deg, #7c3aed, #06b6d4, #22c55e);
}

.careers-image {
    background: linear-gradient(140deg, #ec4899, #7c3aed, #06b6d4);
}

.floating-card {
    position: absolute;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10px; right: -6px; }
.card-2 { bottom: 52px; left: -10px; animation-delay: 1s; }
.card-3 { top: 40%; right: -12px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.card-icon {
    color: #e9d5ff;
}

.team-member {
    padding: 1.3rem;
    text-align: center;
}

.member-photo {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.member-role {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e9d5ff;
    margin-bottom: 0.45rem;
}

.member-social a {
    display: inline-flex;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
}

.member-social a:hover {
    border-color: var(--line-strong);
}

.open-positions {
    margin: 1.4rem 0;
}

.open-positions h3 {
    font-size: 1.04rem;
    margin-bottom: 0.58rem;
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
    margin-bottom: 0.95rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.95rem;
}

.position-info h4 {
    font-size: 0.88rem;
    margin-bottom: 0.12rem;
}

.position-location {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-muted);
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    height: 154px;
}

.news-1 { background: linear-gradient(135deg, #7c3aed, #06b6d4); }
.news-2 { background: linear-gradient(135deg, #ec4899, #a855f7); }
.news-3 { background: linear-gradient(135deg, #22c55e, #06b6d4); }

.news-content {
    padding: 1.05rem 1.1rem;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.32rem;
    display: block;
}

.news-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.news-excerpt {
    margin-bottom: 0.62rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 1.8rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.info-card,
.social-media {
    padding: 1rem;
}

.contact-form {
    padding: 1.15rem;
}

.info-icon {
    font-family: var(--font-mono);
    font-size: 0.84rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.info-card h4,
.social-media h4 {
    font-size: 0.9rem;
    margin-bottom: 0.24rem;
}

.info-card p a {
    color: #fff;
    text-decoration: none;
    word-break: break-all;
}

.info-card p a:hover {
    color: #e9d5ff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.social-link,
.social-icon {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.62rem;
}

.social-link:hover,
.social-icon:hover {
    border-color: var(--line-strong);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.54rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    padding: 0.72rem 0.85rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--line-strong);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 118px;
}

.footer {
    background: rgba(9, 12, 24, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 2.35rem 0 1.15rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.9rem;
    margin-bottom: 1.4rem;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.84rem;
    line-height: 1.58;
    margin: 0.7rem 0 0.9rem;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 0.35rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    max-width: 560px;
}

.footer-column h4 {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.32rem;
}

.footer-column a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.84rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .featured-game,
    .studio-content,
    .careers-content {
        grid-template-columns: 1fr;
    }

    .game-media {
        min-height: 230px;
    }

    .news-card.featured-news {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(11, 16, 32, 0.96);
        border-top: 1px solid var(--line);
        padding: 0.9rem 0 1.35rem;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .games-grid,
    .team-grid,
    .news-grid,
    .studio-values {
        grid-template-columns: 1fr;
    }

    .contact-content,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.45rem;
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 72px 0;
    }

    .hero {
        padding: 96px 16px 64px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .game-actions {
        flex-direction: column;
    }

    .position-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
