/* mujun.works */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 2rem;
    background: #0a0a0a;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#1a1a1a 1px, transparent 1px), linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.neon-line {
    display: block;
    width: 120px;
    height: 2px;
    background: #39ff14;
    margin: 1rem auto;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
}

.counter {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    color: #39ff14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
    display: block;
    margin-top: 1rem;
}

/* Work Grid Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px;
    min-height: 50vh;
}

.cell {
    background: #111111;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.cell.span-2 {
    grid-column: span 2;
}

.green-border {
    border: 2px solid #39ff14;
    box-shadow: inset 0 0 8px rgba(57, 255, 20, 0.2);
}

.magenta-border {
    border: 2px solid #ff00ff;
    box-shadow: inset 0 0 8px rgba(255, 0, 255, 0.2);
}

.cyan-border {
    border: 2px solid #00ffff;
    box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.2);
}

.cell-id {
    font-family: 'Fira Code', monospace;
    font-size: 0.6rem;
    color: #39ff14;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 4px rgba(57, 255, 20, 0.3);
}

.cell-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.cell-desc {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

/* Statement Section */
.statement {
    padding: 8rem 2rem;
    text-align: center;
    background: #0a0a0a;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.neon-green {
    color: #39ff14;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

/* Credits Section */
.credits {
    text-align: center;
    padding: 4rem 2rem;
    background: #0a0a0a;
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.credit-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.credit {
    font-family: 'Fira Code', monospace;
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 0.05em;
}

.credit::before {
    content: '• ';
    color: #39ff14;
    margin-right: 0.5rem;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #39ff14;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
    }
    50% {
        text-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
    }
    100% {
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .cell.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .cell.span-2 {
        grid-column: span 1;
    }

    .brand {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .statement-text {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
}
