/* Aurora Glass — dark editorial UI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-0: #070b12;
    --bg-1: #0c1220;
    --panel: rgba(18, 26, 42, 0.65);
    --panel-solid: #121a2a;
    --stroke: rgba(148, 163, 184, 0.22);
    --stroke-strong: rgba(94, 234, 212, 0.35);
    --text: #e8eef7;
    --text-muted: #94a3b8;
    --accent: #2dd4bf;
    --accent-2: #a78bfa;
    --accent-3: #fb7185;
    --glow-cyan: 0 0 60px rgba(45, 212, 191, 0.18);
    --glow-violet: 0 0 80px rgba(167, 139, 250, 0.12);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.45);
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Sora", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-0);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 120% 80% at 10% -10%, rgba(45, 212, 191, 0.18), transparent 50%),
        radial-gradient(ellipse 100% 60% at 90% 10%, rgba(167, 139, 250, 0.16), transparent 45%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(251, 113, 133, 0.08), transparent 40%),
        linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    background: rgba(7, 11, 18, 0.55);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--stroke);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(7, 11, 18, 0.82);
    box-shadow: var(--shadow-soft);
    border-bottom-color: rgba(45, 212, 191, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.35rem;
    color: var(--accent);
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.45));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.35rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--stroke);
}

.nav-link.active {
    color: var(--bg-0);
    background: linear-gradient(135deg, var(--accent) 0%, #5eead4 100%);
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 20px 96px;
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.memphis-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: none;
    filter: blur(40px);
    opacity: 0.55;
}

.shape-circle {
    border-radius: 50%;
}

.shape-1 {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -5%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.55), transparent 70%);
}

.shape-2 {
    width: 280px;
    height: 280px;
    top: 45%;
    right: -8%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.5), transparent 70%);
}

.shape-3 {
    width: 220px;
    height: 220px;
    bottom: 12%;
    left: 15%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.35), transparent 70%);
}

.shape-triangle {
    filter: blur(50px);
    opacity: 0.4;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 18%;
    right: 18%;
    background: conic-gradient(from 180deg, rgba(45, 212, 191, 0.4), rgba(167, 139, 250, 0.35));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 22%;
    right: 10%;
    background: conic-gradient(from 90deg, rgba(251, 113, 133, 0.35), rgba(45, 212, 191, 0.25));
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.shape-zigzag {
    display: none;
}

.shape-squiggle {
    width: 360px;
    height: 360px;
    bottom: -10%;
    right: 20%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.2), transparent 65%);
    border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
    animation: floatBlob 14s ease-in-out infinite;
    filter: blur(48px);
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -20px) scale(1.08); }
}

.polka-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.stripes {
    position: absolute;
    inset: 0;
    opacity: 0.04;
}

.stripes-diag {
    background: repeating-linear-gradient(
        -52deg,
        #fff,
        #fff 1px,
        transparent 1px,
        transparent 18px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 8vw, 4.6rem);
    font-weight: 700;
    margin-bottom: 1.35rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #f8fafc 0%, #c4f1f9 35%, #c4b5fd 70%, #fda4af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(120deg, var(--accent) 0%, #5eead4 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    color: #042f2e;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 40px rgba(45, 212, 191, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: var(--stroke);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: rgba(167, 139, 250, 0.45);
    transform: translateY(-2px);
    box-shadow: var(--glow-violet);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.25rem 1.75rem;
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.35rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: bounce 2.4s infinite;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    opacity: 0.85;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Sections */
section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* Services / cards */
.games-section {
    position: relative;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.4) 0%, rgba(7, 11, 18, 0.95) 100%);
    border-top: 1px solid var(--stroke);
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent), transparent);
    opacity: 0.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--panel);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 212, 191, 0.35);
    box-shadow: var(--shadow-soft), var(--glow-cyan);
}

.game-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    position: relative;
}

.game-card:hover .game-placeholder {
    transform: scale(1.04);
}

.game-1 {
    background: linear-gradient(145deg, rgba(45, 212, 191, 0.35), rgba(15, 118, 110, 0.5));
}

.game-2 {
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.35), rgba(91, 33, 182, 0.45));
}

.game-3 {
    background: linear-gradient(145deg, rgba(251, 113, 133, 0.3), rgba(190, 24, 93, 0.45));
}

.game-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 50%);
}

.game-icon {
    font-size: 4.25rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.game-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.game-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.game-badge.new {
    background: rgba(45, 212, 191, 0.2);
    color: #99f6e4;
}

.game-badge.popular {
    background: rgba(167, 139, 250, 0.22);
    color: #ddd6fe;
}

.game-badge.coming {
    background: rgba(251, 113, 133, 0.22);
    color: #fecdd3;
}

.game-content {
    padding: 1.75rem;
}

.game-platforms {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.platform {
    padding: 0.25rem 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid var(--stroke);
}

.game-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.game-genre {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.game-description {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.game-features {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.3rem 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 999px;
    border: 1px solid var(--stroke);
}

.game-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
}

.game-link:hover {
    color: #5eead4;
    gap: 0.65rem;
}

/* About */
.about-section {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.value-item {
    padding: 1.35rem;
    background: var(--panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(14px);
}

.value-item:nth-child(1) { border-left: 3px solid var(--accent); }
.value-item:nth-child(2) { border-left: 3px solid var(--accent-2); }
.value-item:nth-child(3) { border-left: 3px solid var(--accent-3); }
.value-item:nth-child(4) { border-left: 3px solid rgba(148, 163, 184, 0.6); }

.value-item:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: var(--glow-cyan);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.about-visual {
    position: relative;
    height: 440px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.card-1 {
    width: 58%;
    height: 58%;
    top: 0;
    left: 0;
    background: linear-gradient(160deg, rgba(45, 212, 191, 0.35), rgba(7, 11, 18, 0.2));
    z-index: 3;
    box-shadow: var(--shadow-soft);
}

.card-2 {
    width: 58%;
    height: 58%;
    bottom: 0;
    right: 0;
    background: linear-gradient(200deg, rgba(167, 139, 250, 0.35), rgba(7, 11, 18, 0.2));
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.card-3 {
    width: 52%;
    height: 52%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(251, 113, 133, 0.25), rgba(7, 11, 18, 0.15));
    z-index: 1;
}

.about-visual:hover .card-1 {
    transform: translate(-10px, -10px) rotate(-3deg);
}

.about-visual:hover .card-2 {
    transform: translate(10px, 10px) rotate(3deg);
}

.about-visual:hover .card-3 {
    transform: translate(-50%, -50%) scale(1.04);
}

/* Careers (unused in HTML but kept) */
.careers-section {
    background: rgba(12, 18, 32, 0.5);
    border-top: 1px solid var(--stroke);
}

.careers-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.open-positions h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.position-card {
    padding: 1.75rem;
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
}

.position-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-violet);
}

.position-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.position-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.position-type {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(45, 212, 191, 0.15);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.3);
    margin-bottom: 1.25rem;
}

.position-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.position-link:hover {
    color: #5eead4;
}

/* Contact */
.contact-section {
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.35));
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.75;
}

.info-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.info-text a:hover {
    color: #5eead4;
    border-bottom-color: rgba(94, 234, 212, 0.5);
}

.info-note {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.3rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    color: var(--text);
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.65);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(45, 212, 191, 0.45);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.form-group {
    position: relative;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.2) 0%, #04060b 100%);
    padding: 4.5rem 0 1.75rem;
    border-top: 1px solid var(--stroke);
}

.footer .logo {
    color: var(--text);
}

.footer .logo-icon {
    color: var(--accent-2);
    filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.4));
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--text);
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.6;
    font-size: 0.88rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.newsletter-form input {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-sans);
    width: 100%;
    margin-bottom: 0.65rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(167, 139, 250, 0.45);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--stroke);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

/* Featured card subtle ring */
.game-card.featured {
    border-color: rgba(45, 212, 191, 0.28);
}

/* Responsive */
@media (max-width: 968px) {
    .games-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .shape-3, .shape-4, .shape-5 { opacity: 0.35; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: rgba(7, 11, 18, 0.92);
        width: 100%;
        padding: 1.5rem 1.25rem 2rem;
        gap: 0.5rem;
        transition: left 0.35s ease;
        border-bottom: 1px solid var(--stroke);
        backdrop-filter: blur(20px);
    }
    .nav-menu.active { left: 0; }
    .nav-link {
        display: block;
        text-align: center;
        border-radius: var(--radius-md);
    }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 1rem; }
    .values-grid { grid-template-columns: 1fr; }
    .positions-grid { grid-template-columns: 1fr; }
    section { padding: 84px 0; }
    .about-visual { height: 320px; }
}

@media (max-width: 480px) {
    section { padding: 72px 0; }
    .hero { padding: 118px 16px 80px; }
    .hero-stats { flex-direction: column; }
    .contact-form { padding: 1.5rem; }
}
