/* 📱 NUMTRIXIAN SOCIAL - CSS STYLES */

/* Social Mode Toggle */
.social-mode-toggle-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-mode-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.toggle-label {
    color: #00ffff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 10px;
}

.toggle-switch {
    position: relative;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    border: 2px solid rgba(0, 255, 136, 0.4);
    overflow: hidden;
}

.toggle-option {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.toggle-option.active {
    color: #00ff88;
}

.toggle-option:not(.active) {
    color: rgba(255, 255, 255, 0.6);
}

.toggle-option:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.5));
    border-radius: 30px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-icon {
    font-size: 1.1rem;
}

/* Social Feed Styles */
#socialFeed {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.social-post {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 20, 40, 0.3));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-post:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid rgba(0, 255, 136, 0.4);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    color: #00ff88;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #00ffff;
    font-size: 0.8rem;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.post-options {
    opacity: 0.7;
}

.options-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.options-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Post Content */
.post-content {
    margin-bottom: 15px;
}

.post-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.post-media {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
}

.video-media video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.photo-media img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blueprint-media,
.data-media,
.hologram-media {
    background: rgba(0, 255, 136, 0.1);
    border: 2px dashed rgba(0, 255, 136, 0.3);
    padding: 20px;
    text-align: center;
}

.blueprint-preview,
.data-preview,
.hologram-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.blueprint-icon,
.data-icon,
.hologram-icon {
    font-size: 2rem;
    color: #00ff88;
}

.blueprint-text,
.data-text,
.hologram-text {
    color: #00ffff;
    font-weight: bold;
}

.hologram-effect {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: hologramScan 2s ease-in-out infinite;
}

@keyframes hologramScan {
    0%, 100% { transform: translateX(-100px); opacity: 0; }
    50% { transform: translateX(100px); opacity: 1; }
}

/* Post Actions */
.post-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.like-btn:hover,
.like-btn.liked {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
}

.comment-btn:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.share-btn:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.quantum-btn:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.quantum-btn .action-count.quantum-pulse {
    animation: quantumPulse 1s ease-in-out;
}

@keyframes quantumPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); color: #FFD700; }
}

.gift-btn:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.action-icon {
    font-size: 1.1rem;
}

.action-count,
.action-text {
    font-weight: bold;
}

/* Create Post Modal */
.social-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.social-modal .modal-content {
    background: linear-gradient(135deg, #0a0a1a, #0f0f2a);
    border: 3px solid #00ff88;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #fff;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

.social-modal .modal-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    padding: 20px 25px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-modal .modal-header h3 {
    color: #00ff88;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
}

.social-modal .close-btn {
    background: rgba(255, 69, 69, 0.3);
    border: 2px solid rgba(255, 69, 69, 0.6);
    color: #ff4545;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-modal .close-btn:hover {
    background: rgba(255, 69, 69, 0.5);
    transform: scale(1.1);
}

.social-modal .modal-body {
    padding: 25px;
}

.post-creator {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.creator-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.creator-header .user-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.creator-header .user-name {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1rem;
}

.post-input {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 120px;
    width: 100%;
    box-sizing: border-box;
}

.post-input:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.post-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.media-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.media-btn {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.media-btn:hover {
    background: rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.social-modal .modal-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    text-align: right;
}

.post-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.5));
    border: 2px solid rgba(0, 255, 136, 0.6);
    color: #00ff88;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.post-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.5), rgba(0, 255, 136, 0.7));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

/* Live Stream Interface */
.live-stream-interface {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: linear-gradient(135deg, #0a0a1a, #1a0a1a);
    border: 3px solid #ff4545;
    border-radius: 15px;
    padding: 20px;
    z-index: 1500;
    box-shadow: 0 0 30px rgba(255, 69, 69, 0.5);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff4545;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-text {
    color: #ff4545;
    font-weight: bold;
    text-transform: uppercase;
}

.live-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.live-viewers,
.live-duration {
    color: #ffffff;
}

.live-chat {
    height: 150px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.live-controls {
    display: flex;
    gap: 10px;
}

.live-control-btn {
    flex: 1;
    background: rgba(255, 69, 69, 0.3);
    border: 2px solid rgba(255, 69, 69, 0.6);
    color: #ff4545;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.live-control-btn:hover {
    background: rgba(255, 69, 69, 0.5);
}

/* Go Live Button Active State */
.live-active {
    background: linear-gradient(135deg, rgba(255, 69, 69, 0.3), rgba(255, 69, 69, 0.5)) !important;
    border-color: rgba(255, 69, 69, 0.6) !important;
    color: #ff4545 !important;
    animation: livePulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-mode-toggle {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .toggle-switch {
        width: 100%;
    }
    
    .toggle-option {
        flex: 1;
        justify-content: center;
    }
    
    .social-post {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .post-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .social-modal .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .media-options {
        justify-content: center;
    }
    
    .live-stream-interface {
        width: 250px;
        bottom: 10px;
        right: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.social-post {
    animation: fadeIn 0.5s ease-out;
}

/* Scrollbar Styling */
#socialFeed::-webkit-scrollbar {
    width: 8px;
}

#socialFeed::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

#socialFeed::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.4);
    border-radius: 4px;
}

#socialFeed::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.6);
}

/* Create Buttons */
.create-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.create-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.4));
    border: 2px solid rgba(0, 255, 136, 0.6);
    color: #00ff88;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 255, 136, 0.6));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.create-btn.live-btn {
    background: linear-gradient(135deg, rgba(255, 69, 69, 0.2), rgba(255, 69, 69, 0.4));
    border-color: rgba(255, 69, 69, 0.6);
    color: #ff4545;
}

.create-btn.live-btn:hover {
    background: linear-gradient(135deg, rgba(255, 69, 69, 0.4), rgba(255, 69, 69, 0.6));
    box-shadow: 0 0 20px rgba(255, 69, 69, 0.4);
}

/* Comments Section (for future implementation) */
.post-comments {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.comment-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.comment-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 0.9rem;
}

.comment-input button {
    background: rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-input button:hover {
    background: rgba(0, 255, 136, 0.5);
}

/* Advanced Live Streaming Interface */
.advanced-live-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    flex-direction: column;
}

.live-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

.live-content {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
}

.video-container {
    flex: 1;
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

#localVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.live-sidebar {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-section {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #00ff88;
    font-weight: bold;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-message {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.chat-message.user-message {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.chat-user {
    color: #00ff88;
    font-weight: bold;
    margin-right: 8px;
}

.chat-text {
    color: #ffffff;
}

.gifts-section {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 69, 69, 0.3);
    border-radius: 15px;
    padding: 15px;
}

.gifts-header {
    color: #ff4545;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gift-btn {
    background: rgba(255, 69, 69, 0.1);
    border: 2px solid rgba(255, 69, 69, 0.3);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gift-btn:hover {
    background: rgba(255, 69, 69, 0.3);
    transform: scale(1.05);
}

.gift-emoji {
    font-size: 2rem;
    margin-bottom: 5px;
}

.gift-cost {
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: bold;
}

.gift-animation {
    position: absolute;
    font-size: 3rem;
    animation: floatUp 3s ease-out forwards;
}

@keyframes floatUp {
    0% {
        bottom: 20%;
        opacity: 1;
        transform: translateX(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) scale(1.2);
    }
    100% {
        bottom: 80%;
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
}

.control-btn {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 255, 136, 0.4);
}

.control-btn.danger {
    background: rgba(255, 69, 69, 0.2);
    border-color: rgba(255, 69, 69, 0.4);
    color: #ff4545;
}

.control-btn.danger:hover {
    background: rgba(255, 69, 69, 0.4);
}

/* Video Recording Interface */
.video-recording-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recording-container {
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #0a0a1a, #1a0a1a);
    border: 3px solid #ff4545;
    border-radius: 20px;
    overflow: hidden;
}

.recording-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 69, 69, 0.1);
    border-bottom: 2px solid rgba(255, 69, 69, 0.3);
}

.recording-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recording-dot {
    width: 12px;
    height: 12px;
    background: #ff4545;
    border-radius: 50%;
    animation: recordPulse 1s ease-in-out infinite;
}

@keyframes recordPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.recording-text {
    color: #ff4545;
    font-weight: bold;
}

.recording-timer {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

.close-recording {
    background: none;
    border: none;
    color: #ff4545;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-preview {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
}

#recordingVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recording-controls {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.recording-effects {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.effect-btn {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.effect-btn:hover {
    background: rgba(0, 255, 136, 0.4);
}

.recording-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recording-stop-btn {
    width: 60px;
    height: 60px;
    background: #ff4545;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recording-stop-btn:hover {
    transform: scale(1.1);
}

.recording-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

#recordingProgress {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    width: 0%;
    transition: width 0.5s ease;
}

/* Photo Carousel Creator */
.photo-carousel-creator {
    max-width: 800px;
}

.carousel-creator {
    padding: 20px;
}

.photo-upload-area {
    border: 3px dashed rgba(0, 255, 136, 0.4);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 255, 136, 0.05);
}

.photo-upload-area:hover {
    border-color: rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.1);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.upload-text {
    color: #00ff88;
    font-size: 1.1rem;
}

.selected-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

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

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 69, 69, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-options {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    color: #00ff88;
    margin-bottom: 8px;
    font-weight: bold;
}

.option-group select,
.option-group input[type="range"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: #ffffff;
    padding: 8px;
    border-radius: 8px;
}

.music-upload-notice {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 69, 69, 0.1);
    border: 2px solid rgba(255, 69, 69, 0.3);
    border-radius: 8px;
}

.upload-music-btn {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.upload-music-btn:hover {
    background: rgba(0, 255, 136, 0.4);
}

/* Responsive: Tablet (991px) */
@media (max-width: 991px) {
    .social-post {
        padding: 15px;
    }

    .live-sidebar {
        width: 280px;
    }

    .live-content {
        flex-direction: column;
    }

    .video-container {
        min-height: 300px;
    }
}

/* Responsive: Small Mobile (480px) */
@media (max-width: 480px) {
    .post-header {
        flex-direction: column;
        gap: 8px;
    }

    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .post-actions {
        justify-content: space-between;
    }

    .action-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .live-stream-interface {
        width: calc(100% - 20px);
        bottom: 5px;
        right: 5px;
        left: 5px;
    }

    .social-modal .modal-content {
        width: 100%;
        border-radius: 0;
    }

    .create-buttons {
        flex-direction: column;
    }

    .live-sidebar {
        width: 100%;
    }

    .gifts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .recording-container {
        width: 100%;
        border-radius: 0;
    }
}

/* Responsive: Console/TV (1920px+) */
@media (min-width: 1920px) {
    .social-post {
        padding: 30px;
    }

    .user-avatar {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .post-text {
        font-size: 1.2rem;
    }

    .action-btn {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .live-sidebar {
        width: 450px;
    }

    .create-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .gifts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}