/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a78bfa;
    --primary-dark: #8b5cf6;
    --primary-light: #c4b5fd;
    --secondary: #c084fc;
    --accent: #f0abfc;
    --accent-yellow: #fde68a;
    --accent-cyan: #67e8f9;
    --bg-primary: #0c0a14;
    --bg-secondary: #12101a;
    --bg-tertiary: #1a1625;
    --text-primary: #faf5ff;
    --text-secondary: #c4b5fd;
    --text-muted: #a78bfa;
    --border-color: rgba(255, 255, 255, 0.08);
    /* Dreamy gradient palette - softer, pastel */
    --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f0abfc 100%);
    --gradient-secondary: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    --gradient-accent: linear-gradient(135deg, #f0abfc 0%, #f9a8d4 100%);
    --gradient-gold: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    --gradient-cyan: linear-gradient(135deg, #67e8f9 0%, #a5f3fc 100%);
    --gradient-mesh: radial-gradient(ellipse 80% 50% at 30% 20%, rgba(167, 139, 250, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 70% 80%, rgba(240, 171, 252, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    --gradient-section: linear-gradient(180deg, rgba(167, 139, 250, 0.04) 0%, transparent 25%, transparent 75%, rgba(240, 171, 252, 0.04) 100%);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(167, 139, 250, 0.25);
    --shadow-glow-pink: 0 0 50px rgba(240, 171, 252, 0.2);
    --shadow-dream: 0 0 80px rgba(167, 139, 250, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dreamy vignette - soft dark edges (applied per-section where needed) */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(12, 10, 20, 0.92) 0%, rgba(12, 10, 20, 0.8) 100%);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), rgba(240, 171, 252, 0.4), transparent);
    pointer-events: none;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(12, 10, 20, 0.98) 0%, rgba(18, 16, 26, 0.95) 100%);
    box-shadow: 0 4px 40px rgba(167, 139, 250, 0.12);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(240, 171, 252, 0.12) 100%);
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.12);
}

.nav-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 0 70px rgba(240, 171, 252, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Dreamy veil - soft overlay */
.dream-veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 35%, rgba(12, 10, 20, 0.5) 100%);
    pointer-events: none;
}

/* Floating stars / sparkles */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(167, 139, 250, 0.5);
    animation: twinkle 4s ease-in-out infinite;
}

.star-1 { left: 10%; top: 20%; animation-delay: 0s; }
.star-2 { left: 25%; top: 60%; animation-delay: 0.5s; width: 2px; height: 2px; }
.star-3 { left: 40%; top: 15%; animation-delay: 1s; }
.star-4 { left: 60%; top: 70%; animation-delay: 1.5s; width: 2px; height: 2px; }
.star-5 { left: 75%; top: 30%; animation-delay: 2s; }
.star-6 { left: 85%; top: 55%; animation-delay: 0.8s; }
.star-7 { left: 15%; top: 75%; animation-delay: 2.5s; width: 2px; height: 2px; }
.star-8 { left: 50%; top: 25%; animation-delay: 1.2s; }
.star-9 { left: 90%; top: 15%; animation-delay: 0.3s; }
.star-10 { left: 30%; top: 45%; animation-delay: 1.8s; width: 2px; height: 2px; }

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    animation: floatDream 25s infinite ease-in-out;
}

.orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.5) 0%, rgba(192, 132, 252, 0.25) 45%, transparent 70%);
    top: -280px;
    left: -280px;
    animation-delay: 0s;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(240, 171, 252, 0.4) 0%, rgba(249, 168, 212, 0.2) 45%, transparent 70%);
    bottom: -220px;
    right: -220px;
    animation-delay: 6s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.4) 0%, rgba(167, 139, 250, 0.2) 50%, transparent 70%);
    top: 45%;
    right: 8%;
    animation-delay: 12s;
}

.orb-4 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.35) 0%, rgba(240, 171, 252, 0.15) 50%, transparent 70%);
    bottom: 25%;
    left: 5%;
    animation-delay: 18s;
}

@keyframes floatDream {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -25px) scale(1.05); }
    50% { transform: translate(-15px, 15px) scale(0.98); }
    75% { transform: translate(25px, 10px) scale(1.02); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(167, 139, 250, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: contentGlow 10s ease-in-out infinite;
}

@keyframes contentGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.12)); }
    50% { filter: drop-shadow(0 0 60px rgba(240, 171, 252, 0.18)); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25) 0%, rgba(240, 171, 252, 0.15) 100%);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--primary-light);
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.2);
    animation: softGlow 6s ease-in-out infinite;
}

@keyframes softGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(167, 139, 250, 0.2); }
    50% { box-shadow: 0 0 60px rgba(240, 171, 252, 0.25); }
}

.badge-arrow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-glow-pink);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(26, 22, 38, 0.9) 0%, rgba(22, 18, 32, 0.95) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(167, 139, 250, 0.35);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(240, 171, 252, 0.1) 100%);
    border-color: rgba(240, 171, 252, 0.45);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.18);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -1px;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), rgba(240, 171, 252, 0.4), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-corporate .stat-number {
    font-size: 22px;
    font-weight: 600;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(167, 139, 250, 0.5);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    background-image: var(--gradient-section);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(240, 171, 252, 0.12) 100%);
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-weight: 500;
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.12);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section - corporate / pharma */
.products-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.97) 50%, var(--bg-secondary) 100%);
    background-image: var(--gradient-section), linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.97) 100%);
}

.products-overview {
    text-align: center;
    margin-bottom: 40px;
}

.products-intro {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.9) 0%, rgba(17, 17, 24, 0.95) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-icon-wrap {
    margin-bottom: 16px;
}

.product-icon {
    display: inline-block;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(240, 171, 252, 0.12) 100%);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.02em;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-link:hover {
    color: var(--accent);
}

/* About Section - corporate */
.about-section {
    background: var(--bg-secondary);
    background-image: var(--gradient-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text .section-title {
    text-align: left;
}

.about-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-points {
    margin-top: 32px;
}

.about-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.point-label {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 100px;
}

.point-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-box {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.95) 0%, rgba(17, 17, 24, 0.98) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.about-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.about-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Games Section */
.games-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.97) 50%, var(--bg-secondary) 100%);
    background-image: var(--gradient-section), linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.97) 100%);
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.featured-game {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid transparent;
    box-shadow: 0 0 50px rgba(167, 139, 250, 0.15), 0 0 100px rgba(240, 171, 252, 0.08);
}

.featured-game::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(240, 171, 252, 0.35), rgba(167, 139, 250, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.game-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f0abfc 100%);
}

.game-2 {
    background: linear-gradient(135deg, #f0abfc 0%, #f9a8d4 50%, #fde68a 100%);
}

.game-3 {
    background: linear-gradient(135deg, #67e8f9 0%, #a5f3fc 50%, #c4b5fd 100%);
}

.game-4 {
    background: linear-gradient(135deg, #6ee7b7 0%, #a5f3fc 50%, #67e8f9 100%);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.game-info {
    max-width: 600px;
}

.game-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f0abfc 0%, #f9a8d4 100%);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(240, 171, 252, 0.35);
}

.game-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.game-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.game-cta {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.game-cta:hover {
    gap: 12px;
    color: var(--primary-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.9) 0%, rgba(17, 17, 24, 0.95) 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), transparent 40%, rgba(240, 171, 252, 0.18));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(167, 139, 250, 0.18);
}

.game-card:hover::before {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(240, 171, 252, 0.4));
}

.game-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.game-overlay-small {
    position: absolute;
    top: 16px;
    right: 16px;
}

.game-badge-small {
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
}

.game-card-content {
    padding: 24px;
}

.game-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.game-card-genre {
    font-size: 13px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 500;
}

.game-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Studio Section */
.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.studio-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.8) 0%, rgba(17, 17, 24, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid transparent;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(240, 171, 252, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.value-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.studio-visual {
    position: relative;
}

.studio-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f0abfc 100%);
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 22, 38, 0.9) 0%, rgba(22, 18, 32, 0.85) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 7s infinite ease-in-out;
    box-shadow: 0 0 35px rgba(167, 139, 250, 0.15);
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.98) 100%);
    background-image: var(--gradient-section), linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 24, 0.98) 100%);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.career-card {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.9) 0%, rgba(17, 17, 24, 0.95) 100%);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.career-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), transparent 50%, rgba(240, 171, 252, 0.18));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(167, 139, 250, 0.15);
}

.career-card:hover::before {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.45), rgba(240, 171, 252, 0.35));
}

.career-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.career-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.career-department {
    font-size: 14px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 500;
}

.career-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.career-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.career-link:hover {
    gap: 12px;
    color: var(--primary);
}

.careers-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(240, 171, 252, 0.06) 100%);
    border-radius: 16px;
    border: 1px solid transparent;
    position: relative;
}

.careers-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(240, 171, 252, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.news-card {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.9) 0%, rgba(17, 17, 24, 0.95) 100%);
    border: 1px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), transparent 50%, rgba(240, 171, 252, 0.18));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 45px rgba(240, 171, 252, 0.12);
}

.news-card:hover::before {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.45), rgba(240, 171, 252, 0.35));
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gradient-primary);
}

.news-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f0abfc 100%);
}

.news-2 {
    background: linear-gradient(135deg, #f0abfc 0%, #f9a8d4 50%, #fde68a 100%);
}

.news-3 {
    background: linear-gradient(135deg, #67e8f9 0%, #a5f3fc 50%, #c4b5fd 100%);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

.news-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    gap: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(10, 10, 15, 0.98) 100%);
    background-image: var(--gradient-section), linear-gradient(180deg, var(--bg-secondary) 0%, rgba(10, 10, 15, 0.98) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-directions-btn {
    margin-bottom: 32px;
    display: inline-flex;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(240, 171, 252, 0.15) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.12);
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-text a.contact-email,
.contact-text a.contact-phone {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a.contact-email:hover,
.contact-text a.contact-phone:hover {
    color: var(--accent);
    text-decoration: underline;
}

.social-media h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(167, 139, 250, 0.25);
}

.contact-form {
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.95) 0%, rgba(17, 17, 24, 0.98) 100%);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid transparent;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(240, 171, 252, 0.3), rgba(167, 139, 250, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.12), 0 0 30px rgba(240, 171, 252, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(12, 10, 20, 0.98) 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.15);
    padding: 64px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), rgba(240, 171, 252, 0.4), transparent);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: start;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badges .badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(240, 171, 252, 0.08) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .studio-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured-news {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .games-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-values {
        grid-template-columns: 1fr;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
