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

body {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}

.navbar .logo .logo-img {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    max-width: 180px !important;
    transition: opacity 0.2s ease;
    display: block;
    object-fit: contain;
}

.navbar .logo .logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: 'League Spartan', sans-serif;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a1a;
}

/* Main Content */
main {
    margin-top: 100px;
}

.section {
    display: none;
    min-height: calc(100vh - 100px);
    padding: 120px 0 60px 0;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0 20px 60px 20px;
}

.hero h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.hero > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.description {
    max-width: 700px;
    margin: 40px auto 0;
}

.description p {
    font-family: 'League Spartan', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
    letter-spacing: 0.2px;
}

.description p:last-child {
    margin-bottom: 0;
}

.description em {
    font-style: italic;
    color: #444;
    font-weight: 500;
}

.description strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-2px);
}

.member-info h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.member-info p {
    color: #666;
    font-size: 14px;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.game-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.game-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.game-link:hover {
    transform: translateY(-2px);
}

.game-link:hover .game-card {
    transform: none;
}

/* Section Headers */
h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    margin-top: 0;
    text-transform: lowercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
        box-sizing: border-box;
    }
    
    .logo {
        padding: 8px 0;
        min-width: 150px;
        max-width: 150px;
        justify-content: flex-start;
        position: relative;
        box-sizing: border-box;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .navbar .logo .logo-img {
        height: 55px !important;
        max-height: 55px !important;
        max-width: 130px !important;
        object-fit: contain;
    }
    
    .nav-link {
        font-family: 'League Spartan', sans-serif;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    main {
        margin-top: 70px;
    }
    
    .section {
        padding: 80px 0 40px 0;
    }
    
    .hero {
        padding: 0 20px 40px 20px;
    }
    
    .description {
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .description p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .description .intro-text {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .description .closing-text {
        font-size: 16px;
        margin-top: 28px;
    }
    
    .team-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .game-card,
    .team-member {
        padding: 30px 20px;
    }
    
    h2 {
        font-family: 'League Spartan', sans-serif;
        font-size: 2rem;
        font-weight: 600;
        text-transform: lowercase;
    }
}