 /* MODERN MOBILE-FIRST DESIGN */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ANIMATED GRADIENT BACKGROUND */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
            animation: gradientShift 15s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.8; transform: scale(1.1) rotate(180deg); }
        }

        /* Laravel User Info Bar */
        .laravel-user-bar {
            background: linear-gradient(135deg, #ff006e, #e91e63);
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 
                0 8px 25px rgba(255, 0, 110, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .laravel-user-bar i {
            margin-right: 8px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }

        /* Alert styles for gallery messages */
        .alert {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .alert.success {
            background: rgba(40, 167, 69, 0.2);
            color: #51cf66;
            border: 1px solid #51cf66;
        }

        .alert.error {
            background: rgba(220, 53, 69, 0.2);
            color: #ff6b6b;
            border: 1px solid #ff6b6b;
        }

        .alert.show {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* MAIN CONTAINER - MOBILE FIRST */
        .stream-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-height: calc(100vh - 60px);
        }

        /* VIDEO SECTION - OPTIMIZED FOR MOBILE */
        .video-section {
            background: linear-gradient(145deg, #1a1a1a, #252525);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 0, 110, 0.1);
            position: relative;
            overflow: hidden;
        }

        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #ffd700, #ff006e);
            opacity: 0.6;
        }

        .video-wrapper {
            position: relative;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            margin-bottom: 16px;
        }

        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 0, 110, 0.1) 0%,
                transparent 40%,
                transparent 60%,
                rgba(255, 215, 0, 0.1) 100%
            );
            pointer-events: none;
        }

        .offline-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .offline-placeholder .model-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff006e, #ffd700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 16px;
            box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
        }

        .offline-placeholder i {
            font-size: 3rem;
            color: #666;
            margin-bottom: 20px;
        }

        .offline-placeholder h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ccc;
        }

        .stream-badges {
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 10;
        }

        .live-indicator {
            background: linear-gradient(45deg, #dc3545, #ff4757);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
        }

        .stream-price-tag {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .viewer-count {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* MODEL INFO - COMPACT FOR MOBILE */
        .model-info {
    display: flex
;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-direction: column;
}

        .model-avatar-main {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff006e, #ffd700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
            flex-shrink: 0;
            object-fit: cover;
            border: 3px solid;
            border-image: linear-gradient(45deg, #ff006e, #ffd700) 1;
        }

        .model-details h1 {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff006e, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
        }

        .model-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .tag {
            background: rgba(255, 0, 110, 0.2);
            color: #ff99cc;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            border: 1px solid rgba(255, 0, 110, 0.3);
        }

        .stream-stats {
            display: flex;
            gap: 12px;
            font-size: 0.8rem;
            color: #ccc;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 8px;
            border-radius: 12px;
        }

        /* INTERACTIVE SECTIONS */
        .interactive-section {
            background: linear-gradient(145deg, #1a1a1a, #252525);
            border-radius: 16px;
            border: 1px solid rgba(255, 0, 110, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }

        /* TAB SYSTEM */
        .tab-container {
            display: flex;
            flex-direction: column;
            height: 500px;
        }

        .tab-headers {
            display: flex;
            background: linear-gradient(135deg, #222, #2a2a2a);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tab-header {
            flex: 1;
            padding: 12px 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            border: none;
            color: #ccc;
            font-size: 0.8rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .tab-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #ffd700);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .tab-header.active {
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 215, 0, 0.05));
        }

        .tab-header.active::before {
            transform: scaleX(1);
        }

        .tab-header:hover:not(.active) {
            color: #ff99cc;
            background: rgba(255, 255, 255, 0.05);
        }

        .tab-content {
            flex: 1;
            display: none;
            flex-direction: column;
            height: calc(100% - 60px);
        }

        .tab-content.active {
            display: flex;
        }

        /* CHAT TAB CONTENT */
        .chat-tab-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .chat-header {
            background: rgba(0, 0, 0, 0.2);
            padding: 8px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-title {
            font-size: 0.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #ff006e, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chat-online-count {
            background: #28a745;
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 0.6rem;
            font-weight: 600;
        }

        .chat-messages {
            flex: 1;
            padding: 12px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #666 transparent;
        }

        .chat-messages::-webkit-scrollbar {
            width: 4px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: #666;
            border-radius: 2px;
        }

        .chat-message {
            margin-bottom: 8px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            font-size: 0.8rem;
            line-height: 1.4;
            animation: messageSlide 0.3s ease;
            border-left: 3px solid transparent;
        }

        .chat-message.tip {
            background: rgba(255, 215, 0, 0.1);
            border-left-color: #ffd700;
            color: #ffed4e;
        }

        .chat-message.system {
            background: rgba(255, 0, 110, 0.1);
            border-left-color: #ff006e;
            color: #ff99cc;
        }

        .chat-message.streamer {
            background: rgba(0, 255, 127, 0.1);
            border-left-color: #00ff7f;
            color: #7fffd4;
            border: 1px solid rgba(0, 255, 127, 0.3);
        }

        .chat-input-wrapper {
            padding: 14px 16px 55px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 8px;
        }

        .chat-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 16px;
            color: white;
            font-size: 0.8rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .chat-input:focus {
            border-color: #ff006e;
            box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
        }

        .send-btn {
            background: linear-gradient(135deg, #ff006e, #e91e63);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
        }

        /* TIP TAB CONTENT */
        .tip-tab-content {
            padding: 16px;
            overflow-y: auto;
            height: 100%;
        }

        .tip-tab-content::-webkit-scrollbar {
            width: 4px;
        }

        .tip-tab-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .tip-tab-content::-webkit-scrollbar-thumb {
            background: #666;
            border-radius: 2px;
        }

        /* TIP SECTION - MOBILE OPTIMIZED */
        .universal-tip-section {
            /* Remove previous styles since it's now in tab */
        }

        .tip-header {
            text-align: center;
            margin-bottom: 16px;
        }

        .tip-title {
            font-size: 1.1rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff006e, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .tip-subtitle {
            font-size: 0.8rem;
            color: #ccc;
        }

        .balance-display {
            background: linear-gradient(135deg, #333, #444);
            border: 2px solid #ff006e;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            margin-bottom: 16px;
        }

        .balance-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffd700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 8px;
        }

        .buy-coins-btn {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #000;
            border: none;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.7rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* COIN PACKAGES GRID - MOBILE OPTIMIZED */
        .coin-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }

        .coin-package {
            background: linear-gradient(135deg, #2a2a2a, #333);
            padding: 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 0, 110, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .coin-package::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 0, 110, 0.15), 
                transparent);
            transition: left 0.6s ease;
        }

        .coin-package:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: #ff006e;
            box-shadow: 
                0 12px 24px rgba(255, 0, 110, 0.3),
                0 0 20px rgba(255, 0, 110, 0.2);
        }

        .coin-package:hover::before {
            left: 100%;
        }

        .coin-package.popular {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .coin-package.popular::before {
            content: "POPULAR";
            position: absolute;
            top: -8px;
            right: 20px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
            padding: 4px 12px;
            border-radius: 0 0 8px 8px;
            font-size: 10px;
            font-weight: bold;
        }

        .package-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .package-label {
            font-size: 0.9rem;
            font-weight: bold;
            color: #ff006e;
            margin-bottom: 4px;
        }

        .coin-amount {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 4px;
        }

        .coin-price {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 8px;
        }

        .discount-badge {
            background: linear-gradient(45deg, #ff006e, #e91e63);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .package-details {
            margin: 10px 0;
            color: #ccc;
            font-size: 0.8rem;
            text-align: center;
        }

        .coin-rate {
            color: #999;
            font-size: 0.7rem;
            margin-top: 4px;
        }

        /* QUICK TIPS GRID - MOBILE OPTIMIZED */
        .quick-tips {
            margin-bottom: 16px;
        }

        .quick-tips-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffd700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tip-buttons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .tip-btn {
            background: linear-gradient(135deg, #ff006e, #e91e63);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 4px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            position: relative;
            overflow: hidden;
        }

        .tip-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .tip-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
        }

        .tip-btn:hover::before {
            left: 100%;
        }

        .tip-btn:active {
            transform: translateY(0) scale(0.95);
        }

        /* TIP MENU */
        .tip-menu {
            margin-bottom: 16px;
        }

        .tip-menu-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ff006e;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tip-menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            margin-bottom: 16px;
        }

        .tip-item {
            background: linear-gradient(135deg, #2a2a2a, #333);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 10px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .tip-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .tip-item:hover {
            transform: translateX(4px);
            border-color: #ff006e;
            background: linear-gradient(135deg, #ff006e, #e91e63);
            color: white;
        }

        .tip-item:hover::before {
            left: 100%;
        }

        .tip-action {
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tip-coins {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            min-width: 50px;
            text-align: center;
        }

        /* CUSTOM TIP */
        .custom-tip-section {
            background: rgba(255, 0, 110, 0.1);
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 16px;
        }

        .custom-tip-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ff006e;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .custom-tip-input {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
            flex-direction: column;
        }

        .custom-tip-input input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 8px 12px;
            color: white;
            font-size: 0.8rem;
            outline: none;
        }

        .custom-tip-input input:focus {
            border-color: #ff006e;
            box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
        }

        .custom-tip-input textarea {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 8px 12px;
            color: white;
            font-size: 0.8rem;
            outline: none;
            resize: vertical;
            min-height: 60px;
        }

        .custom-tip-input textarea:focus {
            border-color: #ff006e;
            box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
        }

        .send-custom-tip-btn {
            width: 100%;
            background: linear-gradient(135deg, #ff006e, #e91e63);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .send-custom-tip-btn:hover {
           transform: translateY(-1px);
           box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
       }

       /* GUEST NOTICE */
       .guest-tip-notice {
           background: linear-gradient(45deg, #ffd700, #ffed4e);
           color: #000;
           padding: 12px;
           border-radius: 12px;
           text-align: center;
           margin-bottom: 16px;
           border: 2px solid #ff006e;
       }

       .guest-tip-notice strong {
           font-weight: 700;
           margin-bottom: 8px;
           font-size: 0.9rem;
           display: block;
       }

       .guest-actions {
           display: flex;
           gap: 8px;
           justify-content: center;
           flex-wrap: wrap;
           margin-top: 12px;
       }

       .guest-actions .btn {
           background: linear-gradient(135deg, #ff006e, #e91e63);
           color: white;
           border: none;
           padding: 6px 12px;
           border-radius: 16px;
           font-size: 0.7rem;
           font-weight: 600;
           text-decoration: none;
           cursor: pointer;
           transition: all 0.3s ease;
           display: inline-flex;
           align-items: center;
           gap: 4px;
       }

       .guest-actions .btn:hover {
           transform: translateY(-1px);
           box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
       }

       /* GALLERY SECTION STYLES */
       .gallery-section {
           background: linear-gradient(145deg, #1a1a1a, #252525);
           border-radius: 16px;
           border: 1px solid rgba(255, 0, 110, 0.1);
           box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
           overflow: hidden;
           margin-top: 16px;
           height: 500px;
           display: flex;
           flex-direction: column;
       }

       .gallery-header {
           padding: 16px;
           border-bottom: 1px solid rgba(255, 255, 255, 0.1);
           flex-shrink: 0;
       }

       .gallery-title {
           font-size: 1.1rem;
           font-weight: 700;
           background: linear-gradient(135deg, #ff006e, #ffd700);
           -webkit-background-clip: text;
           -webkit-text-fill-color: transparent;
           background-clip: text;
           margin-bottom: 8px;
       }

       .gallery-subtitle {
           font-size: 0.8rem;
           color: #ccc;
       }

       /* Gallery Content Area with Scroll */
       .gallery-content {
           flex: 1;
           overflow-y: auto;
           padding: 16px;
           scrollbar-width: thin;
           scrollbar-color: #666 transparent;
       }

       .gallery-content::-webkit-scrollbar {
           width: 4px;
       }

       .gallery-content::-webkit-scrollbar-track {
           background: transparent;
       }

       .gallery-content::-webkit-scrollbar-thumb {
           background: #666;
           border-radius: 2px;
       }

       /* No Content State */
       .no-gallery-content {
           text-align: center;
           padding: 40px 20px;
           color: #ccc;
       }

       .no-gallery-content h4 {
           margin: 0 0 10px 0;
           color: #fff;
       }

       /* Gallery Grid */
       .gallery-grid {
           display: grid;
           grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
           gap: 12px;
           margin-bottom: 20px;
       }

       .gallery-item {
           background: #2a2a2a;
           border-radius: 12px;
           overflow: hidden;
           cursor: pointer;
           transition: all 0.3s ease;
           position: relative;
       }

       .gallery-item:hover {
           transform: translateY(-2px);
           box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
       }

       .gallery-item.locked {
           opacity: 0.7;
           position: relative;
           overflow: hidden;
       }

       .gallery-item.locked::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: rgba(0, 0, 0, 0.7);
           z-index: 1;
           opacity: 0;
           transition: opacity 0.3s ease;
       }

       .gallery-item.locked:hover::before {
           opacity: 1;
       }

       .gallery-item.locked:hover .gallery-lock-overlay {
           opacity: 1;
           transform: scale(1.1);
       }

       .gallery-image-wrapper {
           position: relative;
           aspect-ratio: 1;
           overflow: hidden;
       }

       .gallery-image-wrapper img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.3s ease;
       }

       /* Blur effect for locked images */
       .gallery-image-blurred {
           filter: blur(10px) brightness(0.7);
           transition: filter 0.3s ease;
       }

       .gallery-item:hover .gallery-image-wrapper img:not(.gallery-image-blurred) {
           transform: scale(1.05);
       }

       /* Lock Overlay */
       .gallery-lock-overlay {
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: rgba(0, 0, 0, 0.8);
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           color: #ffd700;
           transition: all 0.3s ease;
       }

       .lock-icon {
           font-size: 1.5rem;
           margin-bottom: 8px;
           text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
           animation: lockPulse 2s infinite;
       }

       @keyframes lockPulse {
           0%, 100% { opacity: 1; transform: scale(1); }
           50% { opacity: 0.8; transform: scale(1.1); }
       }

       .unlock-text {
           font-size: 0.7rem;
           font-weight: 600;
           text-transform: uppercase;
           text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
       }

       /* Price Tag */
       .gallery-price-tag {
           position: absolute;
           top: 8px;
           right: 8px;
           background: linear-gradient(45deg, #ffd700, #ffed4e);
           color: #000;
           padding: 4px 8px;
           border-radius: 12px;
           font-size: 0.6rem;
           font-weight: bold;
       }

       /* Gallery Item Info */
       .gallery-item-info {
           padding: 8px;
       }

       .gallery-item-date {
           font-size: 0.6rem;
           color: #999;
           margin-bottom: 4px;
       }

       .gallery-item-description {
           font-size: 0.7rem;
           color: #ccc;
           line-height: 1.3;
       }

       /* Unlock Section */
       .gallery-unlock-section {
           background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 215, 0, 0.05));
           border: 1px solid rgba(255, 0, 110, 0.3);
           border-radius: 12px;
           padding: 20px;
           text-align: center;
           margin-top: 20px;
       }

       .unlock-content h4 {
           color: #ff006e;
           margin-bottom: 10px;
           font-size: 1rem;
       }

       .unlock-content p {
           color: #ccc;
           margin-bottom: 15px;
           font-size: 0.8rem;
       }

       /* Progress Bar */
       .unlock-progress {
           margin: 15px 0;
       }

       .progress-bar {
           width: 100%;
           height: 8px;
           background: rgba(255, 255, 255, 0.1);
           border-radius: 4px;
           overflow: hidden;
           margin-bottom: 8px;
       }

       .progress-fill {
           height: 100%;
           background: linear-gradient(90deg, #ff006e, #ffd700);
           transition: width 0.3s ease;
       }

       .progress-text {
           font-size: 0.7rem;
           color: #ccc;
       }

       /* Unlock Actions */
       .unlock-actions {
           display: flex;
           gap: 10px;
           justify-content: center;
           flex-wrap: wrap;
           margin-top: 15px;
       }

       .btn-unlock-gallery,
       .btn-login-unlock {
           background: linear-gradient(135deg, #ff006e, #e91e63);
           color: white;
           border: none;
           padding: 8px 16px;
           border-radius: 20px;
           font-size: 0.7rem;
           font-weight: 600;
           cursor: pointer;
           transition: all 0.3s ease;
       }

       .btn-unlock-gallery:hover,
       .btn-login-unlock:hover {
           transform: translateY(-1px);
           box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
       }

       /* Gallery Modal */
       .gallery-modal {
           display: none;
           position: fixed;
           z-index: 10000;
           left: 0;
           top: 0;
           width: 100%;
           height: 100%;
           background-color: rgba(0, 0, 0, 0.9);
           overflow: auto;
       }

       .gallery-modal.active {
           display: block;
       }

       .gallery-modal-content {
           position: relative;
           background: #1a1a1a;
           margin: 5% auto;
           padding: 20px;
           border-radius: 15px;
           width: 90%;
           max-width: 600px;
           text-align: center;
       }

       .gallery-modal-close {
           position: absolute;
           top: 15px;
           right: 20px;
           color: #aaa;
           font-size: 28px;
           font-weight: bold;
           cursor: pointer;
       }

       .gallery-modal-close:hover {
           color: #fff;
       }

       #galleryModalImage {
           max-width: 100%;
           max-height: 70vh;
           border-radius: 10px;
           margin-bottom: 15px;
       }

       .gallery-modal-info {
           color: #ccc;
       }

       .gallery-modal-actions {
           margin-top: 15px;
       }

       .btn-tip-for-image {
           background: linear-gradient(135deg, #ff006e, #e91e63);
           color: white;
           border: none;
           padding: 10px 20px;
           border-radius: 20px;
           font-size: 0.8rem;
           font-weight: 600;
           cursor: pointer;
           transition: all 0.3s ease;
       }

       .btn-tip-for-image:hover {
           transform: translateY(-1px);
           box-shadow: 0 4px 12px rgba(255, 0, 110, 0.4);
       }

       /* Gallery Unlock Package Styles */
       .gallery-unlock-package {
           transition: all 0.3s ease;
           cursor: pointer;
       }

       .gallery-unlock-package:hover {
           transform: translateY(-2px);
           box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3) !important;
       }

       /* ANIMATIONS */
       @keyframes messageSlide {
           from {
               opacity: 0;
               transform: translateX(-10px);
           }
           to {
               opacity: 1;
               transform: translateX(0);
           }
       }

       @keyframes pulse {
           0%, 100% { opacity: 1; }
           50% { opacity: 0.7; }
       }

       /* FLOATING ELEMENTS */
       .floating-coins {
           position: fixed;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           pointer-events: none;
           z-index: 9999;
       }

       .floating-coin {
           position: absolute;
           font-size: 1.5rem;
           color: #ffd700;
           animation: floatUp 3s ease-out forwards;
           pointer-events: none;
           text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
       }

       @keyframes floatUp {
           0% {
               opacity: 1;
               transform: translateY(0) rotate(0deg) scale(1);
           }
           50% {
               opacity: 1;
               transform: translateY(-100px) rotate(180deg) scale(1.2);
           }
           100% {
               opacity: 0;
               transform: translateY(-200px) rotate(360deg) scale(0.8);
           }
       }

       /* RESPONSIVE BREAKPOINTS */
       @media (min-width: 640px) {
           .stream-container {
               padding: 20px;
               gap: 20px;
           }
           
           .video-section {
               padding: 20px;
           }
           
           .interactive-section {
               grid-template-columns: 1fr 1fr;
           }
           
           .chat-section {
               height: 400px;
           }
           
           .tip-buttons {
               grid-template-columns: repeat(6, 1fr);
           }
           
           .custom-tip-input {
               flex-direction: row;
           }

           .coin-pricing-grid {
               grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
           }

           .gallery-grid {
               grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
               gap: 16px;
           }
           
           .unlock-actions {
               flex-direction: row;
           }

           .tab-header {
               font-size: 0.9rem;
               padding: 12px 16px;
           }
       }

       @media (min-width: 768px) {
           .model-details h1 {
               font-size: 1.8rem;
           }
           
           .model-avatar-main {
               width: 80px;
               height: 80px;
               font-size: 2rem;
           }
           
           .tip-buttons {
               grid-template-columns: repeat(8, 1fr);
           }

           .coin-pricing-grid {
               grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
           }

           .gallery-grid {
               grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
               gap: 20px;
           }
       }

       @media (min-width: 1024px) {
           .stream-container {
               grid-template-columns: 2fr 1fr;
               grid-template-rows: auto;
               align-items: start;
               display: grid;
           }
           
           .video-section {
               grid-row: span 2;
           }
           
           .interactive-section {
               grid-template-columns: 1fr;
               gap: 20px;
           }
           
           .chat-section {
               height: 500px;
           }
       }

       @media (min-width: 1200px) {
           .stream-container {
               padding: 24px;
               gap: 24px;
           }
       }

       /* ENHANCED BUTTONS */
       .btn, .buy-coins-btn, .btn-buy-coins {
           background: linear-gradient(135deg, #ff006e, #e91e63);
           color: white;
           border: none;
           border-radius: 25px;
           padding: 12px 24px;
           font-weight: 600;
           cursor: pointer;
           transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
           position: relative;
           overflow: hidden;
           text-decoration: none;
           display: inline-flex;
           align-items: center;
           justify-content: center;
           gap: 8px;
       }

       .btn::before, .buy-coins-btn::before, .btn-buy-coins::before {
           content: '';
           position: absolute;
           top: 0;
           left: -100%;
           width: 100%;
           height: 100%;
           background: linear-gradient(90deg, 
               transparent, 
               rgba(255, 255, 255, 0.2), 
               transparent);
           transition: left 0.5s ease;
       }

       .btn:hover, .buy-coins-btn:hover, .btn-buy-coins:hover {
           transform: translateY(-3px);
           box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
       }

       .btn:hover::before, .buy-coins-btn:hover::before, .btn-buy-coins:hover::before {
           left: 100%;
       }

       /* SUBSCRIPTION REQUIRED OVERLAY */
       .subscription-required {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0,0,0,0.9);
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           text-align: center;
           z-index: 10;
       }

       .subscription-required i {
           font-size: 3rem;
           color: #ff006e;
           margin-bottom: 20px;
       }

       .subscription-required .btn {
           background: linear-gradient(45deg, #ff006e, #e91e63);
           color: white;
           padding: 15px 30px;
           border: none;
           border-radius: 25px;
           cursor: pointer;
           font-size: 16px;
           font-weight: 500;
           text-decoration: none;
           display: inline-block;
           transition: all 0.3s ease;
           margin-top: 15px;
       }

       /* HIGH CONTRAST MODE */
       @media (prefers-contrast: high) {
           .video-section,
           .chat-section,
           .universal-tip-section {
               border: 2px solid #fff;
               background: #000;
           }
           
           .tip-btn,
           .btn {
               border: 2px solid #fff;
           }
       }

       /* REDUCED MOTION */
       @media (prefers-reduced-motion: reduce) {
           *,
           *::before,
           *::after {
               animation-duration: 0.01ms !important;
               animation-iteration-count: 1 !important;
               transition-duration: 0.01ms !important;
           }
           
           body::before {
               animation: none;
           }
       }

       /* LANDSCAPE MOBILE OPTIMIZATION */
       @media (max-height: 500px) and (orientation: landscape) {
           .video-wrapper {
               aspect-ratio: 2/1;
           }
           
           .chat-section {
               height: 200px;
           }
           
           .stream-container {
               padding: 8px;
               gap: 8px;
           }
       }

       /* DARK MODE ADJUSTMENTS */
       @media (prefers-color-scheme: dark) {
           .chat-input {
               background: rgba(255, 255, 255, 0.05);
           }
           
           .custom-tip-input input,
           .custom-tip-input textarea {
               background: rgba(255, 255, 255, 0.05);
           }
       }
       
       
       
       .top {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.brand-age {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}
.site-name {
    font-weight: 700;
    font-size: 1rem;
    color: #ff006e;
}
.age-note {
    font-size: 0.65rem;
    color: #aaa;
}
.links {
    display: flex;
    gap: 1rem;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}
.social {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    display: block;
}
.bottom {
    border-top: 1px solid #2a2a4f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}
.small {
    margin: 0;
    color: #999;
}
.copy {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .top {
        flex-direction: column;
        align-items: flex-start;
    }
    .links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
    .social {
        order: 2;
    }
    .brand-age {
        order: 1;
    }
    .bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}