.elementor-90 .elementor-element.elementor-element-12c68ba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cc2c9b9 */.streamer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.streamer {
    position: relative;
    width: 150px;
    height: 150px;
    border: 2px solid #9c27b0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background-color: #fff;
}

.streamer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.streamer a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.streamer .name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.streamer .social-links {
    margin-top: 10px;
}

.streamer .social-links a {
    margin: 0 5px;
    color: #9c27b0;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.streamer .social-links a:hover {
    color: #6a1b9a;
}

.dj-item {
    border: 1px solid #EE00FC;
    border-radius: 8px;
    overflow: hidden;
    width: calc(25% - 10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.dj-item:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.2); /* Fioletowa poświata */
    background-color: rgba(0, 0, 0, 0.9); /* Czarny z 10% opacity */
}

.dj-item img {
    width: 100%;
    height: auto;
}

.dj-item .name {
    padding: 10px;
    font-weight: bold;
    color: white; /* Zmieniony kolor na biały */
}

.dj-item .comments {
    padding: 10px;
    color: #555;
}

/* Styl dla ikony profilu i napisu "Profil" */
.profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px; /* Zmniejszony rozmiar tekstu */
    color: #6a0dad;
    transition: color 0.3s ease;
}

.profile-link:hover {
    color: #6a0dad;
}

.profile-link .icon {
    margin-right: 5px;
}

.profile-link .text {
    color: white;
    font-size: 14px; /* Zmniejszony rozmiar tekstu */
}/* End custom CSS */