/* Reset and Base Styles - POP ART */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pop Art palette: bold primaries + black outline */
    --pop-red: #E63946;
    --pop-yellow: #FFD60A;
    --pop-blue: #0066FF;
    --pop-pink: #FF4081;
    --pop-orange: #FF6B35;
    --pop-green: #06D6A0;
    --pop-black: #1a1a1a;
    --pop-white: #FFF8F0;
    --primary-color: var(--pop-red);
    --secondary-color: var(--pop-blue);
    --accent-color: var(--pop-yellow);
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #3d3d3d;
    --text-primary: #FFF8F0;
    --text-secondary: #e0d8d0;
    --text-muted: #a09890;
    --outline: 3px solid var(--pop-black);
    --outline-thick: 4px solid var(--pop-black);
    --gradient-primary: linear-gradient(135deg, var(--pop-red) 0%, var(--pop-pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--pop-yellow) 0%, var(--pop-orange) 100%);
    --gradient-accent: linear-gradient(135deg, var(--pop-blue) 0%, #00D4FF 100%);
    /* Comic-style solid shadows (no blur) */
    --shadow-pop: 6px 6px 0 var(--pop-black);
    --shadow-pop-sm: 4px 4px 0 var(--pop-black);
    --shadow-pop-lg: 8px 8px 0 var(--pop-black);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle halftone background */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 64, 129, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 214, 10, 0.08) 0%, transparent 40%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Pop */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--pop-yellow);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: var(--outline);
    box-shadow: var(--shadow-pop-sm);
}

.navbar.scrolled {
    box-shadow: var(--shadow-pop);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--pop-black);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--pop-red);
    filter: drop-shadow(2px 2px 0 var(--pop-black));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--pop-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pop-red);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--pop-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--pop-black);
    transition: all 0.3s ease;
    border-radius: 0;
}

.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 Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Halftone / Ben-Day dots + stripes - Pop Art */
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, var(--pop-pink) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
}

.grid-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 214, 10, 0.06) 40px,
        rgba(255, 214, 10, 0.06) 80px
    );
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        var(--pop-yellow) 0deg 90deg,
        var(--pop-red) 90deg 180deg,
        var(--pop-blue) 180deg 270deg,
        var(--pop-pink) 270deg 360deg
    );
    border-radius: 50%;
    opacity: 0.08;
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--pop-yellow);
    border: var(--outline);
    border-radius: 0;
    color: var(--pop-black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-pop-sm);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: 2px;
}

.title-word {
    display: block;
    margin-bottom: 0.25rem;
    text-shadow: 4px 4px 0 var(--pop-black);
}

.title-word.highlight {
    color: var(--pop-red);
}

.title-word:not(.highlight) {
    color: var(--pop-white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--pop-red);
    color: var(--pop-white);
    border: var(--outline);
    box-shadow: var(--shadow-pop);
    border-radius: 0;
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--pop-black);
}

.btn-secondary {
    background: var(--pop-yellow);
    color: var(--pop-black);
    border: var(--outline);
    box-shadow: var(--shadow-pop);
    border-radius: 0;
}

.btn-secondary:hover {
    background: var(--pop-orange);
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--pop-black);
}

.btn-outline {
    background: transparent;
    color: var(--pop-yellow);
    border: var(--outline);
    border-radius: 0;
    box-shadow: var(--shadow-pop-sm);
}

.btn-outline:hover {
    background: var(--pop-yellow);
    color: var(--pop-black);
    transform: translate(2px, 2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--pop-yellow);
    text-shadow: 3px 3px 0 var(--pop-black);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--pop-yellow);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 3px solid var(--pop-yellow);
    border-radius: 0;
    position: relative;
    box-shadow: 3px 3px 0 var(--pop-black);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--pop-red);
    border-radius: 0;
    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;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--pop-yellow);
    border: var(--outline);
    border-radius: 0;
    color: var(--pop-black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-pop-sm);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--pop-white);
    text-shadow: 4px 4px 0 var(--pop-black);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Games Section - Pop */
.games-section {
    background: var(--dark-secondary);
    border-top: 6px solid var(--pop-red);
    border-bottom: 6px solid var(--pop-blue);
}

.games-showcase {
    margin-bottom: 6rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--dark-bg);
    border: var(--outline-thick);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-pop-lg);
}

.game-media {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Pop Art flat blocks */
.game-1 {
    background: var(--pop-red);
    background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.game-2 {
    background: var(--pop-pink);
}

.game-3 {
    background: var(--pop-blue);
}

.game-4 {
    background: var(--pop-green);
}

.game-5 {
    background: var(--pop-yellow);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-media:hover .game-overlay {
    opacity: 1;
}

.game-media:hover .game-image {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 0.5rem 1rem;
    background: var(--pop-yellow);
    border: var(--outline);
    border-radius: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--pop-black);
    text-transform: uppercase;
    box-shadow: var(--shadow-pop-sm);
}

.game-badge.featured {
    background: var(--pop-red);
    color: var(--pop-white);
    border-color: var(--pop-black);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--pop-yellow);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pop-black);
    transition: all 0.2s ease;
    border: var(--outline);
    box-shadow: var(--shadow-pop);
}

.play-button:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--pop-black);
}

.game-info {
    padding: 3rem;
}

.game-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.game-platform {
    padding: 0.25rem 0.75rem;
    background: var(--pop-blue);
    border: 2px solid var(--pop-black);
    border-radius: 0;
    color: var(--pop-white);
    font-weight: 700;
}

.game-year {
    padding: 0.25rem 0.75rem;
    background: var(--pop-yellow);
    border: 2px solid var(--pop-black);
    border-radius: 0;
    color: var(--pop-black);
    font-weight: 700;
}

.game-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--pop-white);
    text-shadow: 3px 3px 0 var(--pop-black);
}

.game-genre {
    color: var(--pop-yellow);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: var(--pop-blue);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pop-white);
    border: var(--outline);
    box-shadow: var(--shadow-pop-sm);
}

.game-actions {
    display: flex;
    gap: 1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--dark-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-pop);
    border: var(--outline);
}

.game-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.game-card .game-image {
    height: 200px;
}

.game-content {
    padding: 2rem;
}

.game-card .game-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--pop-white);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.game-card .game-genre {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.game-card .game-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.game-link {
    color: var(--pop-yellow);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-link:hover {
    color: var(--pop-red);
}

/* Studio Section - Pop */
.studio-section {
    background: var(--dark-bg);
    border-top: 6px solid var(--pop-yellow);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.studio-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 0;
    border: var(--outline);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-pop-sm);
}

.value-item:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--pop-yellow);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.studio-visual {
    position: relative;
}

.studio-image {
    width: 100%;
    height: 500px;
    background: var(--pop-red);
    border: var(--outline-thick);
    border-radius: 0;
    box-shadow: var(--shadow-pop-lg);
    background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: 16px 16px;
}

.floating-card {
    position: absolute;
    padding: 1.5rem;
    background: var(--pop-yellow);
    border-radius: 0;
    box-shadow: var(--shadow-pop);
    border: var(--outline);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-text {
    color: var(--pop-black);
    font-weight: 700;
}

.card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 700;
    color: var(--pop-black);
}

/* Team Section - Pop */
.team-section {
    background: var(--dark-secondary);
    border-top: 6px solid var(--pop-pink);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--dark-bg);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    border: var(--outline);
    box-shadow: var(--shadow-pop);
}

.team-member:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.member-photo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 0;
    background: var(--pop-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pop-white);
    border: var(--outline-thick);
    box-shadow: var(--shadow-pop);
}

.member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--pop-white);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.member-role {
    color: var(--pop-yellow);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.member-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-secondary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-social a:hover {
    background: var(--pop-red);
    color: var(--pop-white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

/* Careers Section - Pop */
.careers-section {
    background: var(--dark-bg);
    border-top: 6px solid var(--pop-green);
}

.careers-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.careers-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.open-positions {
    margin: 3rem 0;
}

.open-positions h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--pop-yellow);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--dark-secondary);
    border-radius: 0;
    border: var(--outline);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-pop-sm);
}

.position-item:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.position-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--pop-white);
}

.position-location {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.careers-visual {
    position: relative;
}

.careers-image {
    width: 100%;
    height: 500px;
    background: var(--pop-orange);
    border: var(--outline-thick);
    border-radius: 0;
    box-shadow: var(--shadow-pop-lg);
}

/* News Section - Pop */
.news-section {
    background: var(--dark-secondary);
    border-top: 6px solid var(--pop-yellow);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--dark-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    border: var(--outline);
    box-shadow: var(--shadow-pop);
}

.news-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.news-1 {
    background: var(--pop-red);
}

.news-2 {
    background: var(--pop-blue);
}

.news-3 {
    background: var(--pop-pink);
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

.news-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--pop-white);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--pop-yellow);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    color: var(--pop-red);
}

/* Contact Section - Pop */
.contact-section {
    background: var(--dark-bg);
    border-top: 6px solid var(--pop-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 0;
    border: var(--outline);
    box-shadow: var(--shadow-pop-sm);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--pop-yellow);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-card p a {
    color: var(--pop-yellow);
    text-decoration: none;
    font-weight: 700;
}

.info-card p a:hover {
    color: var(--pop-white);
}

.social-media {
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 0;
    border: var(--outline);
    box-shadow: var(--shadow-pop-sm);
}

.social-media h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--pop-yellow);
    text-shadow: 2px 2px 0 var(--pop-black);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--dark-bg);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--pop-red);
    color: var(--pop-white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--dark-secondary);
    border: var(--outline);
    border-radius: 0;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pop-yellow);
    box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer - Pop */
.footer {
    background: var(--pop-yellow);
    padding: 4rem 0 2rem;
    border-top: var(--outline-thick);
    box-shadow: 0 -6px 0 var(--pop-black);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2.2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-text {
    color: var(--pop-black);
}

.footer-tagline {
    color: var(--pop-black);
    margin: 1.5rem 0;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pop-black);
    border-radius: 0;
    color: var(--pop-yellow);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    border: var(--outline);
    box-shadow: var(--shadow-pop-sm);
}

.social-icon:hover {
    background: var(--pop-red);
    color: var(--pop-white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--pop-black);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
    max-width: 720px;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--pop-black);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--pop-black);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-column ul li a:hover {
    color: var(--pop-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: var(--outline);
    color: var(--pop-black);
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-meta {
    color: var(--pop-black);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-game {
        grid-template-columns: 1fr;
    }
    
    .studio-content,
    .careers-content {
        grid-template-columns: 1fr;
    }
    
    .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: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-values {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-actions {
        flex-direction: column;
    }
    
    .position-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
