/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background: #0a0a0a;
    color: #e6e6fa;
    line-height: 1.6;
}

/* Profile Header */
.profile-header {
    position: relative;
    width: 100%;
    background: #0a0a0a;
}

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(75, 0, 130, 0.4) 0%,
        rgba(138, 43, 226, 0.3) 50%,
        rgba(72, 61, 139, 0.4) 100%
    );
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

/* Profile Picture */
.profile-picture-container {
    position: absolute;
    bottom: -80px;
    left: 20px;
    z-index: 10;
}

.profile-picture {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    border: 4px solid #9370db;
    overflow: hidden;
    background: linear-gradient(145deg, #2d1b69, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
    position: relative;
}

.profile-picture video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.profile-placeholder {
    display: none;
    font-size: 4rem;
    color: #9370db;
    z-index: 2;
    position: relative;
}

/* Social Media Icons */
.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #9370db;
    background: linear-gradient(145deg, #2d1b69, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6e6fa;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
}

.social-link:hover {
    background: linear-gradient(145deg, #9370db, #8a2be2);
    transform: scale(1.1);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(147, 112, 219, 0.5);
}


/* Main Content */
.main-content {
    padding: 100px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Profile Description */
.profile-description {
    background: linear-gradient(145deg, rgba(45, 27, 105, 0.9), rgba(75, 0, 130, 0.9));
    border: 2px solid #9370db;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.description-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #9370db;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.clickable-title {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-title:hover {
    color: #8a2be2;
    transform: translateY(-2px);
}

.dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.market-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(45, 27, 105, 0.95), rgba(75, 0, 130, 0.95));
    border: 2px solid #9370db;
    border-radius: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    margin-top: 10px;
}

.market-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.market-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #e6e6fa;
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(147, 112, 219, 0.3);
}

.market-link:last-child {
    border-bottom: none;
}

.market-link:hover {
    background: linear-gradient(90deg, rgba(147, 112, 219, 0.2), transparent);
    color: #ffffff;
    padding-left: 25px;
}

.market-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #9370db;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: justify;
}

.description-footer {
    border-top: 1px solid rgba(147, 112, 219, 0.5);
    padding-top: 15px;
}

.description-footer small {
    color: #9370db;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
}



/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        height: 250px;
    }
    
    
    .profile-picture-container {
        bottom: -70px;
        left: 15px;
    }
    
    .profile-picture {
        width: 140px;
        height: 140px;
    }
    
    .main-content {
        padding: 90px 15px 15px;
    }
    
    .social-container {
        gap: 15px;
        margin-top: 25px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .description-title {
        font-size: 1.8rem;
    }
    
    .description-text {
        font-size: 1.1rem;
    }
    
    .market-dropdown {
        min-width: 250px;
    }
    
    .market-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 200px;
    }
    
    
    .profile-picture-container {
        bottom: -60px;
        left: 10px;
    }
    
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .main-content {
        padding: 80px 10px 10px;
    }
    
    .social-container {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .description-title {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .market-dropdown {
        min-width: 220px;
    }
    
    .market-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2d1b69;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #9370db, #8a2be2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #8a2be2, #9370db);
}