        /* ========== GLOBAL STYLES (matching original design) ========== */
        
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
       
        /* Buttons */
        .btn-grad {
            background: linear-gradient(95deg, var(--purple), var(--blue));
            border: none;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            color: white;
            transition: 0.2s;
        }
        .btn-grad:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(168,85,247,0.4);
        }
        
        /* ========== MAIN PAGE REELS (horizontal scroll) ========== */
        .reels-scroll {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
            scrollbar-width: thin;
        }
        .reels-scroll .reel-card {
            flex: 0 0 200px;
            aspect-ratio: 9 / 16;
            border-radius: 20px;
            overflow: hidden;
            background: #0f0f1a;
            cursor: pointer;
            position: relative;
        }
        .reels-scroll .reel-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* ========== MAIN PAGE PHOTO GALLERY (masonry) ========== */
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 14px;
            margin-top: 20px;
        }
        .masonry-item {
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: #0f0f1a;
            box-shadow: 0 6px 14px rgba(0,0,0,0.2);
        }
        .masonry-item img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        
        /* ========== EXCLUSIVE MEDIA MODAL ========== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .modal-content-custom {
            background: rgba(20, 20, 35, 0.96);
            border-radius: 32px;
            padding: 20px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            max-width: 95vw;
            width: auto;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 22px;
            background: rgba(255,255,255,0.2);
            border: none;
            font-size: 26px;
            cursor: pointer;
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-close:hover { background: #ff4757; }
        
        /* TABS */
        .reels-tabs {
            display: flex;
            gap: 16px;
            margin: 16px 0 24px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 8px;
        }
        .reels-tab {
            background: transparent;
            border: none;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 40px;
            color: #ccc;
            transition: 0.2s;
        }
        .reels-tab.active {
            background: linear-gradient(135deg, #a855f7, #3b82f6);
            color: white;
            box-shadow: 0 4px 12px rgba(168,85,247,0.3);
        }
        .hidden { display: none; }
        
        /* REELS GRID (9:16) */
        .reels-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: flex-start;
        }
        .reel-card {
            flex: 0 0 200px;
            aspect-ratio: 9 / 16;
            background: #0a0a12;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform 0.2s;
        }
        .reel-card:hover { transform: scale(1.02); }
        .reel-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            pointer-events: none;
        }
        
        /* IMAGES GRID (uniform squares, tight gap - like screenshot 564) */
        .images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 8px;
            margin-top: 12px;
        }
        .image-card {
            background: #0f0f1a;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .image-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(168,85,247,0.2);
        }
        .image-card .image-wrapper {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #000;
        }
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .image-caption {
            padding: 8px 6px;
            background: rgba(0,0,0,0.7);
            color: #ddd;
            font-size: 0.75rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* FULLSCREEN VIEWER */
        .fullscreen-viewer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000dd;
            backdrop-filter: blur(20px);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
        }
        .fullscreen-viewer.active { opacity: 1; visibility: visible; }
        .viewer-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            background: rgba(0,0,0,0.6);
            border-radius: 32px;
            padding: 20px;
        }
        .viewer-media {
            max-width: 90vw;
            max-height: 80vh;
            border-radius: 20px;
        }
        .viewer-close {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff4757;
            border: none;
            font-size: 24px;
            border-radius: 60px;
            width: 42px;
            height: 42px;
        }
        
        @media (max-width: 768px) {
            .nav-links-wrap { display: none; }
            .hamburger-btn { display: block; }
            .reels-scroll .reel-card, .reels-grid .reel-card { flex: 0 0 150px; }
            .images-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 6px; }
        }