.profile-landing-page {
    background: transparent;
    margin-bottom: 30px;
}

.profile-landing-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c19be9;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, #c19be9 100%);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.profile-landing-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.profile-landing-title {
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.profile-landing-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
}

.profile-landing-section {
    margin-bottom: 40px;
    border-radius: 12px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(193,155,233,0.3);
    transition: all 0.3s ease;
}

.profile-landing-section:hover {
    box-shadow: 0 6px 16px rgba(193,155,233,0.2);
    border: 1px solid rgba(193,155,233,0.5);
}

.profile-landing-section h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #c19be9;
    padding-bottom: 12px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000;
    position: relative;
}

.profile-landing-section h4:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #c19be9 100%);
    border-radius: 2px;
}

.profile-landing-gallery {
    margin-bottom: 20px;
}

.latest-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 991px) {
    .latest-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .latest-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.no-gallery-images {
    color: #fff;
    text-align: center;
    padding: 30px;
    font-style: italic;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(193,155,233,0.7) 100%);
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(193,155,233,0.3);
}

.latest-gallery-item {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.latest-gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(193,155,233,0.3);
    z-index: 2;
}

.latest-gallery-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.latest-gallery-item:hover:before {
    opacity: 1;
}

.gallery-image-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(193,155,233,0.3);
    border: 2px solid rgba(193,155,233,0.4);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-link:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}

.gallery-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-image-link:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(193,155,233,0.8);
    border-radius: 50%;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-image-link:after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    z-index: 4;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-image-link:hover:before,
.gallery-image-link:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-image-meta {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(193,155,233,0.6) 100%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.profile-landing-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-stat-card {
    text-align: center;
    padding: 5px;
    background-image: linear-gradient(180deg, #000 0%, #c19be9 150%);
    border-radius: 8px;
    min-width: 140px;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
    color: #fff;
}

.profile-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-count {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-sublabel {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
}

.stat-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s;
    padding: 8px 18px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    z-index: -1;
}

.stat-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.stat-link:hover:before {
    width: 100%;
}

.profile-landing-about-link {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 25px;
}

.profile-landing-about-link .button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #000 0%, #c19be9 50%, #000 100%);
    border: none;
    box-shadow: 0 4px 10px rgba(193, 155, 233, 0.4);
    transition: all 0.3s ease;
    color: #fff;
}

.profile-landing-about-link .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(193, 155, 233, 0.5);
    filter: brightness(1.1);
}

.profile-landing-more-link {
    text-align: center;
    margin: 20px 0 0;
}

.profile-landing-more-link .button {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #c19be9;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.profile-landing-more-link .button:hover {
    background: linear-gradient(90deg, #000 0%, #c19be9 50%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193,155,233,0.3);
}