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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(ellipse at bottom, #312603 0%, #090A0F 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated starfield background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    transform: rotate(0deg);
    z-index: 0;
}

.stars {
    background-image: 
        radial-gradient(3px 3px at 20px 30px, #D4AF37, transparent),
        radial-gradient(2px 2px at 40px 70px, #D4AF37, transparent),
        radial-gradient(1px 1px at 90px 40px, #D4AF37, transparent),
        radial-gradient(1px 1px at 130px 80px, #D4AF37, transparent),
        radial-gradient(2px 2px at 160px 30px, #D4AF37, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
}

.stars2 {
    background-image: 
        radial-gradient(2px 2px at 40px 60px, #D4AF37, transparent),
        radial-gradient(1px 1px at 120px 50px, #D4AF37, transparent),
        radial-gradient(1px 1px at 190px 90px, #D4AF37, transparent),
        radial-gradient(1px 1px at 60px 20px, #D4AF37, transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: stars 30s linear infinite;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 10px 10px, #D4AF37, transparent),
        radial-gradient(1px 1px at 150px 150px, #D4AF37, transparent),
        radial-gradient(1px 1px at 60px 150px, #D4AF37, transparent),
        radial-gradient(1px 1px at 175px 50px, #D4AF37, transparent),
        radial-gradient(2px 2px at 100px 75px, #D4AF37, transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: stars 40s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.page-header {
    text-align: center;
    margin: 60px 0 80px 0;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 249, 76, 0.575);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.team-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid #d4af3788;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: left 0.6s;
}

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

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 152, 48, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px #D4AF37;
}

.avatar-container {
    margin-bottom: 25px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4AF37;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.avatar:hover {
    border-color: #FF8C00;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.placeholder-text {
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
}

.avatar-placeholder:hover {
    border-color: #FF8C00;
    transform: scale(1.05);
}

.member-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: #D4AF37;
}

.member-role {
    color: #a88204;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #d4af37a4;
    background: #d4af371e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #D4AF37 100%);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #D4AF37;
}

.page-footer {
    text-align: center;
    margin-top: auto;
    padding: 40px 0;
    border-top: 1px solid #d4af3760;
}

.footer-text {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #FF8C00;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .team-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .avatar, .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .placeholder-text {
        font-size: 9px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
}