.staff-hero {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 100, 255, 0.1));
            padding: 3rem 0;
            text-align: center;
            border-bottom: 2px solid #00ff88;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .staff-card {
            background: rgba(20, 20, 20, 0.9);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .staff-card:hover {
            transform: translateY(-10px);
            border-color: #00ff88;
            box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
        }

        .staff-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #000;
            font-weight: bold;
            border: 4px solid #00ff88;
        }

        .staff-rank {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .staff-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .staff-title {
            color: #00ff88;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .staff-bio {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .staff-stats {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
        }

        .stat {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .stat .label {
            font-size: 0.8rem;
            color: #888;
        }

        .stat .value {
            font-weight: bold;
            color: #fff;
        }

        .staff-contact {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .contact-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .contact-btn.discord {
            background: #5865F2;
        }

        .contact-btn.steam {
            background: #1b2838;
        }

        .contact-btn.email {
            background: #00ff88;
            color: #000;
        }

        .contact-btn:hover {
            transform: scale(1.1);
        }

        .staff-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 25px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn:hover,
        .category-btn.active {
            background: #00ff88;
            color: #000;
            border-color: #00ff88;
        }

        .management-section {
            margin: 4rem 0;
        }

        .management-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .management-card {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
            border: 2px solid #00ff88;
            border-radius: 15px;
            padding: 2rem;
        }

        .management-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .management-icon {
            width: 60px;
            height: 60px;
            background: #00ff88;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #000;
        }

        .on-duty {
            display: inline-block;
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .on-duty.offline {
            background: rgba(255, 100, 100, 0.2);
            color: #ff6464;
        }

        .application-section {
            background: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            margin: 4rem 0;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .application-btn {
            display: inline-block;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1.5rem;
            transition: all 0.3s;
        }

        .application-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
        }

        .online-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 0.5rem;
        }

        .online-indicator.online {
            background: #00ff88;
            box-shadow: 0 0 10px #00ff88;
        }

        .online-indicator.offline {
            background: #ff6464;
        }
        
        .discord-btn {
            display: inline-block;
            background: #5865F2;
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1.5rem;
            transition: all 0.3s;
        }
        
        .discord-btn:hover {
            background: #4752c4;
            transform: translateY(-2px);
        }
