/* ===== SHARED MODAL STYLES ===== */

/* Modal Styles */
.creator-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.creator-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 60px rgba(194, 0, 251, 0.3);
}

.modal-header {
    padding: 0;
    border: none;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
    color: white;
}

.creator-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    min-height: 500px;
}

.creator-image-section {
    background: linear-gradient(45deg, var(--accent-color), #8a2be2);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.creator-modal-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.creator-modal-name {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: white;
    font-family: var(--font-1);
}

.creator-modal-category {
    font-size: 16px;
    opacity: 0.9;
    text-align: center;
    margin-top: 8px;
    color: white;
}

.creator-info-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-section h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-1);
    font-weight: 600;
}

.creator-bio {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.socials-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-1);
    font-weight: 600;
}

.social-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.social-stat-item:hover {
    background: rgba(194, 0, 251, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.social-icon.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
}
.social-icon.youtube { 
    background: #ff0000; 
}
.social-icon.tiktok { 
    background: #000000; 
}
.social-icon.twitter { 
    background: #000000; 
}
.social-icon.twitch { 
    background: #9146ff; 
}
.social-icon.kick { 
    background: #000000; 
    color: #53fc18; 
}
.social-icon.linkedin { 
    background: #0077b5; 
}

.social-info {
    flex: 1;
}

.social-platform {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-followers {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .creator-modal-content {
        grid-template-columns: 1fr;
    }

    .creator-image-section {
        border-radius: 20px 20px 0 0;
        padding: 30px 20px;
    }

    .creator-modal-image {
        width: 150px;
        height: 150px;
    }

    .creator-modal-name {
        font-size: 24px;
    }

    .creator-info-section {
        padding: 30px 20px;
    }

    .social-stats {
        grid-template-columns: 1fr;
    }
}