body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    background: linear-gradient(135deg, #1a472a, #90a955);
    background-attachment: fixed;
    min-height: unset;
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 30px;
}

@media (max-width: 992px) {
    body {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .details-card {
        width: calc(100% - 60px);
        margin-top: 20px;
    }

    .profile-card {
        width: calc(100% - 60px);
        margin-top: 100px;
    }
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 15px 15px 0px 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 50px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.header-button {
    font-size: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-33%);
    top: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ab {
    border: 2px solid #3897f5;
}

.corbin {
    border: 2px solid #fb58af;
}

.julian {   
    border: 2px solid #b84af8;
}

.matt {
    border: 2px solid #8de55d;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 28px;
    color: #444;
    margin-top: 65px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.profile-location {
    color: #666;
    margin-bottom: 15px;
    font-family: 'Barlow', sans-serif;
    margin-top: 0px;
}

.profile-info {
    color: #666;
    margin-bottom: 15px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    color: #444;
    font-weight: bold;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.stat-label {
    color: #666;
}

.trophy-section {
    background-color: #f8f9fa;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.profile-awards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
}

.stat-title {
    margin-bottom: 5px;
    color: #444;
    font-weight: 500;
}

.award-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-number {
    margin: 0px 0px 0px 0px;
    font-size: 14px;
    color: #444;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image {
    margin: 0px 0px 0px 0px;
    font-size: 14px;
    color: #444;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.award-number img {
    max-height: 40px;
    width: auto;
}

.award-label {
    color: #666;
    font-size: 12px;
}

.show-more-btn {
    background: #2d5a27;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    font-family: 'Barlow', sans-serif;
}

.show-more-btn:hover {
    background: #1a472a;
}

.details-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.profile-location a {
    text-decoration: none;
    color: #666;
}

.profile-location a:hover {
    color: #444;
} 