body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
}

.welcome-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-top: 30px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    padding: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.welcome-img:hover {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

header h1 {
    color: #333;
    margin: 25px 0 10px;
    font-weight: 800;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    border-radius: 2px;
}

header h2 {
    color: #666;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

#container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    text-decoration: none;
    color: #333;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 8px 8px 16px #d9d9d9,
                -8px -8px 16px #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.project-link:hover {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 15px 15px 30px #d9d9d9,
                -15px -15px 30px #ffffff;
    color: #ff69b4;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 180, 0.1),
        transparent
    );
    transition: 0.6s;
}

.project-link:hover::before {
    left: 100%;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    transition: width 0.4s ease;
}

.project-link:hover::after {
    width: 100%;
}

/* Team Section Styles */
#team-section {
    margin: 60px auto;
    padding: 50px 30px;
    max-width: 1000px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 255, 0.9) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

#team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
    z-index: 0;
}

#team-section h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-member {
    position: relative;
    display: inline-block;
}

.circle-link {
    display: block;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-link:hover {
    transform: scale(1.15) rotate(5deg);
}

.circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    display: block;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    padding: 5px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    transition: all 0.4s ease;
}

.circle-link:hover .circle-img {
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.5);
}

.surname {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.circle-link:hover .surname {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer */
footer {
    margin: 60px 0 30px;
    padding: 30px;
    color: #666;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

footer a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    transition: width 0.3s ease;
}

footer a:hover {
    color: #ff1493;
}

footer a:hover::after {
    width: 100%;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff69b4, #ff1493);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff1493, #ff69b4);
}

/* Static background without movement */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    /* Animation removed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 30px 20px;
        margin: 30px 20px;
    }
    
    .project-link {
        padding: 20px 15px;
        font-size: 16px;
        min-height: 100px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .circle-img {
        width: 140px;
        height: 140px;
    }
    
    #team-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
    
    #team-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #container {
        grid-template-columns: 1fr;
    }
    
    .welcome-img {
        width: 120px;
        height: 120px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    header h2 {
        font-size: 1em;
    }
    
    .team-container {
        gap: 30px;
    }
    
    .circle-img {
        width: 120px;
        height: 120px;
    }
    
    .surname {
        font-size: 14px;
        padding: 10px 20px;
    }
}