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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(131, 173, 243, 0.1);
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Splash Screen */
.splash-screen {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 40px 60px;
}

.splash-screen::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 173, 243, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.splash-screen::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(131, 173, 243, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.splash-content {
    text-align: center;
    z-index: 1;
    padding: 40px;
}

.splash-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #83ADF3 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.splash-content p {
    font-size: 1.3rem;
    color: #bbbbbb;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Meet the Lead Section */
#meet-the-lead {
    padding: 80px 40px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

#meet-the-lead h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #83ADF3;
    position: relative;
    display: block;
}

#meet-the-lead h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #83ADF3, transparent);
}

.team-member {
    display: inline-block;
    width: 280px;
    margin: 20px;
    padding: 40px 30px;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid rgba(131, 173, 243, 0.2);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131, 173, 243, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.team-member:hover {
    transform: translateY(-10px);
    border-color: #83ADF3;
    box-shadow: 0 15px 40px rgba(131, 173, 243, 0.3);
    background: rgba(131, 173, 243, 0.1);
}

.team-member h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.team-member:hover h3 {
    color: #83ADF3;
}

.team-member p {
    font-size: 1.1rem;
    color: #bbbbbb;
    font-weight: 300;
}

/* Current Projects Section */
#current-projects {
    padding: 80px 40px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    text-align: center;
}

#current-projects h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #83ADF3;
    position: relative;
    display: block;
}

#current-projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #83ADF3, transparent);
}

.project {
    display: inline-block;
    padding: 40px 60px;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid rgba(131, 173, 243, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.project:hover {
    transform: scale(1.02);
    border-color: #83ADF3;
    box-shadow: 0 10px 30px rgba(131, 173, 243, 0.2);
}

.project h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.join-discord {
    display: inline-block;
    background: linear-gradient(135deg, #83ADF3 0%, #5a8fd6 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 173, 243, 0.3);
}

.join-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 173, 243, 0.5);
    background: linear-gradient(135deg, #5a8fd6 0%, #83ADF3 100%);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    color: #777777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(131, 173, 243, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-content h1 {
        font-size: 2.5rem;
    }
    
    .splash-content p {
        font-size: 1.2rem;
    }
    
    .team-member {
        width: 90%;
        margin: 20px auto;
        display: block;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    #meet-the-lead, #current-projects {
        padding: 60px 20px;
    }
}