body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(145deg, #ff8c00, #ff4500);
    color: #000000;
    overflow-x: hidden;
}

.welcome-img {
    max-width: 200px;
    border-radius: 15px;
    margin-top: 20px;
    border: 4px solid #000000;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    background-color: #ffffff;
    padding: 5px;
}

header h1 {
    color: #000000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-weight: 900;
    font-size: 2.2em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
    border: 3px solid #000000;
}

header h2 {
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #000000;
    text-transform: uppercase;
}

header h3 {
    color: #000000;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 6px;
    border: 2px solid #000000;
    font-weight: 700;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    max-width: 90%;
    border: 3px solid #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-link {
    display: inline-block;
    margin: 10px;
    padding: 18px 40px;
    text-decoration: none;
    color: #000000;
    background: linear-gradient(145deg, #ff8c00, #ff6b00);
    border: 3px solid #000000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #cc5500, 
                0 0 15px rgba(255, 140, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.project-link:hover {
    background: linear-gradient(145deg, #ff9c20, #ff8c00);
    transform: translateY(-8px);
    box-shadow: 0 12px 0 #cc5500, 
                0 0 25px rgba(255, 140, 0, 0.8);
}

.project-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 #cc5500;
}

/* Strong physical education 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.4),
        transparent
    );
    transition: 0.5s;
}

.project-link:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 599px) {
    body {
        background: linear-gradient(145deg, #ff8c00, #ff4500);
    }
    .project-link {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 160px;
    }
    header h1 {
        font-size: 1.8em;
        padding: 8px 15px;
    }
}

@media (min-width: 600px) {
    body {
        background: linear-gradient(145deg, #ff8c00, #ff4500);
    }
}

/* Team Section Styles */
#team-section {
    margin: 50px auto;
    padding: 30px 20px;
    max-width: 900px;
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#team-section h3 {
    margin-bottom: 40px;
    color: #000000;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    background-color: #ff8c00;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
    border: 3px solid #000000;
}

.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.1);
    filter: drop-shadow(0 0 15px #ff8c00);
}

.circle-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000000;
    display: block;
    background: #ff8c00;
    padding: 3px;
}

.surname {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ff8c00;
    padding: 8px 20px;
    border: 3px solid #ff8c00;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 0 #cc5500;
}

.circle-link:hover .surname {
    opacity: 1;
}

/* Footer */
footer {
    margin: 40px 0 20px;
    padding: 20px;
    color: #000000;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #000000;
}

footer a {
    color: #ff4500;
    text-decoration: none;
    font-weight: 900;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Add strong athletic effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.project-link {
    animation: pulse 2s infinite;
}

/* Power button effect on hover */
.project-link:hover {
    animation: pulse 0.5s infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #ff8c00;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Athletic stripe pattern for background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
    pointer-events: none;
    z-index: -1;
}

/* Strong border for main container */
main {
    padding: 20px;
    position: relative;
}

main::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #000000;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

/* Responsive adjustments for team section */
@media (max-width: 599px) {
    .team-container {
        gap: 25px;
    }
    
    .circle-img {
        width: 120px;
        height: 120px;
    }
    
    .surname {
        font-size: 12px;
        bottom: -30px;
        padding: 6px 15px;
    }
    
    #team-section h3 {
        font-size: 22px;
        padding: 8px 20px;
    }
    
    #team-section {
        margin: 30px auto;
        padding: 20px 15px;
    }
}