        :root {
            --primary-color: #ff0050;
            --bg-color: #000;
            --text-color: #fff;
            --card-bg: #333;
            --modal-max-width: 90vw;
            --modal-max-height: 90vh;
        }

        .social-links .social-icon {
            font-size: 1.4rem;
            color: #555;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f1f1f1;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links .social-icon:hover {
            color: #fff;
        }

        .social-links .instagram:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .social-links .facebook:hover {
            background-color: #3b5998;
        }

        .social-links .youtube:hover {
            background-color: #FF0000;
        }

        .profile-header {
            background-color: white;
            padding: 30px 15px;
            border-bottom: 1px solid #ddd;
        }

        .profile-pic {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #ddd;
        }

        .stat-count {
            font-weight: bold;
            font-size: 16px;
        }




        .btn {
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }

        .btn-outline-secondary {
            border: 1px solid var(--text-color);
            color: var(--text-color);
            background: transparent;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            border: none;
        }

        .btn-danger {
            background: #dc3545;
            color: white;
            border: none;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin: 20px 0;
        }

        .media-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
        }

        .video-wrapper,
        .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .video-wrapper video,
        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay,
        .image-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 10px;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 40px;
            opacity: 0.8;
        }

        .views-count,
        .image-views {
            color: white;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .media-options {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
        }

        .options-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: grid;
            place-items: center;
            cursor: pointer;
        }

        .options-menu {
            position: absolute;
            right: 0;
            top: 40px;
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            display: none;
            min-width: 150px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .options-menu.show {
            display: block;
        }

        .options-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .options-menu a:hover {
            background: #444;
        }

        .video-modal {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: none;
            place-items: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .video-modal.active {
            display: grid;
        }

        .video-container {
            width: 100%;
            max-width: var(--modal-max-width);
            max-height: var(--modal-max-height);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .video-container video,
        .video-container img {
            width: 100%;
            height: auto;
            max-height: calc(var(--modal-max-height) - 60px);
            object-fit: contain;
            border-radius: 8px;
            background: #000;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        @media (max-width: 768px) {
            :root {
                --modal-max-width: 100vw;
                --modal-max-height: 100vh;
            }

            .profile-info {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .stats {
                justify-content: center;
            }

            .profile-pic {
                width: 80px;
                height: 80px;
            }

            .media-grid {
                gap: 5px;
            }

            .video-modal {
                padding: 10px;
            }
        }