* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-ui: "Zen Maru Gothic", "Segoe UI", sans-serif;
    --font-mono: "M PLUS Rounded 1c", "Segoe UI", sans-serif;
    --font-display: "M PLUS Rounded 1c", "Segoe UI", sans-serif;

    --bg-0: #f6f9ff;
    --bg-1: #eef5ff;
    --bg-2: #e6f0ff;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --line: #2f4f7f;
    --line-soft: #6d8fca;

    --text: #1f2f45;
    --text-dim: #3d5577;
    --text-muted: #6780a7;

    --c1: #4f7cff;
    --c2: #ff7ab6;
    --c3: #7dd3fc;
    --c4: #ffd166;
    --c5: #8dd16b;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 9999px;

    --shadow: 0 8px 0 rgba(47, 79, 127, 0.22), 0 18px 28px rgba(79, 124, 255, 0.18);
    --shadow-lg: 0 10px 0 rgba(47, 79, 127, 0.2), 0 24px 34px rgba(79, 124, 255, 0.2);

    --pop-green: #6cc96a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(1000px 600px at -10% -10%, rgba(125, 211, 252, 0.3), transparent 55%),
        radial-gradient(900px 520px at 110% 0%, rgba(255, 122, 182, 0.23), transparent 55%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
    line-height: 1.7;
    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(246, 249, 255, 0.9);
    border-bottom: 3px solid var(--line);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(246, 249, 255, 0.96);
    box-shadow: var(--shadow);
}

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

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

.logo-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.6rem;
    display: grid;
    place-items: center;
    border: 3px solid var(--line);
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
}

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

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--c2);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.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: 3px;
    border-radius: 3px;
    background: var(--line);
    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.45;
    background-image:
        linear-gradient(rgba(79, 124, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 124, 255, 0.14) 1px, transparent 1px);
    background-size: 34px 34px, 34px 34px;
}

.grid-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(35% 40% at 18% 22%, rgba(255, 122, 182, 0.25), transparent 72%),
        radial-gradient(42% 45% at 82% 72%, rgba(125, 211, 252, 0.24), transparent 72%);
}

.glow-effect {
    position: absolute;
    width: min(110vw, 840px);
    height: min(90vw, 650px);
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 45% 55% 52% 48% / 56% 44% 56% 44%;
    background: linear-gradient(135deg, rgba(79, 124, 255, 0.3), rgba(255, 122, 182, 0.26), rgba(125, 211, 252, 0.28));
    filter: blur(42px);
    animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 45% 55% 52% 48% / 56% 44% 56% 44%;
        transform: translateX(-50%) scale(1);
    }
    50% {
        border-radius: 58% 42% 46% 54% / 48% 60% 40% 52%;
        transform: translateX(-50%) scale(1.05);
    }
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 1.35rem;
    padding: 0.46rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--text);
    border: 3px solid var(--line);
    border-radius: var(--radius-pill);
    background: #fff;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.8rem);
    font-weight: 800;
    line-height: 1.03;
    margin-bottom: 1rem;
    color: var(--text);
}

.title-word {
    display: block;
}

.title-word.highlight {
    color: var(--c1);
    text-shadow: 4px 4px 0 rgba(255, 122, 182, 0.65);
}

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

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

.btn {
    border: 3px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 0.82rem 1.6rem;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-primary {
    color: #fff;
    background: var(--c1);
    box-shadow: 0 6px 0 rgba(47, 79, 127, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--text);
    background: #fff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--text);
    background: #fff;
}

.btn-outline:hover {
    transform: translateY(-2px);
}

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

.stat-box {
    text-align: center;
    padding: 0.95rem 0.4rem;
    border: 3px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 0.83rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

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

.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.1em;
    color: var(--text-muted);
}

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

.mouse::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    border-radius: 1px;
    background: var(--c2);
    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: var(--c2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    margin-bottom: 0.5rem;
    color: var(--text);
}

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

.games-section,
.team-section,
.news-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(238, 245, 255, 0.9));
    border-top: 3px solid var(--line);
    border-bottom: 3px solid var(--line);
}

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

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    background: #fff;
    border: 3px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    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, var(--c1), var(--c3)); }
.game-2 { background: linear-gradient(135deg, var(--c2), var(--c4)); }
.game-3 { background: linear-gradient(135deg, var(--c3), var(--c5)); }
.game-4 { background: linear-gradient(135deg, var(--c4), var(--c2)); }
.game-5 { background: linear-gradient(135deg, var(--c5), var(--c1)); }

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 47, 69, 0.2);
    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(31, 47, 69, 0.7);
    border: 2px solid #fff;
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.7rem;
}

.game-badge.featured {
    background: var(--c2);
}

.play-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(31, 47, 69, 0.6);
    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: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.5rem;
    color: var(--text);
    background: var(--surface-soft);
}

.game-title {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

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

.game-description {
    color: var(--text-dim);
    font-size: 0.92rem;
    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: var(--text);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    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: #fff;
    border: 3px solid var(--line);
    border-radius: var(--radius-md);
}

.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-soft);
}

.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: var(--c1);
    text-decoration: none;
}

.game-link:hover,
.news-link:hover { color: var(--c2); }

.studio-section,
.careers-section,
.contact-section {
    border-top: 3px solid var(--line);
}

.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;
}

.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: var(--c1);
    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: 3px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.studio-image {
    background: linear-gradient(145deg, var(--c1), var(--c2), var(--c3));
}

.careers-image {
    background: linear-gradient(145deg, var(--c5), var(--c3), var(--c1));
}

.floating-card {
    position: absolute;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--line);
    background: #fff;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text);
    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: var(--c2);
}

.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: 3px solid var(--line);
    background: linear-gradient(135deg, var(--c3), #fff);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text);
    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: var(--c2);
    margin-bottom: 0.45rem;
}

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

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

.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, var(--c1), var(--c2)); }
.news-2 { background: linear-gradient(135deg, var(--c2), var(--c4)); }
.news-3 { background: linear-gradient(135deg, var(--c3), var(--c1)); }

.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: var(--c1);
    margin-bottom: 0.25rem;
}

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

.info-card p a {
    color: var(--text);
    text-decoration: none;
    word-break: break-all;
}

.info-card p a:hover {
    color: var(--c2);
}

.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: var(--text);
    border: 2px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.62rem;
}

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

.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: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--text);
    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-soft);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.35);
}

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

.footer {
    background: rgba(240, 246, 255, 0.96);
    border-top: 3px solid var(--line);
    padding: 2.35rem 0 1.15rem;
}

.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;
    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: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--line);
    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(246, 249, 255, 0.98);
        border-top: 3px 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;
    }
}
