 /* ====== GLOBAL STYLES ====== */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
    padding-bottom: 60px;
    line-height: 1.5;
}

/* ====== NAVBAR ====== */
.navbar {
    background-color: #111;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #3897f0;
}

.amber-menu {
    position: relative;
}

.amber-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.amber-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: #222;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.amber-dropdown a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.amber-dropdown a:hover {
    background-color: #333;
}

.amber-menu:hover .amber-dropdown {
    display: block;
}

/* ====== PROFILE HEADER ====== */
.profile-header {
    background-color: #111;
    padding: 25px 0;
    border-bottom: 1px solid #333;
}

.profile-container {
    max-width: 935px;
    margin: 0 auto;
    padding: 0 15px;
}

.profile-main {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    align-items: center;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3897f0;
    box-shadow: 0 4px 15px rgba(56, 151, 240, 0.3);
    flex-shrink: 0;
}

.profile-details {
    flex: 1;
}

.profile-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-fullname {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #aaa;
    font-weight: normal;
}

.profile-bio {
    margin: 0 0 15px 0;
    color: #ddd;
    font-size: 13px;
}

.profile-links {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.profile-links a {
    color: #3897f0;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ====== PROFILE STATS ====== */
.profile-stats-section {
    margin-top: 15px;
}

.profile-stats {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.profile-stats::-webkit-scrollbar {
    display: none;
}

.stat {
    text-align: center;
    min-width: 45px;
    display: inline-block;
    flex-shrink: 0;
}

.stat-count {
    font-weight: bold;
    font-size: 16px;
    color: #3897f0;
}

.stat-label {
    font-size: 8px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== PROFILE ACTIONS ====== */
.profile-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.profile-actions::-webkit-scrollbar {
    display: none;
}

.profile-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    flex-shrink: 0;
    font-size: 13px;
}

.profile-btn.primary {
    background-color: #3897f0;
    color: white;
}

.profile-btn.primary:hover {
    background-color: #2878c8;
}

.profile-btn.secondary {
    background-color: #333;
    color: white;
}

.profile-btn.secondary:hover {
    background-color: #444;
}

.profile-btn.following {
    background-color: #efefef;
    color: #262626;
}

.profile-btn.following:hover {
    background-color: #dbdbdb;
}

.profile-btn.premium {
    background: linear-gradient(45deg, #ffd700, #c5a000);
    color: #000;
}

/* ====== PROFILE TABS ====== */
.profile-tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 1px solid #333;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.profile-tabs::-webkit-scrollbar {
    display: none;
}

.profile-tab {
    padding: 10px 15px;
    cursor: pointer;
    color: #aaa;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.profile-tab.active {
    color: white;
    border-bottom: 2px solid #3897f0;
}

.profile-tab:hover {
    color: white;
}

.verified-badge {
    color: #1DA1F2;
    font-size: 14px;
    margin-left: 4px;
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #c5a000);
    color: #000;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
}


/* Add this to your CSS */
.profile-earnings {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
}

.earnings-card {
    text-align: center;
    padding: 10px;
    min-width: 100px;
}

.earnings-amount {
    font-size: 18px;
    font-weight: bold;
    color: #3897f0;
    margin: 5px 0;
}

.earnings-label {
    font-size: 12px;
    color: #aaa;
}




/* ====== CONTENT SECTIONS ====== */
.content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ====== TAB SUBCATEGORIES STYLES ====== */
.tab-subcategories {
    display: flex;
    overflow-x: auto;
    padding: 12px 15px;
    margin: 0 0 15px 0;
    gap: 8px;
    scrollbar-width: none;
    background-color: #111;
    border-radius: 8px;
}

.tab-subcategories::-webkit-scrollbar {
    display: none;
}

.subcategory-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #333;
    color: #aaa;
    border: none;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.subcategory-btn.active {
    background: #3897f0;
    color: white;
}

.subcategory-btn:hover {
    background: #444;
    color: white;
}

/* Icons in subcategory buttons */
.subcategory-btn i {
    font-size: 14px;
}

/* Specific styles for different subcategory types */
/* Posts subcategories */
#posts-subcategories {
    background-color: rgba(56, 151, 240, 0.1);
}

/* Songs subcategories */
#songs-subcategories {
    background-color: rgba(255, 50, 50, 0.1);
}

/* Products subcategories */
#products-subcategories {
    background-color: rgba(0, 200, 100, 0.1);
}

/* Active tab indicator */
.tab-subcategories.active-tab {
    border-left: 4px solid #3897f0;
}

/* ====== GRID SYSTEM STYLES ====== */
.grid-container, .photos-grid-container {
    display: grid;
    gap: 12px;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
}

/* ====== VIDEO GRID STYLES ====== */
.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #222;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    aspect-ratio: 1/1; /* Square aspect ratio */
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
}

.video-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
}

.video-stats {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
}

.video-stat {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====== PHOTO GRID STYLES ====== */
.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #222;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    aspect-ratio: 1/1; /* Square aspect ratio */
}

.photo-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
}

.photo-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-caption {
    color: white;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    margin-bottom: 10px;
    word-break: break-word;
}

.photo-stats {
    display: flex;
    gap: 15px;
}

.photo-stat {
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.photo-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-actions {
    opacity: 1;
}

.photo-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== SONGS SECTION ====== */
.song-item {
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    aspect-ratio: 1/1;
    position: relative;
}

.song-cover-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.song-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button styles like video items */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(56, 151, 240, 0.9);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.song-cover-container:hover .play-button {
    opacity: 1;
}

/* Song stats overlay like video items */
.song-stats-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.song-stat {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Song info panel (replacing the bottom section) */
.song-info-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px 10px 10px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.song-item:hover .song-info-panel {
    transform: translateY(0);
}

.song-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

/* ====== PRODUCTS SECTION ====== */
.product-item {
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    aspect-ratio: 1/1;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px 10px 10px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-item:hover .product-info-overlay {
    transform: translateY(0);
}

.product-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #3897f0;
    margin-bottom: 5px;
}

.product-stats {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #aaa;
}

.product-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Dots menu for songs (like photo actions) */
.song-dots-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-item:hover .song-dots-menu {
    opacity: 1;
}

.dots-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 3;
    border-radius: 8px;
    overflow: hidden;
}

.song-dots-menu:hover .song-dropdown {
    display: block;
}



/* Dark mode adjustments */
.dark-mode .no-content,
.dark-mode .no-photos-message {
    background: rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.05);
}

.dark-mode .no-content h3,
.dark-mode .no-photos-message h3 {
    color: #f5f5f5;
}

.dark-mode .no-content p,
.dark-mode .no-photos-message p {
    color: #bbb;
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
    /* Reduce gap on smaller screens */
    .grid-container, .photos-grid-container {
        gap: 8px;
        padding: 0 8px;
    }
    
    /* Slightly smaller stats on mobile */
    .video-stat,
    .photo-stat {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Adjust overlay padding */
    .photo-overlay {
        padding: 10px;
    }
}



/* ====== DARK MODE STYLES ====== */
.dark-mode .video-item,
.dark-mode .photo-item,
.dark-mode .song-item,
.dark-mode .product-item {
    background-color: #2d2d2d;
}

.dark-mode .video-placeholder,
.dark-mode .photo-placeholder {
    background-color: #3d3d3d;
}

.dark-mode .song-info,
.dark-mode .product-info {
    background-color: #3d3d3d;
}

.dark-mode .no-content i,
.dark-mode .no-photos-message i {
    color: #555;
}

.dark-mode .no-content h3,
.dark-mode .no-photos-message h3 {
    color: #eee;
}

.dark-mode .no-content p,
.dark-mode .no-photos-message p {
    color: #888;
}
/* ====== PORTFOLIO SECTION ====== */
.portfolio-details {
    padding: 12px;
}

.portfolio-details h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.portfolio-details p {
    font-size: 13px;
    margin-bottom: 12px;
}

.portfolio-link {
    font-size: 13px;
}

/* ====== LIVE EVENTS SECTION ====== */
.live-badge {
    font-size: 11px;
    padding: 2px 6px;
}

.event-details {
    padding: 12px;
}

.event-details h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.event-details p {
    font-size: 13px;
    margin-bottom: 12px;
}

.event-btn {
    padding: 6px 12px;
    font-size: 13px;
}

/* ====== PREMIUM CONTENT MANAGEMENT ====== */
.premium-management {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-management h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.premium-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3897f0;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

.premium-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.premium-action-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.premium-action-btn.primary {
    background: linear-gradient(45deg, #3897f0, #0064e0);
    color: white;
}

.premium-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ====== SUBSCRIPTION TIERS ====== */
.subscription-tiers {
    margin: 30px 0;
}

.subscription-tiers h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #fff;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.subscription-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.subscription-tier.featured {
    border: 1px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.subscription-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.tier-benefits li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tier-benefits li i {
    color: #3897f0;
    margin-top: 3px;
}

.tier-subscribe-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(45deg, #3897f0, #0064e0);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tier-subscribe-btn:hover {
    background: linear-gradient(45deg, #0064e0, #3897f0);
}

/* ====== PREMIUM CONTENT GRID ====== */
.premium-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px auto;
    max-width: 1200px;
}

.premium-content-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.premium-content-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #c5a000);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.premium-content-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.premium-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-content-item:hover .premium-content-image img {
    transform: scale(1.05);
}

.premium-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
}

.premium-content-details {
    padding: 20px;
}

.premium-content-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.premium-content-details p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
}

.premium-content-actions {
    display: flex;
    gap: 10px;
}

.premium-content-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-content-btn i {
    font-size: 1rem;
}

/* ====== NO CONTENT MESSAGE ====== */
.no-premium-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-premium-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.no-premium-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.no-premium-content p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.create-premium-btn {
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(45deg, #3897f0, #0064e0);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.create-premium-btn:hover {
    background: linear-gradient(45deg, #0064e0, #3897f0);
    transform: translateY(-2px);
}


/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
    .premium-stats {
        grid-template-columns: 1fr;
    }
    
    .premium-actions {
        flex-direction: column;
    }
    
    .premium-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ====== SUBSCRIPTION MODAL ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #222;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
    background: none;
    border: none;
}

.close-modal:hover {
    color: white;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.modal-tiers {
    margin-bottom: 25px;
}

.modal-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-tier.selected {
    border-color: #3897f0;
    background: rgba(56, 151, 240, 0.1);
}

.modal-tier-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.modal-tier-price {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.modal-tier-benefits li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-tier-benefits li i {
    color: #3897f0;
    font-size: 0.8rem;
}

.payment-methods {
    margin: 25px 0;
}

.payment-methods h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.payment-option.active {
    background: rgba(56, 151, 240, 0.2);
    border-color: #3897f0;
}

.payment-option i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.payment-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.payment-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
}

.payment-form-row {
    display: flex;
    gap: 15px;
}

.payment-form-row .form-group {
    flex: 1;
}

.confirm-subscription-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #3897f0, #0064e0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.confirm-subscription-btn:hover {
    background: linear-gradient(45deg, #0064e0, #3897f0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
    }
    
    .payment-option {
        min-width: 100px;
        padding: 10px;
    }
    
    .payment-form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* ====== SCROLLABLE MODAL ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto; /* Washa scroll kwa modal nzima */
    padding: 20px 0; /* Padding juu na chini */
}

.modal-content {
    background: #222;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    margin: 20px auto; /* Margin juu na chini kwa ajili ya scroll */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh; /* Hakikisha haizidi urefu wa skrini */
    overflow-y: auto; /* Washa scroll kwa yaliyomo */
}

/* Scrollbar styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #3897f0;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #2878c8;
}

/* Fix for scroll jumping */
html.modal-open {
    overflow: hidden;
}



/* ====== DARK MODE STYLES ====== */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

.dark-mode .navbar {
    background-color: #1e1e1e;
}

.dark-mode .profile-header {
    background-color: #1e1e1e;
}

.dark-mode .grid-item,
.dark-mode .video-item,
.dark-mode .photo-item,
.dark-mode .portfolio-item,
.dark-mode .live-event-card,
.dark-mode .premium-content-item {
    background-color: #2d2d2d;
}

/* ====== UTILITY CLASSES ====== */
.no-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 15px;
}

.no-content i {
    font-size: 40px;
    color: #444;
    margin-bottom: 10px;
}

.no-content h3 {
    font-size: 16px;
    margin: 8px 0;
}

.no-content p {
    font-size: 13px;
    max-width: 280px;
    margin: 0 auto;
}

/* ====== MODAL STYLES ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #222;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

/* ====== LYRICS CONTAINER ====== */
.lyrics-container {
    max-height: 200px;
    overflow-y: auto;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.show-lyrics-btn {
    margin-top: 8px;
    padding: 4px 8px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

   /* Bottom Navigation - Instagram Style */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #000000;
            border-top: 1px solid #262626;
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            font-size: 24px;
            padding: 4px;
            position: relative;
        }
        
        .nav-item.active {
            color: #ffffff;
        }
        
        .nav-item.add-post {
            background: linear-gradient(45deg, #ff3366, #ff6b35);
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-top: -20px;
        }
        
        .nav-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #ed4956;
            color: white;
            border-radius: 10px;
            padding: 2px 6px;
            font-size: 10px;
            min-width: 18px;
            text-align: center;
            font-weight: 600;
        }