.wrestling-profile-card {
    width: 300px;
    position: relative;
    border: 5px solid #f4d03f;
    background: #3a3a3a;
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

/* Top Section */
.card-top-section {
    width: 100%;
    height: 160px;
    background: transparent;
    position: relative;
    overflow: visible;
}

.action-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    clip-path: inset(0 0 0 0);
}

/* Logo Bar */
.logo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20 !important;
}

.logo-bar-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #f4d03f;
    z-index: 11 !important;
}

.logo-bar * {
    position: relative;
    z-index: 21;
}

.logo-container {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 22 !important;
}

.logo-left {
    left: 15px;
}

.logo-right {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-container img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.profile-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f4d03f;
    border: 4px solid #f4d03f;
    overflow: hidden;
    z-index: 22 !important;
    position: relative;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.right-section {
    position: absolute;
    right: 15px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.status-label {
    background: transparent;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 44px;
    text-align: center;
    width: 100%;
}

/* Middle Section with Stripes */
.middle-section {
    background: linear-gradient(
        90deg,
        #2a2a2a 0px,
        #2a2a2a 2px,
        #1a1a1a 2px,
        #1a1a1a 4px
    );
    background-size: 4px 100%;
    padding: 12px 15px;
    text-align: center;
}

.athlete-info {
    background: rgba(42, 42, 42, 0.8);
    padding: 8px;
}

.athlete-name {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.school-name {
    color: #ff6600;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.grad-year {
    background: #fff;
    color: #000;
    display: inline-block;
    padding: 3px 12px;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Achievements Section */
.achievements-section {
    background: #2a2a2a;
    padding: 0 0 12px 0;
}

.achievement-banner {
    background: linear-gradient(180deg, #f4d03f 0%, #e6c130 100%);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 6px 15px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.medals-container {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

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

.medal-icon {
    font-size: 32px;
    margin-bottom: 3px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.medal-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.medal-year {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 320px) {
    .wrestling-profile-card {
        width: 100%;
        max-width: 300px;
    }
}