.promotional_wall-title {
    text-align: center;
    font-size: 3.5rem;
    padding: 24px 40px;
    margin: 15px auto 0px;
    background-color: #0a0a0a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    width: fit-content;
    color: white;
    position: relative;
    z-index: 4;
    flex-wrap: wrap;
    justify-content: center;
}

.promotional_wall-subtitle {
    text-align: center;
    font-size: 1rem;
    padding: 12px 20px;
    background-color: #0a0a0a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 5px 10px;
    color: white;
    position: relative;
    z-index: 4;
    display: inline-block;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.profile-header .promotional_wall-title {
    margin-bottom: 15px;
}

.subtitle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.promotional_wall-title p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

/* User Category Styles */
.user-category {
    margin-bottom: 80px;
}

.category-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 40px auto;
    padding: 12px 30px;
    background-color: #0a0a0a;
    border: 1px solid white;
    border-radius: 8px;
    width: fit-content;
    position: relative;
}

.category-title::before,
.category-title::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 30vw;
    transform: translateY(-50%);
}

.category-title::before {
    right: 100%;
    margin-right: 15px;
    background: linear-gradient(to right, transparent, #ffffff);
}

.category-title::after {
    left: 100%;
    margin-left: 15px;
    background: linear-gradient(to left, transparent, #ffffff);
}

/* User Cards Grid */
.user-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* User Card */
.user-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 300px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.user-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Header */
.card-header {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* User Profile Link */
.user-profile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.user-profile-link h3.username {
    color: #ffffff;
    margin: 12px 0 6px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.user-profile-link:hover h3.username {
    color: #ff0080;
}

/* User Avatar */
.user-avatar {
    position: relative;
    margin-bottom: 10px;
}

/* Profile Picture */
.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.788);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.user-card:hover .profile-picture {
    border-color: rgb(255, 255, 255);
    transform: scale(1.05);
}

.profile-picture-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.788);
    transition: all 0.3s ease;
}

.profile-picture-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* User Info */
.user-info {
    text-align: center;
}

.promotion-username-cell {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}

/* Account Type Badges */
.account-type {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-size: 200% auto;
    transition: 0.5s;
    color: white;
}

.account-type.admin {
    background-image: linear-gradient(45deg, #8d33e6, #d75050, #e25afd);
}

.account-type.client {
    background-image: linear-gradient(45deg, #c833e6, #d75050, #e695fd);
}

.account-type.supporter {
    background-image: linear-gradient(45deg, #3342e6, #c350d7, #93a5fd);
}

.account-type.member {
    background-image: linear-gradient(45deg, #87e633, #505ed7, #93fdc2);
}

.user-card:hover .account-type {
    background-position: right center;
}

/* Card Content */
.card-content {
    padding: 20px;
}

/* Social Links */
.user-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.no-socials {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Social links styling */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.social-link.youtube {
    background: linear-gradient(45deg, #c4302b, #ff0000);
}

.social-link.youtube:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-link.twitch {
    background: linear-gradient(45deg, #6441a5, #9146ff);
}

.social-link.twitch:hover {
    box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

.social-link.github {
    background: linear-gradient(45deg, #15421b, #219b21);
}

.social-link.github:hover {
    box-shadow: 0 5px 15px rgba(38, 255, 0, 0.3);
}

.social-link.twitter {
    background: linear-gradient(45deg, #2c2c2c, #444444);
}

.social-link.twitter:hover {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.social-link.kick {
    background: linear-gradient(45deg, #53d442, #0fba00);
}

.social-link.kick:hover {
    box-shadow: 0 5px 15px rgba(78, 255, 71, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #e52776, #ffee31);
}

.social-link.instagram:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 200, 0.3);
}

@media screen and (min-width: 1920px) and (max-width: 1921px) {
    .promotional_wall-title {
        margin-top: 25px;
        font-size: 7rem;
    }

    .promotional_wall-title p {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .promotional_wall-subtitle {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .category-title {
        font-size: 5rem;
        border-radius: 12px;
    }

    .category-title::before, .category-title::after {
        height: 10px;
    }

    .user-cards {
        gap: 40px;
    }

    .user-card {
        width: 400px;
    }

    .profile-picture, .profile-picture-placeholder {
        border: 4px solid white;
        height: 150px;
        width: 150px;
    }

    .promotion-username-cell {
        margin: 10px auto;
        margin-bottom: 15px;
        text-align: center;
        font-size: 2rem;
    }

    .account-type {
        font-size: 1.5rem;
    }

    .user-socials {
        font-size: 1.5rem;
    }

}

@media (max-width: 1200px) {
    .promotional_wall-container {
        margin: 60px 20px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .profile-header {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .subtitle-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .promotional_wall-title {
        font-size: 2.2rem;
        padding: 15px 20px;
        margin: 0px auto 15px;
        text-align: center;
        width: 90%;
        left: 3%;
    }
    
    .promotional_wall-subtitle {
        width: 250px;
        margin: 5px auto;
        display: block;
        box-sizing: border-box;
        left: 6%;
    }
    
    .category-title {
        font-size: 1.5rem;
        padding: 10px 20px;
        background: linear-gradient(45deg, #0a0a0a, #0a0a0a);
        border: 2px solid rgba(255, 255, 255, 0.3);
        margin: 25px auto;
    }
    
    .category-title::before,
    .category-title::after {
        width: 90px !important;
    }
    
    .profile-picture,
    .profile-picture-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .profile-picture-placeholder i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .profile-header {
        max-width: 90% !important;
    }

    .promotional_wall-container {
        padding: 20px 15px;
    }
    
    .promotional_wall-title {
        font-size: 2rem;
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .profile-picture,
    .profile-picture-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .category-title {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .category-title::before,
    .category-title::after {
        width: 15vw;
        height: 1vw;
    }

    .user-category {
        margin-bottom: 25px;
    }
}