@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --primary: #000000;
    --bg-light: #ffffff;
    --bg-soft: #fbfbfb;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.47059;
    font-weight: 400;
    overflow-x: hidden;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-mc { opacity: 0.5; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
    background: #000;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #fff 0%, #f5f5f7 100%);
    overflow: hidden;
}

.hero-badge {
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s 0.2s forwards;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s 0.4s forwards;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Maintenance / Player Count */
.player-count {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

/* Staff Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: #000;
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.staff-avatar img {
    width: 100%;
    image-rendering: pixelated;
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f7;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #f5f5f7;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    margin: 0 15px;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    z-index: 2000;
    transition: var(--transition);
}

.toast.show { bottom: 40px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; letter-spacing: -1px; }
    .team-grid { grid-template-columns: 1fr; }
}
