/* Speaker Ribbon Styles */
.speaker-card {
    position: relative;
    overflow: hidden;
    padding-top: 15px;
    margin-bottom: 15px;
}

.speaker-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    width: 120px;
    background: var(--neon-pink);
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 0;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(255, 0, 184, 0.4);
    text-transform: uppercase;
}

.speaker-ribbon.seo {
    background: #00B8FF;
    box-shadow: 0 3px 10px rgba(0, 184, 255, 0.4);
}

.speaker-ribbon.ai {
    background: #9900FF;
    box-shadow: 0 3px 10px rgba(153, 0, 255, 0.4);
}

.speaker-ribbon.biznes {
    background: #FFB800;
    box-shadow: 0 3px 10px rgba(255, 184, 0, 0.4);
}

.speaker-ribbon.seo-biznes {
    background: #00C851;
    box-shadow: 0 3px 10px rgba(0, 200, 81, 0.4);
    font-size: 0.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.speaker-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--neon-pink);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.3);
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
