/* Hero Section */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8));
    }
}

.page-hero p {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Staff Categories */
.staff-section {
    padding: 60px 0;
}

.category-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Staff Grid - Large Cards */
.staff-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.staff-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.staff-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(192, 132, 252, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.staff-card-large:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.staff-card-large:hover::before {
    opacity: 1;
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.staff-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    border: 4px solid var(--primary);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    flex-shrink: 0;
}

.staff-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    flex: 1;
}

.staff-name-large {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.staff-role-large {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.staff-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.staff-description-large {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.staff-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.specialty-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(192, 132, 252, 0.3) 100%);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(168, 85, 247, 0.5);
}

.staff-contact {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.contact-btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.contact-btn.discord:hover {
    background: #4752C4;
    transform: scale(1.05);
}

.contact-btn.minecraft {
    background: rgba(168, 85, 247, 0.2);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.contact-btn.minecraft:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

/* Staff Grid - Regular Cards */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.staff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.staff-role {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.staff-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.staff-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

/* Application Section */
.application-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.application-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 30px;
    padding: 60px;
}

.application-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-box p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.apply-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 42px;
    }

    .staff-grid-large {
        grid-template-columns: 1fr;
    }

    .staff-header {
        flex-direction: column;
        text-align: center;
    }

    .staff-name-large {
        font-size: 28px;
    }

    .category-title {
        font-size: 32px;
    }

    .application-box {
        padding: 40px 20px;
    }
}