a {
    text-decoration: none;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-link.active {
    color: #00bfff;
}

.nav-link.active::after {
    width: 100%;
}

.members-section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.members-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 224, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #00bfff, #40e0ff, #87ceeb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-items: center;
}

.member-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.03), rgba(64, 224, 255, 0.02));
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfff, #40e0ff, #87ceeb);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 191, 255, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: avatarGlow 3s ease-in-out infinite;
    position: relative;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #00bfff, #40e0ff, #87ceeb, #00bfff);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: gradientShift 2s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(0, 191, 255, 0.2),
            inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 15px 40px rgba(0, 191, 255, 0.3),
            inset 0 2px 15px rgba(255, 255, 255, 0.3);
    }
}

.avatar-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.member-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.member-role {
    color: #00bfff;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.03), rgba(64, 224, 255, 0.02));
    backdrop-filter: blur(15px);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.apply-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.apply-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00bfff, #40e0ff, #87ceeb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.apply-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00bfff, #40e0ff, #87ceeb);
    background-size: 200% 200%;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
    animation: gradientShift 3s ease-in-out infinite;
}

.apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .apply-section {
        padding: 2rem 1rem;
    }
}
/* Member 
Tags */
.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #333;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Tag Colors */
.tag[data-skill="pwn"] { background: #ff6b6b; }
.tag[data-skill="reverse"] { background: #4ecdc4; }
.tag[data-skill="crypto"] { background: #45b7d1; }
.tag[data-skill="forensics"] { background: #96ceb4; }
.tag[data-skill="web"] { background: #feca57; color: #333; }
.tag[data-skill="network"] { background: #ff9ff3; }
.tag[data-skill="osint"] { background: #54a0ff; }
.tag[data-skill="steganography"] { background: #5f27cd; }
.tag[data-skill="pen-testing"] { background: #00d2d3; }
.tag[data-skill="mobile"] { background: #ff6348; }
.tag[data-skill="hardware"] { background: #2f3542; }
.tag[data-skill="blockchain"] { background: #f0932b; }
.tag[data-skill="ai-ml"] { background: #eb4d4b; }
.tag[data-skill="cloud"] { background: #6c5ce7; }
.tag[data-skill="binary"] { background: #a55eea; }
.tag[data-skill="team-lead"] { background: #26de81; }
.tag[data-skill="research"] { background: #fd79a8; }
.tag[data-skill="teaching"] { background: #fdcb6e; color: #333; }
.tag[data-skill="strategy"] { background: #e17055; }

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}