body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    background-color: #0a0a0a;
    color: #00ff00;
    overflow-x: hidden;
}

.welcome-img {
    max-width: 200px;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

header h1 {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin: 20px 0;
    font-weight: 700;
}

header h2 {
    color: #aaffaa;
    margin-bottom: 30px;
    font-weight: 300;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    gap: 15px;
    padding: 20px;
}

.project-link {
    display: inline-block;
    margin: 10px;
    padding: 15px 35px;
    text-decoration: none;
    color: #000000;
    background: linear-gradient(145deg, #00ff00, #00cc00);
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #006600, 
                0 0 15px rgba(0, 255, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.project-link:hover {
    background: linear-gradient(145deg, #33ff33, #00ff00);
    transform: translateY(-5px);
    box-shadow: 0 8px 0 #006600, 
                0 0 25px rgba(0, 255, 0, 0.8);
}

.project-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 #006600;
}

/* Brat album aesthetic overlay effect */
.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.project-link:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 599px) {
    body {
        background-color: #050505;
    }
    .project-link {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (min-width: 600px) {
    body {
        background-color: #0a0a0a;
    }
}

/* Team Section Styles */
#team-section {
    margin: 50px auto;
    padding: 30px 20px;
    max-width: 900px;
    border-top: 2px solid #00ff00;
    border-bottom: 2px solid #00ff00;
    background: rgba(0, 20, 0, 0.3);
}

#team-section h3 {
    margin-bottom: 40px;
    color: #00ff00;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    display: inline-block;
}

.circle-link {
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.circle-link:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px #00ff00);
}

.circle-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00ff00;
    display: block;
    background: #000;
    padding: 3px;
}

.surname {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #00ff00;
    padding: 6px 16px;
    border: 1px solid #00ff00;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circle-link:hover .surname {
    opacity: 1;
}

/* Footer */
footer {
    margin: 40px 0 20px;
    padding: 20px;
    color: #aaffaa;
    font-size: 14px;
}

footer a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Add some glitch effect for the Brat aesthetic */
@keyframes glitch {
    0% {
        text-shadow: 1px 0 0 rgba(255, 0, 0, 0.3),
                     -1px 0 0 rgba(0, 255, 255, 0.3);
    }
    100% {
        text-shadow: -1px 0 0 rgba(255, 0, 0, 0.3),
                     1px 0 0 rgba(0, 255, 255, 0.3);
    }
}

header h1 {
    animation: glitch 0.5s infinite alternate;
}

/* Responsive adjustments for team section */
@media (max-width: 599px) {
    .team-container {
        gap: 25px;
    }
    
    .circle-img {
        width: 110px;
        height: 110px;
    }
    
    .surname {
        font-size: 12px;
        bottom: -25px;
        padding: 4px 12px;
    }
    
    #team-section h3 {
        font-size: 22px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
}

::-webkit-scrollbar-thumb:hover {
    background: #33ff33;
}