
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .app-container {
            max-width: 430px;
            margin: 0 auto;
            background: #000;
            min-height: 100vh;
            position: relative;
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #333;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff006e, #fb5607, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .top-icons {
            display: flex;
            gap: 20px;
        }

        .icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: transform 0.2s;
            color: #fff;
            position: relative;
        }

        .icon:hover {
            transform: scale(1.1);
        }

        /* NOTIFICATION BELL STYLES */
        .notification-bell {
            position: relative;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff006e;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
        }

        .notification-badge.show {
            display: flex;
        }

        .notification-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 320px;
            max-height: 400px;
            background: #111;
            border: 1px solid #333;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.8);
            z-index: 1000;
            display: none;
            overflow: hidden;
        }

        .notification-dropdown.show {
            display: block;
            animation: dropdownFadeIn 0.3s ease;
        }

        @keyframes dropdownFadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .notification-header {
            padding: 15px 20px;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .notification-title {
            font-weight: 600;
            font-size: 1rem;
        }

        .mark-all-read {
            background: none;
            border: none;
            color: #ff006e;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .notification-list {
            max-height: 300px;
            overflow-y: auto;
        }

        .notification-item {
            padding: 15px 20px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            gap: 12px;
        }

        .notification-item:hover {
            background: rgba(255,255,255,0.05);
        }

        .notification-item.unread {
            background: rgba(255, 0, 110, 0.1);
            border-left: 3px solid #ff006e;
        }

        .notification-icon {
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .notification-content {
            flex: 1;
        }

        .notification-text {
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .notification-time {
            font-size: 0.8rem;
            color: #888;
        }

        .notification-empty {
            padding: 40px 20px;
            text-align: center;
            color: #888;
        }

        /* STORY STYLES */
        .stories-container {
            padding: 15px 20px;
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .stories-container::-webkit-scrollbar {
            display: none;
        }

        .story {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-width: 70px;
            cursor: pointer;
        }

        .story-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff006e, #fb5607, #ffbe0b);
            padding: 3px;
            position: relative;
        }

        .story-avatar.has-story {
            background: linear-gradient(45deg, #ff006e, #fb5607, #ffbe0b);
        }

        .story-avatar.viewed {
            background: #444;
        }

        .story-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #000;
        }

        .story-username {
            font-size: 0.8rem;
            color: #ccc;
            text-align: center;
        }

        .add-story {
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
        }

        /* STORY VIEWER MODAL */
        .story-viewer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000;
            z-index: 2000;
            display: none;
        }

        .story-viewer.show {
            display: block;
        }

        .story-viewer-header {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .story-user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }

        .story-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .story-progress {
            position: absolute;
            top: 10px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            overflow: hidden;
        }

        .story-progress-bar {
            height: 100%;
            background: white;
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .story-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .story-media {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .story-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 10;
        }

        .story-poll {
            background: rgba(0,0,0,0.8);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .story-poll-question {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .story-poll-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .story-poll-option {
            background: rgba(255,255,255,0.2);
            border: 2px solid transparent;
            border-radius: 25px;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .story-poll-option:hover {
            background: rgba(255,255,255,0.3);
            border-color: #ff006e;
        }

        .story-poll-option.voted {
            background: rgba(255, 0, 110, 0.8);
            border-color: #ff006e;
        }

        .story-close {
            background: rgba(0,0,0,0.5);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* STORY CREATION MODAL */
        .story-create-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1500;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .story-create-content {
            background: #111;
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 400px;
            border: 1px solid #333;
        }

        .story-create-title {
            text-align: center;
            margin-bottom: 20px;
            color: #ff006e;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .auth-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .auth-card {
            background: #111;
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 400px;
            border: 1px solid #333;
        }

        .auth-tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
        }

        .auth-tab {
            flex: 1;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .auth-tab.active {
            border-bottom-color: #ff006e;
            color: #ff006e;
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #444;
            border-radius: 8px;
            background: #222;
            color: #fff;
            font-size: 16px;
        }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #ff006e;
        }

        .auth-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .auth-btn:hover {
            transform: translateY(-1px);
        }

        .auth-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .auth-status {
            margin-top: 15px;
            padding: 10px;
            border-radius: 6px;
            text-align: center;
        }

        .auth-status.success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .auth-status.error {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .feed {
            padding-bottom: 80px;
        }

        .post {
            background: #111;
            margin-bottom: 1px;
            border-top: 1px solid #333;
        }

        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .user-details h3 {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .user-details p {
            font-size: 0.8rem;
            color: #888;
        }

        .follow-btn {
            background: #ff006e;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .follow-btn.following {
            background: #333;
            color: #fff;
        }

        .follow-btn:hover {
            transform: scale(1.05);
        }

        .post-content {
            position: relative;
        }

        .poll-question {
            padding: 0 20px 15px;
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Audio Poll Styles */
        .audio-poll-container {
            background: #000;
            padding: 20px;
            position: relative;
        }

        .audio-player {
            background: #111;
            border-radius: 15px;
            padding: 20px;
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }

        .audio-waveform {
            background: #222;
            border-radius: 8px;
            height: 60px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .waveform-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .audio-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .play-pause-btn {
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .play-pause-btn:hover {
            transform: scale(1.1);
        }

        .audio-info {
            flex: 1;
        }

        .audio-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .audio-duration {
            color: #888;
            font-size: 0.9rem;
        }

        .audio-progress {
            width: 100%;
            height: 4px;
            background: #333;
            border-radius: 2px;
            overflow: hidden;
            cursor: pointer;
        }

        .audio-progress-bar {
            height: 100%;
            background: linear-gradient(45deg, #ff006e, #fb5607);
            width: 0%;
            transition: width 0.1s;
        }

        .audio-rating-section {
            padding: 15px 20px;
            background: #111;
            border-top: 1px solid #333;
        }

        .rating-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .rating-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .rating-btn {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid transparent;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .rating-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,0,110,0.5);
        }

        .rating-btn.voted {
            background: rgba(255, 0, 110, 0.8);
            border-color: #ff006e;
        }

        /* Visual Polls Styles */
        .poll-options-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
        }

        .visual-option {
            background-color: #111;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .image-display-area {
            position: relative;
            width: 100%;
            padding-bottom: 125%;
            overflow: hidden;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-display-area img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .image-display-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .option-votes {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 3;
        }

        .view-image-btn {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 3;
            border: none;
            cursor: pointer;
        }

        .text-and-button-area {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }

        .option-label {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .vote-btn {
            width: 100%;
            padding: 10px;
            background: rgba(255, 0, 110, 0.9);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .vote-btn:hover {
            background: rgba(255, 0, 110, 1);
            transform: scale(1.02);
        }

        .vote-btn.voted {
            background: rgba(34, 197, 94, 0.9);
        }

        .video-poll-container {
            position: relative;
            background: #000;
            height: 400px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .play-overlay {
            background: rgba(255, 0, 110, 0.9);
            color: white;
            border: none;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .video-rating-section {
            padding: 15px 20px;
            background: #111;
            border-top: 1px solid #333;
        }

        /* Full-screen modals */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            background: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .modal-close {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            cursor: pointer;
            z-index: 2001;
            border: none;
        }

        .modal-image {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            display: block;
            margin-bottom: 15px;
        }

        #modalImageCaption {
            color: white;
            text-align: center;
            font-weight: 600;
            max-width: 100%;
            word-wrap: break-word;
        }

        .modal-video {
            width: 100%;
            height: auto;
            max-height: 70vh;
            border-radius: 10px;
            background-color: black;
        }

        .video-modal-content {
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .video-modal-player {
            flex-shrink: 0;
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-modal-player video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .video-modal-info {
            padding: 20px;
            background: #111;
            flex-grow: 1;
            overflow-y: auto;
        }

        .video-modal-actions {
            padding: 15px 20px;
            background: #111;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        /* Audio Modal Styles */
        .audio-modal-content {
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .audio-modal-player {
            padding: 30px;
            background: #111;
            text-align: center;
        }

        .audio-modal-waveform {
            background: #222;
            border-radius: 8px;
            height: 80px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .audio-modal-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .modal-play-btn {
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .modal-play-btn:hover {
            transform: scale(1.1);
        }

        .audio-modal-info {
            padding: 20px;
            background: #111;
            flex-grow: 1;
            overflow-y: auto;
        }

        .audio-modal-actions {
            padding: 15px 20px;
            background: #111;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .poll-text-options {
            padding: 0 20px;
            margin-bottom: 15px;
        }

        .text-option {
            background: rgba(255,255,255,0.1);
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .text-option:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,0,110,0.5);
        }

        .text-option.selected {
            background: rgba(255,0,110,0.2);
            border-color: #ff006e;
        }

        .option-text {
            font-weight: 500;
        }

        .option-percentage {
            font-weight: 700;
            color: #ff006e;
        }

        .poll-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .action-buttons {
            display: flex;
            gap: 20px;
        }

        .action-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .action-btn:hover {
            transform: scale(1.1);
        }

        .action-btn.liked {
            color: #ff006e;
        }

        .action-btn.shared {
            color: #00d9ff;
        }

        .action-count {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .trending-badge {
            position: absolute;
            top: 15px;
            left: 20px;
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 3;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 430px;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            z-index: 100;
        }

        .nav-btn {
            background: none;
            border: none;
            color: #666;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
            padding: 5px;
        }

        .nav-btn.active {
            color: #ff006e;
        }

        .create-btn {
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,0,110,0.4);
            transition: transform 0.2s;
        }

        .create-btn:hover {
            transform: scale(1.1);
        }

        .engagement-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.8);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            display: none;
            z-index: 200;
        }

        .engagement-overlay.show {
            display: block;
            animation: popIn 0.3s ease;
        }

        @keyframes popIn {
            0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        }

        .loading {
            text-align: center;
            padding: 40px 20px;
            color: #888;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #888;
        }

        .empty-state h3 {
            margin-bottom: 10px;
            color: #fff;
        }

        @media (max-width: 430px) {
            .app-container {
                max-width: 100%;
            }
            
            .bottom-nav {
                width: 100%;
            }
        }

        .create-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .create-modal {
            background: #111;
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 400px;
            border: 1px solid #333;
            max-height: 80vh;
            overflow-y: auto;
        }

        .create-tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
        }

        .create-tab {
            flex: 1;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
            font-size: 12px;
        }

        .create-tab.active {
            border-bottom-color: #ff006e;
            color: #ff006e;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #999;
            font-size: 24px;
            cursor: pointer;
        }

        /* Audio Upload Preview */
        .audio-preview {
            margin-top: 10px;
            padding: 15px;
            background: #222;
            border-radius: 8px;
            border: 1px solid #333;
        }

        .audio-preview audio {
            width: 100%;
            margin-bottom: 10px;
        }

        .audio-file-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ccc;
            font-size: 0.9rem;
        }

        .audio-file-name {
            font-weight: 600;
        }

        .audio-file-size {
            color: #888;
        }

        /* NEW CSS FOR SOCIAL FEATURES */
        .comments-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .comments-content {
            width: 100%;
            max-width: 500px;
            height: 70vh;
            background: #111;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .comments-header {
            padding: 20px;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .comments-header h3 {
            color: #fff;
            font-size: 1.2rem;
        }

        .comments-list {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .comment {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }

        .comment:last-child {
            border-bottom: none;
        }

        .comment-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .comment-username {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
        }

        .comment-time {
            color: #888;
            font-size: 0.8rem;
        }

        .comment-text {
            color: #ccc;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .comment-actions {
            display: flex;
            gap: 15px;
        }

        .comment-action {
            background: none;
            border: none;
            color: #888;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-action:hover {
            color: #fff;
        }

        .comment-action.liked {
            color: #ff006e;
        }

        .comment-input-section {
            padding: 20px;
            border-top: 1px solid #333;
        }

        .comment-input-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .comment-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #444;
            border-radius: 25px;
            background: #222;
            color: #fff;
            font-size: 14px;
            resize: none;
        }

        .comment-input:focus {
            outline: none;
            border-color: #ff006e;
        }

        .comment-submit {
            background: linear-gradient(45deg, #ff006e, #fb5607);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comment-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .share-menu {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 430px;
            background: #111;
            border-radius: 15px 15px 0 0;
            padding: 20px;
            z-index: 2000;
            display: none;
        }

        .share-menu.show {
            display: block;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from { transform: translateX(-50%) translateY(100%); }
            to { transform: translateX(-50%) translateY(0); }
        }

        .share-menu-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .share-menu-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
        }

        .share-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .share-option {
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #fff;
        }

        .share-option:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }

        .share-option-icon {
            font-size: 1.5rem;
        }

        .share-option-name {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .share-menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #888;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 430px) {
            .share-menu {
                width: 100%;
            }
            
            .notification-dropdown {
                width: calc(100vw - 40px);
                right: -10px;
            }
        }
