/* ============================
   RUMS420 TEAM GAMES — STYLES
   ============================ */

:root {
    --bg: #0a0a0f;
    --bg-2: #11111a;
    --bg-3: #1a1a25;
    --border: #2a2a3a;
    --text: #e0e0e8;
    --text-dim: #8a8a9a;
    --text-dimmer: #5a5a6a;
    --accent: #00ff9d;
    --accent-dim: #00cc7d;
    --accent-2: #00d4ff;
    --warn: #ffb800;
    --danger: #ff4444;
    --glow: 0 0 20px rgba(0, 255, 157, 0.5);
    --glow-soft: 0 0 40px rgba(0, 255, 157, 0.15);
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* CRT overlay effect */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* Custom cursor */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent);
    mix-blend-mode: difference;
}

.cursor-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px var(--accent);
}

a, button {
    cursor: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 18px;
}

.logo-bracket {
    color: var(--accent);
}

.logo-text {
    color: var(--text);
}

.logo-slash {
    color: var(--text-dim);
    margin: 0 4px;
}

.logo-sub {
    color: var(--accent);
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-mono);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: attr(data-text);
    color: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translateY(-2px);
}

.nav-link:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 157, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 100%;
}

.terminal-header {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding-right: 30px;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.hero-content {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    padding: 40px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), transparent);
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-arrow {
    color: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.tag-cursor {
    color: var(--accent);
    animation: blink 1s infinite;
}

.hero-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    color: var(--text);
}

.title-glow {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 30px rgba(0, 255, 157, 0.5); }
    50% { text-shadow: 0 0 50px rgba(0, 255, 157, 0.8); }
}

.year-highlight {
    color: var(--accent-2);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 0 var(--accent);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--accent);
    transform: translateY(-2px);
}

.btn-bracket {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.btn-primary:hover .btn-bracket {
    opacity: 1;
    transform: translateX(2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-download {
    background: var(--bg-2);
    color: var(--accent);
    border: 1px solid var(--accent);
    position: relative;
}

.btn-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-download:hover::before {
    transform: scaleX(1);
}

.btn-download:hover {
    color: var(--bg);
}

.btn-download > * {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero logo */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 255, 157, 0.4));
    transition: filter 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 50px rgba(0, 255, 157, 0.7));
}

.hero-logo-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.monitor-frame,
.monitor-screen,
.monitor-stand,
.monitor-base,
.screen-content,
.screen-line,
.screen-out,
.cursor-blink { display: none; }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
    z-index: 2;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================
   MARQUEE
   ============================ */
.marquee {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.marquee-item:hover {
    color: var(--accent);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================
   SECTIONS
   ============================ */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.section-num {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* ============================
   ABOUT
   ============================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.text-glow {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.about-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: var(--bg-2);
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.about-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.stat-bar {
    height: 2px;
    background: var(--bg-3);
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 1.5s ease;
}

/* ============================
   PROJECTS
   ============================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.projects-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .projects-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

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

.project-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 255, 157, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 157, 0.1);
}

.project-card:hover::after {
    opacity: 1;
}

.project-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-3), var(--bg));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 157, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    display: block;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-image-placeholder {
    font-family: var(--font-mono);
    color: var(--accent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.7;
}

.placeholder-num {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}

.placeholder-label {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-dim);
}

.project-version {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: 1px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent);
    border: 1px solid var(--accent);
    z-index: 3;
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

.status-released {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.status-dev {
    background: var(--warn);
    color: var(--bg);
}

.status-jam {
    background: var(--accent-2);
    color: var(--bg);
}

.project-body {
    padding: 24px;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-year {
    color: var(--accent);
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
}

.project-card:hover .project-title {
    color: var(--accent);
}

.project-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 3px 8px;
    background: var(--bg);
    color: var(--text-dim);
    border: 1px solid var(--border);
    letter-spacing: 0.5px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.project-link:hover {
    gap: 12px;
    text-shadow: 0 0 8px var(--accent);
}

.project-link-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--accent);
    background: rgba(0, 255, 157, 0.08);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.project-link-download:hover {
    background: var(--accent);
    color: var(--bg);
    text-shadow: none;
    box-shadow: var(--glow);
    gap: 12px;
}

/* ============================
   TEAM
   ============================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.team-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-3), var(--bg));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 157, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
}

.team-photo-placeholder {
    font-size: 80px;
    opacity: 0.5;
    z-index: 1;
}

.team-id {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border: 1px solid var(--accent);
    z-index: 2;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.team-bio {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-skills span {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 3px 8px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

/* ============================
   AWARDS
   ============================ */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.award-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 24px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.award-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: -8px 0 20px rgba(0, 255, 157, 0.1);
}

.award-item:hover::before {
    transform: scaleY(1);
}

.award-medal {
    font-size: 48px;
    line-height: 1;
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.award-year {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.award-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.award-event {
    font-size: 13px;
    color: var(--text-dim);
}

.award-project {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    color: var(--text);
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

/* ============================
   CONTACT
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-headline {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-desc {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-mono);
    font-size: 13px;
}

.contact-channel:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    background: var(--bg-3);
}

.channel-label {
    color: var(--text-dim);
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 600;
}

.channel-value {
    color: var(--text);
    font-weight: 500;
}

.contact-channel:hover .channel-value {
    color: var(--accent);
}

/* Form */
.contact-form {
    background: var(--bg-2);
    border: 1px solid var(--border);
    overflow: hidden;
}

.form-header {
    background: var(--bg-3);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    font-weight: 600;
}

.form-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    transition: all 0.2s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dimmer);
}

.btn-form {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.3));
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-right {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .nav-container {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .nav-links {
        gap: 16px;
        order: 3;
        width: 100%;
        flex: 1 1 100%;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    .nav-link {
        font-size: 11px;
    }
    .nav-status {
        display: none;
    }
    .hero {
        padding: 140px 0 60px;
    }
    .hero-content {
        padding: 24px;
    }
    .hero-title {
        font-size: 36px;
    }
    .section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .about-subtitle,
    .contact-headline {
        font-size: 26px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .award-item {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }
    .award-project {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    body {
        cursor: auto;
    }
    .cursor-glow {
        display: none;
    }
    .btn,
    a,
    button {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
}
