 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0a0a0a; color: #ffffff; min-height: 100vh; overflow-x: hidden; transition: padding-left 0.3s ease; } /* Animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } @keyframes glow { 0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.2), 0 0 10px rgba(0, 255, 136, 0.2); } 50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.4); } } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } .loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; } .loading.dark { border: 3px solid rgba(0, 0, 0, 0.3); border-top-color: #0a0a0a; } @keyframes spin { to { transform: rotate(360deg); } } /* Efek Getar untuk Form Error */ @keyframes shake { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } } .shake { animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both; } /* --- LOGIN & REGISTRATION --- */ .login-container { position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; display: flex; flex-direction: column; display: none; /* Sembunyikan default biar gak kedip saat buka web */ align-items: center; justify-content: center; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); padding: 20px; overflow-y: auto; overscroll-behavior-y: none; z-index: 10000; } .logo-container { text-align: center; margin-bottom: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; /* KRUSIAL: Memungkinkan area ini mengecil secara fleksibel saat keyboard muncul */ flex: 0 1 auto; min-height: 0; } .logo { width: 210px; /* Ukuran Desktop tetap besar & gagah */ max-width: 80%; height: auto; /* Kita hapus max-height: 15vh agar tidak menciut di desktop */ object-fit: contain; animation: pulse 2s ease-in-out infinite; max-height: 22dvh; /* BUGFIX: Cegah logo terlalu besar dan overflow di viewport kecil */ flex-shrink: 0 !important; min-height: 0; } .app-title { font-size: 32px; font-weight: bold; color: #00ff88; margin-top: 5px; text-transform: uppercase; flex-shrink: 1; } .tagline { font-size: 16px; color: #999; margin-top: 2px; flex-shrink: 1; } .sub-tagline { font-size: 14px; color: #888; margin-top: 5px; max-width: 350px; line-height: 1.4; margin-left: auto; margin-right: auto; flex-shrink: 1; } .credit-tagline { font-size: 12px; color: #666; margin-top: 5px; font-style: italic; flex-shrink: 1; } .login-form { background: rgba(26, 26, 46, 0.8); backdrop-filter: blur(10px); padding: 30px; border-radius: 20px; border: 1px solid rgba(0, 255, 136, 0.3); width: 100%; max-width: 400px; margin: 10px 0; /* KRUSIAL: Form tidak boleh mengecil sedikitpun */ flex-shrink: 0; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 8px; color: #00ff88; } .input-wrapper { position: relative; } .form-input { width: 100%; padding: 12px 16px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 10px; color: #fff; font-size: 16px; } .password-toggle { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #666; } .form-input:focus { outline: none; border-color: #00ff88; box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); } .login-button { width: 100%; padding: 14px; background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%); border: none; border-radius: 10px; color: #0a0a0a; font-size: 16px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; } .login-button .loading { border-top-color: #0a0a0a; } .login-button:hover { transform: translateY(-2px); } .login-button:disabled { background: #555; cursor: not-allowed; transform: none; } .form-footer-link { text-align: center; margin-top: 10px; } .form-footer-link a { color: #00ff88; text-decoration: none; cursor: pointer; } .error-message { color: #ff4444; font-size: 12px; margin-top: 5px; text-align: center; } /* --- DASHBOARD & GENERAL LAYOUT --- */ .dashboard-container { display: none; } .sidebar { position: fixed; left: 0; top: 0; width: 260px; height: 100vh; background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%); border-right: 1px solid rgba(0, 255, 136, 0.2); z-index: 100; overflow-y: auto; padding-bottom: 20px; transition: transform 0.3s ease; } .sidebar.collapsed { transform: translateX(-100%); } .sidebar-header { padding: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(0, 255, 136, 0.2); justify-content: space-between; } .sidebar-header-left { display: flex; align-items: center; gap: 10px; } .close-sidebar-btn { background: none; border: none; color: #999; font-size: 28px; cursor: pointer; display: none; /* Hidden on desktop */ } .close-sidebar-btn:hover { color: #00ff88; } .sidebar-logo { width: 40px; } .sidebar-title { color: #00ff88; font-size: 18px; font-weight: bold; } .sidebar-menu-section { margin-top: 20px; } .section-title { padding: 10px 20px; font-size: 12px; color: #666; text-transform: uppercase; } .menu-item { padding: 15px 20px; cursor: pointer; display: flex; align-items: center; gap: 15px; color: #999; text-decoration: none; transition: all 0.2s ease; } .menu-item:hover { background: rgba(0, 255, 136, 0.1); color: #00ff88; transform: translateX(3px); } .menu-item:active { transform: translateX(3px) scale(0.98); background: rgba(0, 255, 136, 0.2); } .menu-item.active { background: rgba(0, 255, 136, 0.2); color: #00ff88; border-left: 3px solid #00ff88; } /* --- FINAL TOMBOL SIDEBAR (ANIMASI FLOATING & HIGHLIGHT) --- */ /* 1. TOMBOL UPGRADE (Orange - Floating) */ .upgrade-button-sidebar { margin: 20px 20px 10px 20px; padding: 15px; text-align: center; border-radius: 12px; /* Warna Tetap Orange */ background: linear-gradient(135deg, #ffaa00 0%, #ff8c00 100%); color: #fff; font-weight: 800; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; /* Animasi Halus */ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2); } /* Efek Hover Upgrade */ .upgrade-button-sidebar:hover { transform: translateY(-5px); /* Melayang ke atas */ box-shadow: 0 10px 25px rgba(255, 140, 0, 0.6); /* Glow Orange */ filter: brightness(1.1); } /* 2. TOMBOL PARTNER (Hijau Neon - Beda & Floating) */ .affiliate-button-sidebar { margin: 10px 20px 20px 20px; padding: 14px; /* Ukuran pas */ text-align: center; border-radius: 12px; /* Background Gelap Transparan + Border Hijau */ background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); color: #00ff88; /* Teks Hijau */ font-weight: 700; cursor: pointer; /* Animasi Halus */ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; } /* Efek Hover Partner */ .affiliate-button-sidebar:hover { transform: translateY(-5px); /* Melayang ke atas */ background: #00ff88; /* Isi jadi Hijau Penuh */ color: #000; /* Teks jadi Hitam */ box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); /* Glow Hijau Neon */ border-color: #00ff88; } .main-content { margin-left: 260px; min-height: 100vh; transition: margin-left 0.3s ease, transform 0.3s ease; padding-top: 70px; /* Jarak agar konten tidak tertutup header */ } .main-content.sidebar-collapsed { margin-left: 0; } .dashboard-header { background: #1a1a2e; padding: 20px; border-bottom: 1px solid rgba(0, 255, 136, 0.2); display: flex; justify-content: space-between; align-items: center; position: fixed; /* Header Nempel Permanen */ top: 0; right: 0; left: 260px; z-index: 98; /* Di bawah Overlay & Sidebar */ min-height: 70px; height: auto !important; transition: left 0.3s ease; backdrop-filter: blur(10px); } .main-content.sidebar-collapsed .dashboard-header { left: 0; } /* Overlay (Tirai) untuk Mobile */ .sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 99; /* Di atas Header, di bawah Sidebar */ display: none; opacity: 0; transition: opacity 0.3s ease; } .sidebar-overlay.active { display: block; opacity: 1; } /* Khusus Mobile: Header Full Width & Overlay Aktif */ @media (max-width: 992px) { .dashboard-header { left: 0 !important; right: 0 !important; padding: 12px 14px; } .main-content { padding-top: 190px !important; /* Jarak pas untuk header 3 baris */ } } .sidebar-toggle { background: none; border: none; color: #00ff88; font-size: 24px; cursor: pointer; } .welcome-message { font-size: 24px; } .welcome-message span { color: #00ff88; } .user-status { font-size: 14px; padding: 5px 10px; border-radius: 20px; margin-left: 10px; vertical-align: middle; } .user-status.free { background: #444; color: #ccc; } .user-status.pro, .user-status.master, .user-status.admin { background: linear-gradient(135deg, #ffaa00 0%, #ff8c00 100%); color: #fff; } /* === New status badges === */ .user-status.pro_contributor{ background: linear-gradient(135deg,#00c2ff 0%,#00ffa3 100%); color:#061519; } .user-status.master_contributor{ background: linear-gradient(135deg,#7c3aed 0%,#ec4899 100%); color:#fff; } /* KOREKSI FINAL: FOUNDERPLUS BADGE (KECIL & UTUH) */ .user-status.founderplus{ background: linear-gradient(135deg,#FFD700 0%,#ff4d4f 100%); color:#0a0a0a; position: relative; /* KOREKSI: Kurangi ukuran dan padding agar teks "FounderPlus" muat tanpa mendorong layout */ padding: 3px 8px; font-size: 11px; white-space: nowrap; } .user-status.founderplus::before{ content:"👑"; margin-right:4px; } /* KODE INI MENGATUR JARAK AGAR LAYOUT TIDAK BERTABRAKAN */ .header-left { display: flex; align-items: center; font-size: 1.1rem; font-weight: 500; color: #fff; gap: 10px; /* Tambahkan jarak antara nama user dan badge/saldo/kredit */ } .header-right { display: flex; } .saldo-display { background-color: rgba(0,0,0,0.3); padding: 8px 15px; border-radius: 20px; display: flex; align-items: center; gap: 10px; } .saldo-refresh-btn { background: none; border: none; cursor: pointer; padding: 0; color: #00ff88; font-size: 18px; line-height: 1; } @keyframes spin-once { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .saldo-refresh-btn.spinning { animation: spin-once 0.5s linear; } .logout-button { padding: 8px 20px; background: transparent; border: 1px solid #00ff88; border-radius: 20px; color: #00ff88; cursor: pointer; } .sub-page { display: none; padding: 30px; } .page-header { margin-bottom: 30px; } .page-title { font-size: 32px; color: #00ff88; } .page-subtitle { color: #999; } /* --- DASHBOARD HOME --- */ #dashboardPage .dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .dashboard-card { background: linear-gradient(145deg, #1a1a2e, #111122); padding: 25px; border-radius: 15px; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; border: 1px solid #333; } .dashboard-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent 40%); opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; transform: scale(0); } .dashboard-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(0, 255, 136, 0.5); } .dashboard-card:hover::before { opacity: 1; transform: scale(1); } .dashboard-card h3 { color: #fff; display: flex; align-items: center; gap: 10px; font-size: 1.2rem; z-index: 2; } .dashboard-card p { font-size: 14px; color: #999; margin-top: 10px; z-index: 2; } .dashboard-card.large { grid-column: span 2; } .dashboard-card.small { grid-column: span 1; } .card-content { flex-grow: 1; z-index: 2; } .card-icon { z-index: 2; font-size: 2.5rem; margin-bottom: 15px; } #upgrade-banner { display: none; } /* --- UPGRADE PAGE (OLD, KEPT FOR REFERENCE, OVERRIDDEN BELOW) --- */ #upgradePage .upgrade-container { /* This is now handled by new scoped styles */ } /* --- DUMMY & NEW FEATURE PAGE STYLES --- */ .feature-container { background: rgba(26, 26, 46, 0.5); border-radius: 20px; padding: 30px; border: 1px solid rgba(0, 255, 136, 0.2); } .dummy-feature { text-align: center; padding: 50px; } .dummy-feature h2 { font-size: 28px; color: #ffaa00; } .dummy-feature p { color: #999; margin-top: 10px; } .input-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; } .single-upload-container { max-width: 300px; margin: 0 auto 20px auto; } .upload-box { border: 2px dashed #444; border-radius: 10px; padding: 10px; text-align: center; cursor: pointer; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: border-color 0.3s ease; position: relative; overflow: hidden; aspect-ratio: 1 / 1; } .upload-box:hover { border-color: #00ff88; } .upload-box img { width: 100%; height: 100%; object-fit: contain; position: absolute; top: 0; left: 0; padding: 10px; } .upload-box.has-image span { display: none; } .upload-box .upload-actions { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; background: rgba(0,0,0,0.7); padding: 5px 10px; border-radius: 8px; opacity: 0; transition: opacity 0.3s ease; z-index: 5; } .upload-box.has-image:hover .upload-actions { opacity: 1; } .upload-actions button { background: none; border: 1px solid #fff; color: #fff; padding: 5px 8px; border-radius: 5px; cursor: pointer; font-size: 12px; } .upload-actions button:hover { background: #00ff88; color: #0a0a0a; border-color: #00ff88; } .aspect-ratio-selector { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; flex-wrap: wrap; /* <--- INI KUNCINYA BOS */ } .aspect-ratio-btn { background: #333; border: 1px solid #555; color: #ccc; padding: 10px 15px; border-radius: 8px; cursor: pointer; } .aspect-ratio-btn.selected { background: #00ff88; color: #0a0a0a; border-color: #00ff88; } .prompt-input { width: 100%; min-height: 100px; padding: 15px; background: rgba(0,0,0,0.5); border: 1px solid #444; border-radius: 10px; color: #fff; font-size: 16px; margin-top: 20px; resize: vertical; /* Enable vertical resize on desktop */ } /* New styles for prompt editor */ .prompt-input-container { position: relative; } .expand-prompt-btn { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); border: 1px solid #555; color: #ccc; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; } .expand-prompt-btn svg { width: 16px; height: 16px; } .result-area { margin-top: 30px; background: rgba(0,0,0,0.3); border-radius: 10px; min-height: 300px; padding: 20px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; } .result-area.hidden { display: none; } .result-image-wrapper, .result-video-wrapper { position: relative; max-width: 100%; width: 100%; max-height: 60vh; } .result-image, .result-video { max-width: 100%; max-height: 60vh; border-radius: 10px; object-fit: contain; /* --- SUNTIKAN ANTI-ILANG (Aman, Gak Ngerubah Ukuran) --- */ transform: translateZ(0); will-change: transform; } .result-actions { display: flex; gap: 15px; margin-top: 15px; } /* Override spesifik untuk video hasil agar ikut flow layout normal */ .result-area .result-video { position: static !important; padding: 0 !important; width: 100% !important; height: auto !important; max-height: 60vh; object-fit: contain; } .result-btn { padding: 10px 20px; border-radius: 8px; border: 1px solid #00ff88; background: transparent; color: #00ff88; cursor: pointer; font-weight: bold; } .result-btn:hover { background: #00ff88; color: #0a0a0a; } /* --- MODALS --- */ .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1000; align-items: center; justify-content: center; } .modal-content { background: rgba(26, 26, 46, 0.95); padding: 40px; border-radius: 20px; border: 1px solid rgba(0, 255, 136, 0.3); max-width: 500px; width: 90%; animation: fadeIn 0.3s ease; transition: max-width 0.3s ease; position: relative; } .modal-content.wide { max-width: 800px; } #promptEditorModal .modal-content { height: 80dvh; display: flex; flex-direction: column; } #promptEditorTextarea { width: 100%; flex-grow: 1; /* Make textarea fill available space */ background: rgba(0,0,0,0.5); border: 1px solid #444; border-radius: 10px; color: #fff; font-size: 16px; padding: 15px; margin-bottom: 20px; resize: none; } .modal-title { color: #00ff88; font-size: 24px; margin-bottom: 20px; text-align: center; } .close-modal { position: absolute; top: 20px; right: 20px; font-size: 28px; color: #666; cursor: pointer; z-index: 10; } .close-modal:hover { color: #00ff88; } #fullscreenModal .modal-content { background: transparent; border: none; padding: 0; width: 95vw; height: 95vh; max-width: none; } #fullscreenImage, #fullscreenVideo { width: 100%; height: 100%; object-fit: contain; } /* --- KODE BARU: Styling Tombol TopUp Modal --- */ .topup-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Bikin responsif */ gap: 20px; margin-bottom: 20px; } /* Tombol Saldo (Req #5) */ .topup-saldo-btn { padding: 25px 15px; /* Bikin JAUH LEBIH TINGGI */ background: #333; border: 1px solid #555; color: #fff; border-radius: 10px; font-size: 18px; /* Tulisan LEBIH BESAR */ cursor: pointer; transition: transform 0.2s ease, background-color 0.2s ease; font-weight: bold; } .topup-saldo-btn:hover { transform: scale(1.05); background: #00ff88; color: #0a0a0a; } /* Wrapper untuk Tombol Kredit + Bonus (Req #3) */ .topup-kredit-wrapper { display: flex; flex-direction: column; gap: 8px; /* Ini agar wrapper-nya 1 kolom jika terlalu sempit */ grid-column: 1 / -1; } /* Tapi 2 kolom jika layar cukup lebar */ @media (min-width: 480px) { .topup-kredit-wrapper { grid-column: auto; /* Kembali normal */ } } /* Tombol Kredit Emas (Req #1, #2) */ .topup-kredit-btn { width: 100%; padding: 15px 10px; /* DIUBAH: Jadi abu-abu seperti tombol saldo */ background: #333; border: 1px solid #555; border-radius: 10px; /* DIUBAH: Teks jadi abu-abu 'inactive' */ color: #ccc; font-size: 18px; font-weight: 700; cursor: pointer; /* DIUBAH: Transisi ditambah background & border */ transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; text-shadow: none; /* Dihapus shadow default */ line-height: 1.4; } .topup-kredit-btn:hover { transform: scale(1.03); /* DIUBAH: Jadi orange menyala saat hover */ background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); border-color: #F97316; color: #FFFFFF; /* Teks jadi putih cerah */ text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Tampilkan shadow lagi */ box-shadow: 0 0 15px rgba(249, 115, 22, 0.6); } .topup-kredit-btn .kredit-bonus { display: block; font-size: 13px; font-weight: normal; color: #999; /* DIUBAH: jadi abu-abu gelap */ transition: color 0.2s ease; /* Tambah transisi */ } /* KODE BARU: Teks bonus jadi cerah saat di-hover */ .topup-kredit-btn:hover .kredit-bonus { color: #f0f0f0; } /* Tombol Bonus Link (Req #3) */ .topup-bonus-link { width: 100%; padding: 8px 10px; background: linear-gradient(135deg, #ffaa00 0%, #ff8c00 100%); border: none; border-radius: 8px; color: #fff; font-size: 12px; font-weight: bold; text-align: center; cursor: pointer; transition: transform 0.2s ease; } .topup-bonus-link:hover { transform: scale(1.03); } /* --- KODE BARU: Styling Notifikasi FOMO (Req #7) --- */ .fomo-popup { display: flex; align-items: center; position: fixed; bottom: -100px; /* Mulai dari luar layar */ left: 50%; transform: translateX(-50%); background: rgba(26, 26, 46, 0.9); backdrop-filter: blur(5px); color: #fff; padding: 12px 20px; border-radius: 10px; border: 1px solid rgba(0, 255, 136, 0.3); z-index: 9999; font-size: 14px; transition: bottom 0.5s ease-in-out; box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3); } .fomo-popup.show { bottom: 20px; /* Muncul ke atas */ } .fomo-popup-icon { font-size: 20px; margin-right: 12px; } .fomo-popup-text strong { color: #00ff88; } /* Mobile styling untuk FOMO */ @media (max-width: 600px) { .fomo-popup { width: 90%; bottom: -100px; left: 5%; transform: none; /* Hapus transform di mobile */ } .fomo-popup.show { bottom: 10px; } } /* --- VIRALIN STYLES --- */ /* --- VIRALIN STYLES --- */ .viralin-container { background: rgba(26, 26, 46, 0.5); border-radius: 20px; padding: 30px; border: 1px solid rgba(0, 255, 136, 0.2); transition: max-height 0.3s ease; } .viralin-container.scrollable { /* Styles removed as per user request */ } .viralin-intro { background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 106, 0.1) 100%); padding: 20px; border-radius: 15px; margin-bottom: 30px; } .viralin-intro h3 { margin-bottom: 10px; } .viralin-intro p { margin-bottom: 10px; line-height: 1.6; color: #ccc; } .viralin-intro p:last-child { margin-bottom: 0; } .input-section { margin-bottom: 25px; } .input-section label { display: block; margin-bottom: 8px; color: #00ff88; } .select-input { width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.5); border: 1px solid #444; border-radius: 10px; color: #fff; } .select-input .niche-subheading { color: #888; font-weight: bold; background-color: #0a0a0a; pointer-events: none; /* Makes the option unclickable */ } .action-button { width: 100%; padding: 15px; background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%); border: none; border-radius: 10px; color: #0a0a0a; font-size: 16px; font-weight: bold; cursor: pointer; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; } .action-button .loading { border-top-color: #0a0a0a; } .action-button:disabled { background: #666; cursor: not-allowed; } .progress-container { display: none; margin-top: 20px; } .progress-bar { width: 100%; height: 30px; background: rgba(0, 0, 0, 0.5); border-radius: 15px; overflow: hidden; position: relative; } .progress-fill { height: 100%; background: linear-gradient(90deg, #00ff88 0%, #00cc6a 100%); transition: width 0.5s ease; } /* 1. KEYFRAME GERAKAN (FIX: KIRI KE KANAN) */ /* Start dari Kiri Luar (-100%) jalan ke Kanan Luar (200%) */ @keyframes highlight-scan { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } } /* 2. BASE BAR (NAVY BLUE DONGKER) */ .progress-fill { height: 100%; /* Dasar Navy Blue Elegan */ background-color: #001f3f; /* Rounded & Depth */ border-radius: 15px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5), 0 0 15px rgba(0, 31, 63, 0.6); /* Transisi Lebar Bar */ transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: absolute; left: 0; top: 0; z-index: 1; overflow: hidden; } /* 3. VISUAL "SENTER LEBAR" (YANG KETUA SUKA) */ .progress-fill.running, .progress-fill.indeterminate { background-color: #001f3f !important; /* GRADIENT TEGAK LURUS & LEBAR (VISUAL KODE LAMA YG BAGUS) */ background-image: linear-gradient( to right, transparent 0%, rgba(255, 255, 255, 0.05) 30%, /* Bias Pinggir */ rgba(255, 255, 255, 0.6) 50%, /* PUSAT CAHAYA (Terang & Soft) */ rgba(255, 255, 255, 0.05) 70%, /* Bias Pinggir */ transparent 100% ) !important; background-repeat: no-repeat; /* Ukuran Cahaya: 50% dari lebar bar (Gendut/Lebar) */ background-size: 50% 100%; } /* --- FASE 1: INTERMEDIATE (Menunggu Job ID) --- */ /* KETUA REQUEST: HARUS CEPAT */ .progress-fill.indeterminate { width: 100% !important; animation: highlight-scan 0.8s infinite linear !important; /* 0.8s = Ngebut */ } /* --- FASE 2: PROGRESS JALAN (Running 0-99%) --- */ /* KETUA REQUEST: LEBIH LAMBAT / NORMAL */ .progress-fill.running { animation: highlight-scan 2s infinite linear !important; /* 2s = Santai/Elegan */ } /* --- FASE 3: FINISHING (100% tapi belum tampil gambar) --- */ /* KETUA REQUEST: BALIK CEPAT LAGI */ .progress-fill[style*="100%"].running { background-size: 50% 100% !important; animation: highlight-scan 0.8s infinite linear !important; /* Balik ke 0.8s (Ngebut) */ } /* 4. SAAT BENAR-BENAR SELESAI (Class Running Dicabut) */ .progress-fill:not(.running):not(.indeterminate) { background: #001f3f !important; background-image: none !important; box-shadow: 0 0 20px rgba(0, 31, 63, 0.9); } /* --- TEXT PERSENTASE (DI TENGAH & DI ATAS BAR) --- */ .progress-text { position: absolute; width: 100%; height: 100%; top: 0; left: 0; /* Flexbox untuk paksa tengah */ display: flex; align-items: center; justify-content: center; z-index: 10; /* Di atas bar biru */ color: #ffffff; font-weight: 800; text-shadow: 0 1px 3px rgba(0,0,0,0.8); /* Shadow biar kebaca di background terang/gelap */ font-size: 14px; letter-spacing: 1px; pointer-events: none; /* Biar ga ngeblok klik */ } /* Update CSS: Mengatur text agar tetap terlihat meski dipindah keluar */ .progress-fill.indeterminate + .progress-text { display: none; } /* Pastikan text selalu di tengah absolute terhadap container utama */ .progress-text { position: absolute !important; left: 0 !important; top: 0 !important; width: 100% !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; z-index: 20 !important; /* Di atas bar biru */ pointer-events: none; text-shadow: 0 1px 2px rgba(0,0,0,0.8); } .progress-message { color: #00e5ff; font-size: 13px; text-align: center; margin-top: 10px; font-weight: 500; text-shadow: 0 0 10px rgba(0, 229, 255, 0.2); } .result-box { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(0, 255, 136, 0.2); border-radius: 15px; padding: 20px; margin-top: 20px; min-height: 250px; max-height: 60vh; overflow-y: auto; color: #ccc; white-space: pre-wrap; display: none; } .result-header { position: sticky; top: -20px; background: rgba(26, 26, 46, 0.9); padding: 15px 0; margin-bottom: 10px; border-bottom: 1px solid #00ff88; display: flex; justify-content: space-between; align-items: center; z-index: 10; } .copy-button { padding: 5px 10px; background: #00ff88; border: none; border-radius: 5px; color: #0a0a0a; cursor: pointer; } /* --- AI MASTERCLASS KIT & ADMIN PANEL --- */ .spoiler-folder { background: rgba(26, 26, 46, 0.5); border: 1px solid #444; border-radius: 20px; padding: 20px; margin-bottom: 20px; cursor: pointer; } .spoiler-header { display: flex; justify-content: space-between; font-size: 20px; font-weight: bold; color: #00ff88; } .spoiler-content { display: none; margin-top: 20px; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; } .product-card { background: #111; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; } .product-card img { width: 100%; height: 200px; object-fit: cover; } .product-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; } .product-info h4 { margin-bottom: 10px; } .product-info p { font-size: 14px; color: #999; flex-grow: 1; } .product-info .details-button { margin-top: 15px; padding: 10px; background: #00ff88; color: #0a0a0a; text-align: center; border-radius: 5px; text-decoration: none; font-weight: bold; } #adminPanelPage .admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; } @media (max-width: 992px) { #adminPanelPage .admin-grid, #dashboardPage .dashboard-grid { grid-template-columns: repeat(2, 1fr); } .dashboard-card.large { grid-column: span 2; } .main-content { margin-left: 0; padding-top: 180px !important; transition: transform 0.3s ease; } .main-content.sidebar-collapsed { transform: none !important; /* Jangan didorong di mobile agar header tetap fixed */ } .sidebar { transform: translateX(-100%); box-shadow: 5px 0 15px rgba(0,0,0,0.5); } .sidebar.collapsed { transform: translateX(0); } .close-sidebar-btn { display: block; } } @media (max-width: 640px) { #dashboardPage .dashboard-grid { grid-template-columns: 1fr; } .dashboard-card.large, .dashboard-card.small { grid-column: span 1; } .dashboard-card.large { flex-direction: column; text-align: center; } .dashboard-card.large .card-icon { margin-right: 0; margin-bottom: 15px; } .prompt-input { resize: none; /* Disable manual resize on mobile */ } } /* --- SCOPED CSS FOR NEW UPGRADE PAGE --- */ /* Hero Section */ .upgrade-hero { text-align: center; padding: 30px 20px; background: linear-gradient(180deg, rgba(26, 26, 46, 0) 0%, rgba(0, 255, 136, 0.05) 100%); border-bottom: 1px solid rgba(0, 255, 136, 0.1); margin-bottom: 30px; } /* Grid Kartu Paket */ .upgrade-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; } /* Kartu Upgrade Style Baru */ .upgrade-card { background: #151525; padding: 0; border-radius: 20px; border: 1px solid #333; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; } .upgrade-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.5); } .upgrade-card-header { padding: 30px; background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%); border-bottom: 1px solid #333; } .upgrade-card-badge { position: absolute; top: 15px; right: 15px; background: rgba(0, 255, 136, 0.2); color: #00ff88; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(0, 255, 136, 0.3); } .upgrade-card-badge.master { background: rgba(255, 170, 0, 0.2); color: #ffaa00; border-color: rgba(255, 170, 0, 0.3); } .upgrade-card h3 { font-size: 28px; color: #fff; margin-bottom: 10px; font-weight: 800; } .upgrade-card .price .price-normal { font-size: 32px; font-weight: bold; color: #fff; letter-spacing: -1px; } .upgrade-card .price small { font-size: 14px; color: #888; font-weight: normal; } .upgrade-card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; } .upgrade-card-features { list-style: none; margin-bottom: 25px; flex-grow: 1; } .upgrade-card-features li { padding: 10px 0; border-bottom: 1px dashed #333; display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #ccc; line-height: 1.5; } .upgrade-card-features li:last-child { border-bottom: none; } .upgrade-card-features li::before { content: '✓'; color: #00ff88; font-weight: bold; min-width: 15px; } .upgrade-card-features li.highlight-feature { color: #fff; font-weight: 500; } .upgrade-card-features li.highlight-feature::before { content: '🔥'; } .upgrade-card-cta { width: 100%; padding: 15px; border: none; border-radius: 12px; font-size: 16px; font-weight: bold; cursor: pointer; background: #00ff88; color: #051a1a; transition: all 0.2s; } .upgrade-card-cta:hover { filter: brightness(1.1); transform: scale(1.02); } .upgrade-card-cta.master { background: linear-gradient(135deg, #ffaa00 0%, #ff8c00 100%); color: #fff; box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3); } /* --- SOLUSI TABEL RESPONSIVE (SCROLL SAMPING) --- */ .upgrade-compare-container { width: 100%; overflow-x: auto; /* Kunci horizontal scroll */ -webkit-overflow-scrolling: touch; margin-bottom: 40px; border-radius: 15px; border: 1px solid #333; background: #151525; position: relative; } .upgrade-compare { width: 100%; min-width: 600px; /* Lebar minimal agar tabel tidak gepeng di HP */ border-collapse: collapse; } .upgrade-compare th, .upgrade-compare td { padding: 15px; text-align: center; border-bottom: 1px solid #2a2a3a; font-size: 14px; vertical-align: middle; } .upgrade-compare th { text-align: left; background: #0f0f1a; color: #888; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; position: sticky; left: 0; z-index: 10; } /* Sticky Column Pertama (Fitur) agar tetap terlihat saat scroll */ .upgrade-compare th:first-child, .upgrade-compare td:first-child { text-align: left; font-weight: bold; color: #fff; background: #151525; /* Warna background wajib agar tidak tembus */ position: sticky; left: 0; z-index: 20; border-right: 1px solid #333; box-shadow: 4px 0 10px rgba(0,0,0,0.3); /* Bayangan pemisah */ min-width: 150px; } .upgrade-compare th.plan-header { text-align: center; font-size: 16px; color: #fff; background: #151525; position: static; } .col-pro { color: #00ff88 !important; } .col-master { color: #ffaa00 !important; } .upgrade-compare tr:last-child td { border-bottom: none; } /* RESTORED: Style untuk Halaman Masterclass (Wajib Ada) */ .product-card.thumb-portrait img { height: 260px; object-fit: cover; } .product-card.thumb-landscape img { height: 200px; object-fit: cover; } /* Mobile Adjustments */ @media (max-width: 600px) { .upgrade-plans { grid-template-columns: 1fr; } .upgrade-hero { padding: 20px 10px; } } /* --- SCOPED CSS FOR NEW LANDING PAGES --- */ .lp-page { max-width: 960px; margin: 0 auto; padding: 20px; color: #ccc; } .lp-header { position: sticky; top: 0; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); padding: 10px 20px; display: flex; align-items: center; gap: 15px; z-index: 100; margin: -20px -20px 20px -20px; } .lp-back-btn { background: none; border: none; color: #00ff88; font-size: 28px; cursor: pointer; } .lp-header h2 { font-size: 18px; color: #fff; } .lp-hero { text-align: center; margin-bottom: 40px; } .lp-hero img { width: 100%; max-width: 600px; border-radius: 16px; object-fit: cover; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .lp-hero h1 { font-size: 2rem; color: #fff; margin-bottom: 10px; line-height: 1.3; } .lp-hero-badge { display: inline-block; background: rgba(0, 255, 136, 0.1); color: #00ff88; padding: 8px 15px; border-radius: 20px; font-size: 14px; } .lp-section { margin-bottom: 40px; } .lp-section-title { font-size: 1.8rem; color: #fff; text-align: center; margin-bottom: 25px; border-bottom: 2px solid #00ff88; display: inline-block; padding-bottom: 5px; } .lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; } .lp-card { background: #1a1a2e; padding: 20px; border-radius: 12px; border: 1px solid #333; } .lp-card-icon { font-size: 2rem; margin-bottom: 10px; } .lp-list { list-style: none; padding-left: 0; } .lp-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid #333; } .lp-list li::before { content: '✅'; color: #00ff88; position: absolute; left: 0; top: 10px; } .lp-highlight-box { background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(89, 0, 255, 0.1)); padding: 25px; border-radius: 16px; border-left: 4px solid #00ff88; } .lp-highlight-box h3 { color: #00ff88; margin-bottom: 10px; font-size: 1.3rem; } .lp-accordion-item { background: #1a1a2e; border-radius: 10px; margin-bottom: 10px; overflow: hidden; } .lp-accordion-header { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; } .lp-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 15px; } .lp-accordion-content p { padding: 15px 0; border-top: 1px solid #333; } .lp-pricing-box { background: #1a1a2e; padding: 30px; border-radius: 16px; text-align: center; box-shadow: 0 0 30px rgba(0, 255, 136, 0.2); } .lp-price { font-size: 3rem; font-weight: bold; color: #00ff88; margin-bottom: 20px; } .lp-cta-btn { display: block; width: 100%; padding: 16px; font-size: 18px; font-weight: bold; color: #0a0a0a; background: #00ff88; border: none; border-radius: 12px; cursor: pointer; transition: transform 0.2s ease; } .lp-cta-btn:hover { transform: scale(1.03); } .lp-footnote { text-align: center; font-size: 14px; color: #999; margin-top: 15px; } @media (max-width: 768px) { .lp-page { padding: 16px; } .lp-header { margin: -16px -16px 16px -16px; } #adminPanelPage .admin-grid { grid-template-columns: 1fr; } } /* ========================================= MOBILE-ONLY UI/UX TWEAKS (SAFE & SCOPED) ========================================= */ /* 0) Skala dasar tipografi mobile */ @media (max-width: 768px) { html { font-size: 15px; } body { line-height: 1.5; } } @media (max-width: 480px) { html { font-size: 14px; } } /* 1) Dashboard header/hero: background cover saldo+logout, kecilkan judul & status */ @media (max-width: 768px) { .dashboard-hero, .dashboard-top { position: relative; padding: 12px 14px; border-radius: 12px; overflow: hidden; } .dashboard-hero::before, .dashboard-header::before, .dashboard-top::before { content: ""; position: absolute; inset: 0; background: var(--hero-bg, linear-gradient(135deg,#0ea5e9 0%,#6366f1 100%)); opacity: .12; pointer-events: none; } .dashboard-hero .title, .dashboard-header .title { font-size: clamp(1rem,3.8vw,1.25rem); line-height: 1.2; margin-bottom: 6px; } .dashboard-hero .subtitle, .dashboard-header .subtitle, .user-status { font-size: clamp(.9rem,3.2vw,1rem); line-height: 1.35; } .dashboard-hero .topline, .dashboard-header .topline { display:flex; align-items:center; gap:10px; flex-wrap:wrap; } .saldo-pill { font-size:.95rem; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.18); backdrop-filter: blur(4px); } .logout-btn { margin-left:auto; font-size:.95rem; padding:6px 10px; border-radius:10px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.2); } } /* 2) Grid fitur dashboard: 2 kolom di mobile */ .dashboard-grid, .features-grid, .tools-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; /* desktop default */ } @media (max-width:1024px){ .dashboard-grid,.features-grid,.tools-grid{grid-template-columns:repeat(3,1fr);} } @media (max-width:768px){ .dashboard-grid,.features-grid,.tools-grid{grid-template-columns:repeat(2,1fr);} } @media (max-width:420px){ .dashboard-grid,.features-grid,.tools-grid{grid-template-columns:1fr 1fr;} } .feature-card, .tool-card { padding:12px; border-radius:14px; } /* 3) AI Collage: 4 upload box → 2 kolom di mobile (2x2) */ .collage-inputs, .ai-collage-inputs, #aiCollageInputs { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; /* desktop */ } @media (max-width:992px){ .collage-inputs,.ai-collage-inputs,#aiCollageInputs{grid-template-columns:repeat(3,1fr);} } @media (max-width:768px){ .collage-inputs,.ai-collage-inputs,#aiCollageInputs{grid-template-columns:repeat(2,1fr);} } @media (max-width:420px){ .collage-inputs,.ai-collage-inputs,#aiCollageInputs{grid-template-columns:1fr 1fr;} } .upload-box, .inpaint-box { min-height:120px; } /* 4) Info banner (Viralin & fitur lain) — rapi di mobile + optional clamp */ .info-banner{ position:relative; border-radius:14px; padding:12px 14px; background:linear-gradient(135deg,#22c55e20,#22d3ee20); border:1px solid rgba(0,0,0,.06); margin-bottom:16px; } .info-banner .title{ font-weight:700; font-size:clamp(1rem,3.6vw,1.2rem); margin-bottom:6px; } .info-banner .desc{ font-size:clamp(.9rem,3.2vw,1rem); line-height:1.45; } @media (max-width:480px){ .info-banner{ padding:10px 12px; } } /* Clamp jika diberi data-collapsible="true" (mobile only) */ @media (max-width:768px){ .info-banner[data-collapsible="true"] .desc{ display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; } .info-banner .readmore{ display:inline-block; margin-top:6px; font-size:.9rem; text-decoration:underline; color:#2563eb; } } /* 5) Hasil video/gambar: pas di layar kecil */ @media (max-width:480px){ .result-video-wrapper, .result-image-wrapper{ max-height:45vh; } .result-area .result-video, .result-area img{ width:100%; height:auto; object-fit:contain; } .result-actions{ display:grid; grid-template-columns:1fr; gap:8px; } } /* 6) Tap-target & form nyaman di mobile + anti-zoom iOS */ @media (max-width:768px){ button, .btn, .result-btn, .chip, .tab-btn{ min-height:44px; padding:10px 14px; font-size:clamp(.9rem,2.8vw,1rem); } .icon-btn svg, .expand-prompt-btn svg{ width:18px; height:18px; } /* input, select, textarea{ font-size:16px; } Sudah ada di rule lain */ .prompt-input, textarea{ scroll-margin-top:80px; } } /* 7) Safe-area (notch) */ @media (max-width:768px){ body{ padding-top:max(0px, env(safe-area-inset-top)); padding-bottom:max(8px, env(safe-area-inset-bottom)); } .bottom-actions, .result-actions, .footer-actions{ padding-bottom:max(8px, env(safe-area-inset-bottom)); } } /* 8) Long text wrapping (Viralin & lainnya) */ @media (max-width:768px){ .result-text, .mono, .code, .caption-output, .helper-text{ overflow-wrap:anywhere; word-break:break-word; } } /* 9) Micro-spacing dashboard mobile */ @media (max-width:768px){ .dashboard-hero .title{ margin-bottom:4px; letter-spacing:.1px; } .saldo-pill, .logout-btn{ line-height:1; } .features-grid, .dashboard-grid, .tools-grid{ gap:12px; } } /* 10) Feedback sentuh ringan */ @media (max-width:768px){ .btn:active, .result-btn:active, .chip:active, .tab-btn:active{ transform: translateY(1px); filter: brightness(.96); } } /* Readmore: tampil di mobile saja */ .info-banner .readmore { display: none; } @media (max-width: 768px){ .info-banner .readmore { display: inline-block; margin-top: 8px; text-decoration: underline; cursor: pointer; } } /* ==== App-like feel di perangkat sentuh saja ==== */ @media (hover: none) and (pointer: coarse){ html, body{ overflow-x: hidden; /* cegah geser horizontal */ overscroll-behavior: none; /* hilangin bounce/scroll chaining */ -webkit-text-size-adjust: 100%; touch-action: pan-y; /* scroll vertikal aja */ } main, .app, .page{ max-width:100vw; overflow-x:hidden; } a, button, input, textarea{ touch-action: manipulation; } /* iOS suka auto-zoom kalau <16px */ input, select, textarea, .form-input, .select-input, .prompt-input { font-size: 16px !important; } } /* ==== Header mobile only ==== */ @media (max-width: 768px){ .dashboard-header{ padding:12px 14px; gap:10px; flex-wrap:wrap; align-items:flex-start; border-radius: 0 0 20px 20px; } .header-left{ flex:1 1 auto; min-width:0; } .welcome-message{ font-size: clamp(1rem, 4vw, 1.25rem); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin:0; } .user-status{ font-size:12px; padding:3px 8px; } .header-right{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; } .saldo-display{ padding:6px 10px; font-size:.95rem; border-radius:12px; min-width:0; } .logout-button{ padding:6px 10px; font-size:.95rem; border-radius:10px; white-space:nowrap; } } @media (max-width: 420px){ .dashboard-header{ flex-wrap: wrap; } .header-right{ width:100%; justify-content:flex-end; } .user-status{ max-width: 44vw; display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: middle; } } /* Bungkus status agar bisa wrap & stack */ @media (max-width: 480px){ .header-left, .header-right{ flex-wrap: wrap; } .user-status{ display: inline-flex; align-items: center; white-space: normal; /* hilangkan nowrap/ellipsis utk mobile kecil */ max-width: 100%; /* biar gak kepotong */ margin-top: 6px; } .header-left .user-status + .user-status, .header-right .user-status + .user-status{ margin-left: 0; margin-top: 6px; } } /* ==== Modal mobile keyboard-safe ==== */ @media (hover: none) and (pointer: coarse){ body.modal-open{ position:fixed; width:100%; overflow:hidden; } .modal{ overscroll-behavior: contain; } #promptEditorModal .modal-content{ height: 75dvh; max-height: 90dvh; width: min(720px, 92vw); display:flex; flex-direction:column; } #promptEditorTextarea{ flex:1; min-height:0; font-size:16px; /* anti-zoom iOS */ resize: none; padding-bottom:max(8px, env(safe-area-inset-bottom)); } } /* ==== AI Collage grid mobile only ==== */ @media (max-width: 768px){ .input-grid-4{ display:grid; grid-template-columns: repeat(2, 1fr); gap:10px; } .upload-box{ aspect-ratio: 1 / 1; } } /* ===== UNIVERSAL RESULT LAYOUT FIX (ALL FEATURES: VEO, SORA, KLING, COLLAGE, ETC) ===== */ @media (max-width: 768px) { .result-grid { grid-template-columns: 1fr !important; gap: 15px; } .result-grid-item { width: 100% !important; } } /* 1. Aturan Dasar Media (Gambar/Video) */ .result-image-wrapper, .result-video-wrapper { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; /* Media di layer bawah */ width: 100%; margin-bottom: 0; } /* Pastikan media rapi dan tidak melar */ .result-image, .result-video { display: block; margin: 0 auto; max-width: 100%; height: auto; max-height: 60vh; /* Desktop: Max 60% tinggi layar */ object-fit: contain; } /* 2. Aturan Tombol Aksi (Universal) */ /* Target semua tombol aksi di dalam area hasil */ .result-area .result-actions, .result-grid-item .result-actions, .result-actions { position: relative; /* Default Desktop: Relative (mengalir normal) */ z-index: 999; /* VIP PASS: Selalu di atas Video Player manapun */ display: flex; justify-content: center; flex-wrap: wrap; /* Turun ke bawah kalau sempit */ gap: 12px; margin-top: 15px; padding-bottom: env(safe-area-inset-bottom, 10px); } /* 3. KHUSUS MOBILE: FIX TAMPILAN (ANTI-NUMPUK & ANTI-KETUTUPAN) */ @media (max-width: 768px) { /* PAKSA Layout Vertikal (Atas-Bawah) untuk semua kotak hasil */ .result-area, .result-grid-item { display: flex !important; flex-direction: column !important; justify-content: flex-start !important; height: auto !important; padding-bottom: 20px; } /* PAKSA Tombol "Turun ke Bumi" (Matikan efek melayang Creative Crafter) */ .result-grid-item .result-actions, .result-area .result-actions { position: relative !important; /* Override absolute positioning lama */ bottom: auto !important; left: auto !important; transform: none !important; opacity: 1 !important; /* Selalu muncul tanpa perlu hover */ margin-top: 10px !important; /* Jarak aman dari gambar */ background: transparent !important; /* Hapus background overlay hitam jika ada */ width: 100% !important; } /* Tombol Full Width biar jari enak nge-tap */ .result-actions .result-btn { flex: 1 1 45%; /* Fleksibel: Jejer 2 atau 1 tergantung muatnya */ min-width: 120px; } /* Batasi tinggi media di HP biar tombol gak kepental ke luar layar */ .result-image, .result-video, .result-grid-item img { max-height: 50vh !important; /* HP: Max 50% tinggi layar */ width: 100% !important; object-fit: contain !important; } /* Memberi jarak buffer di wrapper */ .result-image-wrapper, .result-video-wrapper { margin-bottom: 5px !important; } } /* Mencegah bug tinggi 0 di iOS */ .result-area > * { min-height: 0; flex-shrink: 0; } /* ===== END UNIVERSAL FIX ===== */ /* Kartu plan tetap nyaman di mobile */ @media (max-width: 480px){ .upgrade-plans{ display: grid; grid-template-columns: 1fr !important; /* 1 kolom */ gap: 14px; } .upgrade-card h3 { font-size: clamp(16px, 4vw, 20px); } .upgrade-card .price-normal { font-size: clamp(18px, 5vw, 22px); } .upgrade-card-cta { padding: 10px 14px; font-size: 14px; } } @media (max-width: 480px){ .upgrade-card-badge{ white-space: normal; /* izinkan wrapping */ word-break: break-word; font-size: 11px; line-height: 1.2; padding: 6px 8px; max-width: 60%; right: 10px; top: 10px; /* tetap di pojok, tapi sedikit lebih dalam */ } } @media (max-width: 360px){ .upgrade-card-badge{ font-size: 10px; max-width: 66%; } } /* --- STYLING UNTUK MODAL INFO FITUR --- */ #featureInfoModal .modal-content { max-width: 550px; /* Sedikit lebih lebar untuk list */ } #featureInfoModalContent ul { list-style: none; /* Hilangkan bullet points standar */ padding-left: 0; margin-top: 15px; } #featureInfoModalContent li { position: relative; padding-left: 30px; /* Beri ruang untuk ikon */ margin-bottom: 12px; font-size: 15px; line-height: 1.5; color: #ddd; /* Lebih cerah dari #ccc standar */ } /* Ikon "check" modern (CSS-only) sebagai pengganti bullet */ #featureInfoModalContent li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: bold; color: #00ff88; /* Warna hijau neon */ font-size: 18px; } #featureInfoModalContent strong, #featureInfoModalContent b { color: #ffaa00; /* Sorot teks tebal */ font-weight: 700; } @media (max-width: 600px) { #featureInfoModalTitle { font-size: 20px !important; } #featureInfoModalContent li { font-size: 14px; } } /* --- AI COLLAGE TABS --- */ .feature-tabs { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 1px solid #444; padding-bottom: 10px; flex-wrap: wrap; } .tab-btn { padding: 10px 20px; cursor: pointer; background: #1a1a2e; border: 1px solid #444; color: #999; border-radius: 8px; font-weight: bold; } .tab-btn.active { background: #00ff88; color: #0a0a0a; border-color: #00ff88; } .tab-content { display: none; } .tab-content.active { display: block; animation: fadeIn 0.5s; } /* --- STYLES FOR NEW FEATURE INPUTS --- */ .photoshoot-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; align-items: flex-start; } .photoshoot-controls { display: flex; flex-direction: column; gap: 15px; } .control-group { background: rgba(0,0,0,0.3); padding: 15px; border-radius: 10px; } .control-group label { font-weight: bold; color: #00ff88; margin-bottom: 10px; display: block; } .toggle-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; } .toggle-buttons button { background: #333; border: 1px solid #555; color: #ccc; padding: 10px; border-radius: 8px; cursor: pointer; } .toggle-buttons button.active { background: #00ff88; color: #0a0a0a; border-color: #00ff88; } .slider-container { margin-top: 10px; } .slider-container input[type=range] { width: 100%; } .slider-container output { text-align: center; display: block; margin-top: 5px; color: #00ff88; } .single-upload-container-feature { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 15px; } .result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; } .result-grid-item { background: rgba(255, 255, 255, 0.05); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; } .result-grid-item img { width: 100%; height: auto; display: block; cursor: pointer; transition: transform 0.3s ease; } .result-grid-item:hover .result-actions, .result-grid-item:focus-within .result-actions { opacity: 1; } @media (max-width: 992px) { .photoshoot-grid { grid-template-columns: 1fr; } } /* ===== FIX V2: Stabilkan kotak upload untuk SEMUA fitur Photoshoot ===== */ #productSnapLab .single-upload-container-feature, #foodFrameHub .single-upload-container-feature, #poseProForge .single-upload-container-feature, #pastForward .single-upload-container-feature, #restorationFeature .single-upload-container-feature { /* Restorasi sudah masuk sini */ max-width: 300px; /* Ukuran standar */ width: 100%; margin-left: auto; margin-right: auto; display: block; /* Pastikan block agar width 100% jalan */ } /* Pastikan kotak di dalamnya mengikuti lebar container */ #restorationFeature .upload-box, .photoshoot-grid .upload-box, #pastForward .upload-box { aspect-ratio: 1 / 1; width: 100%; } /* --- STYLING BARU UNTUK VEO GEN TABS --- */ #veoGenPage .feature-tabs { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 1px solid #444; padding-bottom: 10px; flex-wrap: wrap; /* Agar rapi di mobile */ } #veoGenPage .tab-btn { padding: 10px 20px; cursor: pointer; background: #1a1a2e; border: 1px solid #444; color: #999; border-radius: 8px; font-weight: bold; } #veoGenPage .tab-btn.active { background: #00ff88; color: #0a0a0a; border-color: #00ff88; } #veoGenPage .tab-content { display: none; animation: fadeIn 0.5s; } #veoGenPage .tab-content.active { display: block; } /* Grid untuk 2 & 3 Gambar */ .upload-grid-2, .upload-grid-3 { display: grid; /* FIX MOBILE: Kita paksa jadi 1 kolom (ke bawah) biar rapi & gak kepotong */ grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; } .upload-grid-3 { /* Khusus Reference (3 gambar), kalau layar agak lebar dikit dia otomatis nyesuaikan */ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } /* Wrapper untuk kotak upload + label */ .upload-box-wrapper { display: flex; flex-direction: column; gap: 8px; } .upload-box-wrapper label { font-size: 14px; color: #ccc; text-align: center; font-weight: bold; } .upload-box-wrapper .upload-box { /* Memastikan kotak upload konsisten */ width: 100%; min-height: 180px; aspect-ratio: 1 / 1; max-width: none; } @media (min-width: 768px) { .upload-grid-2 { /* Di desktop, 2 kotak upload kita buat di tengah */ grid-template-columns: repeat(2, 250px); justify-content: center; } .upload-grid-3 { /* Di desktop, 3 kotak upload kita lebarkan */ grid-template-columns: repeat(3, 1fr); max-width: 750px; margin-left: auto; margin-right: auto; } } /* Styling untuk Toggle Switch "Extend Video" */ .extend-toggle-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 20px; padding: 15px; background: rgba(0,0,0,0.2); border-radius: 10px; } .extend-toggle-container .toggle-label { color: #fff; font-weight: bold; } .toggle-switch { position: relative; display: inline-block; width: 50px; height: 28px; } .toggle-switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #555; transition: .4s; border-radius: 28px; } .slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; } input:checked + .slider { background-color: #00ff88; } input:checked + .slider:before { transform: translateX(22px); } .extend-toggle-container .cost-label { color: #999; font-size: 14px; } .extend-toggle-container .cost-label strong { color: #ffaa00; } /* --- KODE BARU: Styling untuk Prompt Extend --- */ #veoGenExtendPromptContainer { display: none; /* Sembunyi by default */ margin-top: 15px; animation: fadeIn 0.5s; } #veoGenExtendPromptContainer label { display: block; margin-bottom: 8px; color: #ffaa00; /* Warna beda biar jelas */ font-weight: bold; } #veoGenExtendPrompt { min-height: 80px; /* Bikin lebih pendek dari prompt utama */ } /* ========================================= */ /* --- AFFILIATE PROGRAM - ULTIMATE EDITION --- */ /* ========================================= */ /* 1. Background & Layout Global */ #affiliatePage { position: relative; overflow: hidden; min-height: 100vh; background: radial-gradient(circle at top center, #0f2027, #203a43, #2c5364); /* Deep Premium Dark */ } /* 2. Hero Section (Headline Besar) */ .aff-premium-hero { text-align: center; padding: 100px 20px 60px; position: relative; border-radius: 0 0 40px 40px; margin-bottom: 40px; overflow: hidden; background: rgba(0,0,0,0.3); border-bottom: 1px solid rgba(0, 255, 136, 0.2); } .aff-premium-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px); background-size: 30px 30px; z-index: -1; } .aff-headline { font-size: clamp(32px, 6vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(to bottom right, #ffffff 30%, #00ff88 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; letter-spacing: -1px; filter: drop-shadow(0 0 20px rgba(0,255,136,0.3)); } .aff-subheadline { color: #ccc; font-size: clamp(16px, 4vw, 18px); line-height: 1.6; max-width: 700px; margin: 0 auto; font-weight: 400; } /* 3. Grid Benefit (Kartu Kaca) */ .aff-benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-bottom: 60px; padding: 0 20px; } .aff-benefit-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px); padding: 25px 20px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; } .aff-benefit-card:hover { transform: translateY(-8px); border-color: #00ff88; background: linear-gradient(145deg, rgba(0,255,136,0.1), rgba(0,0,0,0)); box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15); } .aff-benefit-icon { font-size: 36px; margin-bottom: 15px; display: block; } .aff-benefit-title { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; } .aff-benefit-desc { color: #888; font-size: 12px; line-height: 1.4; } /* 4. Simulasi Cuan (Tabel Mewah) */ .aff-simulation-box { background: linear-gradient(180deg, #0a0a0a 0%, #111 100%); border: 1px solid #333; border-radius: 24px; padding: 30px; margin: 0 20px 50px 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); position: relative; } /* Garis Neon di atas box */ .aff-simulation-box::after { content:''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, #ffaa00, transparent); box-shadow: 0 0 20px #ffaa00; } .aff-commission-display { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; } .aff-com-card { background: rgba(255,255,255,0.03); padding: 20px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); min-width: 140px; } .aff-com-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; color: #888; } .aff-com-value { font-size: 24px; font-weight: 900; color: #fff; } .aff-sim-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; } .aff-sim-table td { padding: 15px; background: rgba(30,30,40,0.5); color: #ccc; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); } .aff-sim-table td:first-child { border-radius: 10px 0 0 10px; border-left: 1px solid rgba(255,255,255,0.05); font-weight: 600; color: #fff; } .aff-sim-table td:last-child { border-radius: 0 10px 10px 0; border-right: 1px solid rgba(255,255,255,0.05); text-align: right; font-weight: 800; letter-spacing: 0.5px; } .text-gold { color: #ffaa00 !important; text-shadow: 0 0 10px rgba(255, 170, 0, 0.3); } .text-green { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); } /* 5. Step by Step (Cara Kerja) */ .aff-steps-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 0 20px 60px 20px; } .aff-step-item { background: #151520; padding: 25px; border-radius: 16px; border-left: 4px solid #333; position: relative; transition: 0.3s; } .aff-step-item:hover { border-left-color: #00ff88; background: #1a1a25; transform: translateX(5px); } .aff-step-num { position: absolute; right: 20px; top: 20px; font-size: 40px; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; } .aff-step-title { font-size: 16px; font-weight: bold; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; } /* 6. FAQ Accordion */ .aff-faq-section { max-width: 800px; margin: 0 auto 120px auto; padding: 0 20px; } .aff-faq-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: 0.3s; } .aff-faq-box:hover { border-color: #444; } .aff-faq-q { padding: 18px 25px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; color: #eee; font-size: 15px; } .aff-faq-a { padding: 0 25px 25px 25px; color: #999; font-size: 14px; line-height: 1.6; display: none; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; } .aff-faq-box.open { background: rgba(0, 255, 136, 0.03); border-color: rgba(0, 255, 136, 0.3); } .aff-faq-box.open .aff-faq-a { display: block; } .aff-faq-box.open .aff-faq-q { color: #00ff88; } /* 7. Dashboard View (Wallet & Stats) */ .aff-db-wallet { background: linear-gradient(135deg, #004d40 0%, #000000 100%); padding: 35px; border-radius: 24px; margin-bottom: 30px; border: 1px solid rgba(0, 255, 136, 0.3); text-align: center; position: relative; overflow: hidden; } .aff-db-wallet::before { content:''; position:absolute; width:150px; height:150px; background:#00ff88; filter:blur(100px); opacity:0.1; top:-50px; left:-50px; } .aff-db-amount { font-size: 56px; font-weight: 900; color: #fff; margin: 10px 0; letter-spacing: -2px; font-family: monospace; text-shadow: 0 0 30px rgba(0,255,136,0.4); } .aff-db-code-card { background: #111; border: 1px dashed #444; padding: 25px; border-radius: 20px; margin-bottom: 30px; } .aff-db-code { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: 3px; font-family: monospace; } .aff-db-table-wrap { background: #151520; border-radius: 20px; border: 1px solid #333; overflow: hidden; } .aff-db-table { width: 100%; border-collapse: collapse; } .aff-db-table th { background: #0a0a0a; padding: 15px; text-align: left; color: #666; font-size: 12px; text-transform: uppercase; } .aff-db-table td { padding: 20px 15px; border-bottom: 1px solid #222; color: #ccc; font-size: 14px; } /* Sticky CTA & Button */ .aff-sticky-bar { position: fixed; bottom: 20px; left: 20px; right: 20px; padding: 15px; z-index: 999; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px); border: 1px solid #00ff88; border-radius: 20px; text-align: center; max-width: 500px; margin: 0 auto; box-shadow: 0 10px 50px rgba(0,0,0,0.8); animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); } .aff-btn-cta { background: #00ff88; color: #000; font-weight: 900; border: none; padding: 14px; width: 100%; border-radius: 12px; font-size: 16px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); animation: pulseGlow 2s infinite; } @keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); } 50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.7); } } /* === TAMBAHAN UNTUK MEMPERBESAR TABEL PARTNER === */ /* 1. Besarkan Header Tabel (Detail Member, Status, dll) */ .aff-db-table th { font-size: 14px !important; /* Naik dari 12px */ padding: 20px !important; /* Biar lebih lega */ letter-spacing: 0.5px; } /* 2. Besarkan Nama Member (Kolom 1 Baris 1) */ .aff-db-table td div[style*="font-weight:bold"] { font-size: 17px !important; /* Naik drastis dari 13px */ margin-bottom: 5px; } /* 3. Besarkan Nomor WA (Kolom 1 Baris 2) */ .aff-db-table td div[style*="color:#888"] { font-size: 14px !important; /* Naik dari 11px */ } /* 4. Besarkan Status Badge (PRO/FREE) */ .aff-db-table td:nth-child(2) div:first-child, .aff-db-table td:nth-child(2) span { font-size: 14px !important; /* Naik dari 10-11px */ padding: 4px 10px !important; /* Badge lebih tebal */ } /* 5. Besarkan Teks 'Sisa Hari' */ .aff-db-table td:nth-child(2) div:last-child { font-size: 13px !important; /* Naik dari 10px */ margin-top: 5px; } /* 6. Besarkan Tombol Aksi (Ingetin/Sapa) */ .aff-db-table button { font-size: 13px !important; /* Naik dari 11px */ padding: 10px 18px !important; /* Tombol lebih enak dipencet */ } /* 7. Jarak antar baris biar gak dempet */ .aff-db-table td { padding: 25px 15px !important; } /* ====================================================== */ /* >>> PASTE KODE CSS SCROLLBOX DISINI BRO <<< */ /* ====================================================== */ /* === STYLING MODAL REGISTER AFFILIATE === */ .tnc-scroll-box { background: rgba(0, 0, 0, 0.5); border: 1px solid #444; border-radius: 10px; padding: 15px; height: 160px; /* Tinggi fix biar scroll muncul */ overflow-y: auto; /* Scroll aktif jika konten panjang */ font-size: 12px; color: #bbb; line-height: 1.5; margin-bottom: 15px; text-align: left; scrollbar-width: thin; scrollbar-color: #00ff88 #222; } .tnc-scroll-box::-webkit-scrollbar { width: 6px; } .tnc-scroll-box::-webkit-scrollbar-track { background: #222; border-radius: 10px; } .tnc-scroll-box::-webkit-scrollbar-thumb { background: #00ff88; border-radius: 10px; } .tnc-scroll-box p { margin-bottom: 10px; border-bottom: 1px dashed #333; padding-bottom: 10px; } .tnc-scroll-box strong { color: #fff; } /* ====================================================== */ /* ========================================= */ /* STUDIO FOTO AI - NEW UI STYLES */ /* ========================================= */ /* 1. GRID UTAMA (4 ZONA BESAR) */ .studio-lobby-grid { display: grid; grid-template-columns: repeat(2, 1fr); /* 2 Kolom Sejajar */ gap: 15px; margin-bottom: 30px; } .zone-card { background: linear-gradient(145deg, #151520, #0a0a0a); border: 1px solid #333; border-radius: 16px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 180px; position: relative; overflow: hidden; } .zone-card:hover { transform: translateY(-5px); border-color: #00ff88; box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15); } /* Ikon Bulat di Tengah Kartu */ .zone-img-wrapper { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 15px; border: 2px solid rgba(255,255,255,0.1); background: #000; display: flex; align-items: center; justify-content: center; } .zone-img-wrapper img { width: 100%; height: 100%; object-fit: cover; } .zone-title { font-size: 15px; font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.5px; } .zone-desc { font-size: 11px; color: #888; line-height: 1.3; max-width: 90%; } /* Warna Garis Bawah Tiap Zona */ .zone-business { border-bottom: 4px solid #00ccff; } .zone-career { border-bottom: 4px solid #9d00ff; } .zone-life { border-bottom: 4px solid #ff4444; } .zone-magic { border-bottom: 4px solid #ffaa00; } /* 2. GRID SUB-MENU (TOMBOL FITUR KECIL) */ .studio-zone-container { display: none; } /* Default sembunyi */ /* ========================================= */ /* UPDATE CSS: TOMBOL FITUR JADI BESAR */ /* ========================================= */ /* UBAH GRID JADI 2 KOLOM FIX (BIAR GEDE) */ .feature-btn-grid { display: grid; grid-template-columns: repeat(2, 1fr); /* Dulu: repeat(auto-fill, minmax(100px, 1fr)) */ gap: 15px; margin-top: 15px; } /* PERBESAR UKURAN TOMBOL */ .feature-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid #333; border-radius: 16px; /* Radius lebih besar dikit */ padding: 20px 15px; /* Padding diperbesar */ text-align: center; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; /* Center vertikal */ align-items: center; min-height: 140px; /* Tinggi minimal biar gagah */ } .feature-btn:hover { background: rgba(0, 255, 136, 0.08); border-color: #00ff88; transform: translateY(-5px); /* Efek naik pas di-hover */ box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1); } /* PERBESAR IKON DI DALAM TOMBOL */ .feature-icon-img { width: 70px; /* Dulu 50px */ height: 70px; /* Dulu 50px */ border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 2px solid #444; /* Border ditebelin dikit */ background: #000; } /* PERBESAR TEKS TOMBOL */ .feature-btn-text { font-size: 13px; /* Dulu 12px */ font-weight: 700; color: #eee; line-height: 1.3; text-transform: uppercase; /* Biar lebih tegas */ letter-spacing: 0.5px; } /* Header Navigasi (Tombol Back) */ .studio-nav-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #333; } .back-btn { background: none; border: 1px solid #666; color: #ccc; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.3s; } .back-btn:hover { border-color: #00ff88; color: #00ff88; transform: scale(1.1); } /* --- SLIDER BEFORE-AFTER DINAMIS --- */ /* --- SLIDER BEFORE-AFTER DINAMIS --- */ .comparison-slider { position: relative; width: 100%; max-width: 400px; height: 250px; margin: 0 auto 20px auto; border-radius: 16px; overflow: hidden; border: 2px solid #333; background: #000; /* Fallback warna */ } .comparison-slider img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; } /* Foto ASLI (Layer Bawah) */ .img-before { z-index: 1; /* Pastikan di bawah */ } /* Foto HASIL AI (Layer Atas - Yang Dianimasikan) */ .img-after { z-index: 2; /* Wajib di atas biar kelihatan */ clip-path: inset(0 50% 0 0); /* Default setengah */ animation: scanSwipe 4s ease-in-out infinite alternate; border-right: 3px solid #00ff88; /* Garis pemisah neon */ } /* Garis Divider & Label - Layer Paling Atas */ .slider-divider, .slider-label { z-index: 10; pointer-events: none; } .slider-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: transparent; /* Garisnya udah nempel di img-after */ /* Animation sync sama gambar */ animation: scanMove 4s ease-in-out infinite alternate; } .slider-label { position: absolute; bottom: 10px; padding: 4px 10px; background: rgba(0,0,0,0.7); color: #fff; font-size: 10px; border-radius: 4px; font-weight: bold; border: 1px solid rgba(255,255,255,0.2); } .lbl-before { left: 10px; } .lbl-after { right: 10px; color: #00ff88; } /* Animasi Buka-Tutup (Scanning) */ @keyframes scanSwipe { 0% { clip-path: inset(0 100% 0 0); } /* Gambar After Hilang (Full Before) */ 45% { clip-path: inset(0 50% 0 0); } /* Tengah-tengah */ 100% { clip-path: inset(0 0 0 0); } /* Gambar After Full (Full After) */ } /* Animasi Garis Divider (Biar sinkron) */ @keyframes scanMove { 0% { left: 0%; } 45% { left: 50%; } 100% { left: 100%; } } /* Layout Khusus Pas Foto Box (3:4) */ .pas-foto-box { aspect-ratio: 3/4 !important; max-width: 200px !important; } /* FIX MOCKUP SLIDER (Agar Logo & Hasil Tidak Terpotong) */ #mockupBrandingFeature .comparison-slider img { object-fit: contain !important; /* Paksa gambar utuh */ padding: 10px; /* Beri jarak biar gak mepet pinggir */ background: #1a1a2e; /* Background gelap biar rapi */ } /* FIX RESTORASI CENTER */ #restorationFeature .single-upload-container-feature { margin: 0 auto !important; /* Rata tengah */ float: none !important; } /* SAFETY NET: Pastikan fitur lama & zona selalu tersembunyi di awal */ #productSnapLab, #foodFrameHub, #poseProForge, #pastForward, #creativeCrafter { display: none; } .studio-zone-container { display: none; } /* Pastikan Lobi yang default muncul */ #studioLobby { display: block; } /* ============================================================ */ /* 💎 TEMA BARU: MIDNIGHT GLASS LUXURY (MOBILE READY + SLIDER) 💎 */ /* ============================================================ */ /* 1. IMPORT FONT PREMIUM */ @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap'); /* 2. GLOBAL TYPOGRAPHY */ body, button, input, select, textarea { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important; } /* 3. LUXURY GLASS CONTAINER (Wadah Fitur) */ .feature-container { background: rgba(20, 20, 25, 0.7) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 24px !important; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important; padding: 35px !important; } /* 4. MODERN INPUT & SELECT */ .form-input, .select-input, .prompt-input { background: #0a0a0f !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; border-radius: 12px !important; color: #fff !important; padding: 14px 18px !important; font-size: 14px !important; /* Aman untuk mobile (anti-zoom) */ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; font-weight: 500 !important; } .form-input:focus, .select-input:focus, .prompt-input:focus { border-color: #00ff88 !important; background: #0f0f15 !important; box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1) !important; outline: none !important; } /* Dropdown Arrow Custom */ select.select-input { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300ff88%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 10px auto; } /* 5. UPLOAD BOX MODERN */ .upload-box { background: rgba(255, 255, 255, 0.02) !important; border: 2px dashed rgba(255, 255, 255, 0.2) !important; border-radius: 16px !important; transition: all 0.3s ease !important; } .upload-box:hover { border-color: #00ff88 !important; background: rgba(0, 255, 136, 0.05) !important; transform: translateY(-2px); } .upload-box span { font-weight: 600 !important; color: #aaa !important; font-size: 13px !important; } .upload-box:hover span { color: #00ff88 !important; } /* 6. LABEL TEXT */ .control-group label, .input-section label { font-size: 13px !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; font-weight: 700 !important; color: #888 !important; margin-bottom: 8px !important; display: flex !important; align-items: center !important; gap: 5px; } .control-group:focus-within label { color: #00ff88 !important; } /* 7. TOGGLE BUTTONS (KAPSUL) */ .toggle-buttons { background: #0a0a0f !important; padding: 4px !important; border-radius: 12px !important; border: 1px solid rgba(255,255,255,0.1) !important; gap: 0 !important; } .toggle-buttons button { border: none !important; background: transparent !important; color: #666 !important; border-radius: 8px !important; font-weight: 600 !important; font-size: 13px !important; padding: 10px !important; transition: all 0.3s ease !important; } .toggle-buttons button.active { background: #1f1f2e !important; color: #00ff88 !important; box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important; border: 1px solid rgba(0, 255, 136, 0.3) !important; } /* 8. ACTION BUTTON */ .action-button { background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%) !important; color: #051a1a !important; border-radius: 14px !important; padding: 18px !important; font-size: 16px !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 1px !important; box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important; border: none !important; } .action-button:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5) !important; filter: brightness(1.1) !important; } .action-button:active { transform: scale(0.98) !important; } /* 9. ASPECT RATIO BUTTONS */ .aspect-ratio-btn { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #888 !important; border-radius: 10px !important; font-weight: 600 !important; padding: 12px 20px !important; transition: all 0.3s !important; } .aspect-ratio-btn.selected { background: rgba(0, 255, 136, 0.1) !important; border-color: #00ff88 !important; color: #00ff88 !important; box-shadow: 0 0 15px rgba(0, 255, 136, 0.1) !important; } /* 10. NAVIGASI HEADER */ .studio-nav-header h3 { font-weight: 800 !important; font-size: 18px !important; letter-spacing: 0.5px !important; background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .back-btn { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; width: 40px !important; height: 40px !important; border-radius: 12px !important; } .back-btn:hover { background: #00ff88 !important; border-color: #00ff88 !important; color: #000 !important; } /* 11. SCROLLBAR */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #0a0a0f; } ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #555; } /* 12. INFO BANNER */ .info-banner { background: rgba(0, 255, 136, 0.03) !important; border: 1px solid rgba(0, 255, 136, 0.15) !important; border-radius: 16px !important; padding: 20px !important; } .info-banner .title { color: #00ff88 !important; font-weight: 800 !important; text-transform: uppercase !important; font-size: 14px !important; margin-bottom: 10px !important; } /* 13. 🛡️ SLIDER BEFORE-AFTER PROTECTION & UPGRADE 🛡️ */ /* Kita percantik tapi JANGAN ubah logika animasinya */ .comparison-slider { /* Style Baru: Border Glow & Rounded */ border: 1px solid rgba(255, 255, 255, 0.2) !important; border-radius: 20px !important; /* Lebih rounded */ box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important; background: #000 !important; /* Safety background */ } /* Slider Label (Badge Style) */ .slider-label { background: rgba(0, 0, 0, 0.6) !important; backdrop-filter: blur(5px) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 30px !important; /* Jadi bentuk pil */ padding: 6px 14px !important; font-size: 10px !important; letter-spacing: 1px !important; font-weight: 800 !important; text-transform: uppercase !important; } .lbl-after { color: #00ff88 !important; border-color: rgba(0, 255, 136, 0.3) !important; } /* Divider Line (Garis Neon) */ .img-after { border-right: 3px solid #00ff88 !important; /* Warna Hijau Neon */ box-shadow: -5px 0 15px rgba(0, 255, 136, 0.5) !important; /* Efek Glow pada garis */ } /* 14. 📱 MOBILE RESPONSIVENESS FIXES 📱 */ @media (max-width: 600px) { .feature-container { padding: 20px !important; /* Padding lebih kecil di HP */ border-radius: 20px !important; } .studio-nav-header h3 { font-size: 16px !important; /* Judul agak kecil biar muat */ } .action-button { padding: 15px !important; /* Tombol pas di jari */ font-size: 14px !important; } .aspect-ratio-selector { gap: 8px !important; /* Jarak tombol rasio dirapatkan */ } .aspect-ratio-btn { padding: 10px 15px !important; font-size: 12px !important; } .slider-label { font-size: 9px !important; padding: 4px 10px !important; } } /* ========================================= */ /* 🎨 COLOR THEME: CYBER BLUE (TIMPA DI BAWAH) */ /* ========================================= */ /* 1. Ganti Warna Fokus Input & Glow */ .form-input:focus, .select-input:focus, .prompt-input:focus, .upload-box:hover { border-color: #00e5ff !important; /* Cyan Terang */ box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15) !important; } /* 2. Ganti Warna Tombol (Gradient Biru) */ .action-button, .back-btn:hover, .toggle-buttons button.active { background: linear-gradient(135deg, #00e5ff 0%, #0099ff 100%) !important; color: #000 !important; /* Teks Hitam biar kontras */ border-color: #00e5ff !important; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4) !important; } /* 3. Ganti Warna Teks Highlight & Ikon Dropdown */ .upload-box:hover span, .control-group:focus-within label, .info-banner .title, .studio-nav-header h3 { color: #00e5ff !important; } .aspect-ratio-btn.selected { border-color: #00e5ff !important; color: #00e5ff !important; background: rgba(0, 229, 255, 0.1) !important; box-shadow: 0 0 15px rgba(0, 229, 255, 0.2) !important; } /* 4. Ganti Arrow Dropdown jadi Biru */ select.select-input { background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300e5ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important; } /* ========================================================= */ /* 🌑 TOMBOL 'DEEP CYBER' (GELAP, MEWAH, TEKS PUTIH) 🌑 */ /* ========================================================= */ /* 1. Target SEMUA Tombol yang tadinya Hijau (Login, Register, Modal, CTA, dll) */ .login-button, .action-button, .upgrade-card-cta, #featureInfoModalButton, #btnSubmitAffiliate, .result-btn { /* Background: Gradasi Hitam ke Navy Gelap (Mewah) */ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; /* Border: List Cyan Tipis (Biar senada tema Cyber Blue) */ border: 1px solid rgba(0, 229, 255, 0.5) !important; /* Teks: Putih Mutlak (Kontras Maksimal) */ color: #ffffff !important; /* Font: Tebal & Modern */ font-weight: 700 !important; letter-spacing: 0.5px !important; /* Shadow: Glow Biru Halus di bawah */ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important; transition: all 0.3s ease !important; } /* 2. Efek Hover (Pas Kursor Nempel) */ .login-button:hover, .action-button:hover, .upgrade-card-cta:hover, #featureInfoModalButton:hover, #btnSubmitAffiliate:hover, .result-btn:hover { /* Background jadi sedikit lebih terang */ background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important; /* Border & Glow jadi Cyan Menyala (Kesan Power On) */ border-color: #00e5ff !important; box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) !important; transform: translateY(-2px); /* Naik dikit */ color: #fff !important; } /* 3. Tombol Partner di Sidebar (Spesial) */ .affiliate-button-sidebar { background: rgba(0, 229, 255, 0.05) !important; /* Transparan Gelap */ border: 1px solid rgba(0, 229, 255, 0.3) !important; color: #00e5ff !important; /* Teks Biru Neon */ } .affiliate-button-sidebar:hover { background: #00e5ff !important; /* Jadi Biru Penuh */ color: #000 !important; /* Teks Hitam */ box-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important; } /* 4. Perbaikan Tombol Tab & Toggle agar seragam */ .tab-btn.active, .toggle-buttons button.active { background: #0f172a !important; border-color: #00e5ff !important; color: #00e5ff !important; /* Teks Biru Neon */ box-shadow: 0 0 10px rgba(0, 229, 255, 0.2) !important; } /* 5. Khusus Tombol Hasil (View/Save) biar kecil tapi rapi */ .result-btn { background: #000 !important; /* Hitam pekat */ border: 1px solid #00e5ff !important; color: #00e5ff !important; padding: 6px 12px !important; } .result-btn:hover { background: #00e5ff !important; color: #000 !important; } /* ========================================================= */ /* 🧹 FINAL CLEANUP: SAPU BERSIH SISA WARNA HIJAU 🧹 */ /* ========================================================= */ /* 1. GANTI JUDUL HALAMAN & NAMA USER (Header) */ .page-title, .app-title, .sidebar-title, .welcome-message span, /* Nama "admin!" */ .modal-title { color: #00e5ff !important; /* Cyan Neon */ text-shadow: 0 0 10px rgba(0, 229, 255, 0.3) !important; } /* 2. SIDEBAR MENU AKTIF (Yang Sedang Dipilih) */ .menu-item.active { background: rgba(0, 229, 255, 0.1) !important; /* Background Biru Transparan */ border-left-color: #00e5ff !important; /* Garis Kiri Biru */ color: #00e5ff !important; /* Teks Biru */ box-shadow: 10px 0 20px rgba(0, 229, 255, 0.05) !important; } /* 3. SIDEBAR MENU HOVER (Pas Mouse Lewat) */ .menu-item:hover { background: rgba(0, 229, 255, 0.05) !important; color: #00e5ff !important; } /* 4. TOMBOL REFRESH SALDO/KREDIT (Panah Muter) */ .saldo-refresh-btn { color: #00e5ff !important; text-shadow: 0 0 5px rgba(0, 229, 255, 0.5) !important; } /* 5. TOMBOL "UPGRADE KEANGGOTAAN" DI SIDEBAR */ /* Kita ubah jadi Gradient Biru biar Senada */ .upgrade-button-sidebar { background: linear-gradient(135deg, #00e5ff 0%, #0099ff 100%) !important; border: 1px solid #7dd3fc !important; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important; color: #000 !important; /* Teks Hitam biar kontras & kebaca */ } .upgrade-button-sidebar:hover { box-shadow: 0 0 25px rgba(0, 229, 255, 0.6) !important; /* Glow makin terang */ transform: translateY(-3px) !important; } /* 6. LINK "BACA SELENGKAPNYA" & TEXT FOOTER */ a, .readmore, .form-footer-link a { color: #00e5ff !important; } /* 7. LABEL INPUT (Biar seragam semua jadi biru/abu, gak ada ijo) */ .control-group label, .input-section label { color: #ccc !important; /* Default Abu Terang */ } /* Pas input diklik baru jadi Biru */ .control-group:focus-within label, .input-section:focus-within label { color: #00e5ff !important; } /* 8. SCROLLBAR (Biar gak belang) */ ::-webkit-scrollbar-thumb { background: #005f99 !important; } ::-webkit-scrollbar-thumb:hover { background: #00e5ff !important; } /* ========================================================= */ /* 🛠️ FINAL FIX: BUTTON UNIFORMITY & BADGE CONTRAST 🛠️ */ /* ========================================================= */ /* 1. SERAGAMKAN TOMBOL SIDEBAR (Upgrade & Partner) */ /* Kita gabung class-nya biar style-nya 100% sama (Dark Navy + Border Biru) */ .upgrade-button-sidebar, .affiliate-button-sidebar { /* Style Gelap Mewah (Sama kayak tombol lain) */ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; border: 1px solid rgba(0, 229, 255, 0.3) !important; /* Border Biru Tipis */ color: #ffffff !important; /* Teks Putih */ /* UKURAN DISAMAKAN (Penting!) */ min-height: 50px !important; /* Tinggi minimal sama */ display: flex !important; align-items: center !important; justify-content: center !important; padding: 12px 15px !important; margin: 10px 20px !important; /* Jarak kiri-kanan sama */ border-radius: 12px !important; box-shadow: none !important; /* Hilangkan shadow tebal sebelumnya */ } /* Efek Hover Seragam (Nyala Biru) */ .upgrade-button-sidebar:hover, .affiliate-button-sidebar:hover { border-color: #00e5ff !important; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important; transform: translateY(-2px) !important; } /* 2. TOMBOL LOGOUT (Ubah jadi Cyber Blue) */ .logout-button { border: 1px solid #00e5ff !important; /* Border Biru */ color: #00e5ff !important; /* Teks Biru */ background: transparent !important; border-radius: 20px !important; } .logout-button:hover { background: rgba(0, 229, 255, 0.1) !important; box-shadow: 0 0 10px rgba(0, 229, 255, 0.3) !important; color: #fff !important; } /* 3. HAMBURGER MENU (Garis Buka Tutup Sidebar) */ .sidebar-toggle { color: #00e5ff !important; /* Jadi Biru Neon */ } /* 4. BADGE ADMIN (Kuning Emas + Teks Putih) */ .user-status.admin { /* Background Kuning/Orange Emas */ background: linear-gradient(135deg, #ffaa00 0%, #ff8c00 100%) !important; /* Teks Putih Tebal */ color: #ffffff !important; font-weight: 800 !important; /* Extra Bold */ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important; /* Bayangan dikit biar jelas */ border: 1px solid rgba(255, 255, 255, 0.2) !important; } /* BADGE GUEST (Abu-abu Cyber) */ .user-status.guest { background: rgba(255, 255, 255, 0.1) !important; border: 1px solid rgba(255, 255, 255, 0.3) !important; color: #aaa !important; font-weight: 700 !important; text-transform: uppercase; } /* ========================================================= */ /* 🔐 LOGIN PAGE POLISHING: LABEL & BUBBLE LINK 🔐 */ /* ========================================================= */ /* 1. Ganti Warna Label Input (Username/Password) jadi Cyan */ .form-group label { color: #00e5ff !important; /* Cyan Neon */ font-weight: 700 !important; text-transform: uppercase !important; font-size: 12px !important; letter-spacing: 1px !important; text-shadow: 0 0 10px rgba(0, 229, 255, 0.2) !important; margin-bottom: 8px !important; } /* 2. Styling "Belum punya akun?" jadi BUBBLE MODERN */ .form-footer-link { margin-top: 25px !important; text-align: center !important; position: relative !important; z-index: 100 !important; /* Fix biar PASTI bisa diklik */ } .form-footer-link a { display: inline-block !important; /* Biar bentuk kapsul */ /* Background Kaca Kebiruan */ background: rgba(0, 229, 255, 0.08) !important; border: 1px solid rgba(0, 229, 255, 0.3) !important; /* Bentuk & Ukuran Proporsional */ border-radius: 50px !important; /* Bulat Kapsul */ padding: 12px 25px !important; /* Typography */ color: #00e5ff !important; /* Teks Biru */ font-size: 13px !important; font-weight: 600 !important; text-decoration: none !important; letter-spacing: 0.5px !important; /* Animasi */ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; cursor: pointer !important; /* Pastikan kursor jari muncul */ box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important; } /* 3. Efek Hover (Pas Disentuh) */ .form-footer-link a:hover { background: rgba(0, 229, 255, 0.2) !important; /* Lebih terang */ border-color: #00e5ff !important; color: #ffffff !important; /* Teks jadi Putih */ transform: translateY(-3px) !important; /* Naik dikit */ box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) !important; /* Glow */ } /* 4. Fix Input Background di Login (Biar gak putih polos banget) */ .login-form .form-input { background: rgba(0, 0, 0, 0.3) !important; /* Gelap transparan */ backdrop-filter: none !important; /* Ringan */ } /* ========================================================= */ /* 🛠️ FIX MASTERCLASS & FONT CONSISTENCY 🛠️ */ /* ========================================================= */ /* 1. Paksa Font 'Plus Jakarta Sans' untuk SEMUA elemen */ * { font-family: 'Plus Jakarta Sans', sans-serif !important; } /* 2. Ubah Tombol "Lihat Detail" (Masterclass) jadi Cyber Blue */ .details-button { /* Style Gelap Mewah (Sama kayak tombol lain) */ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; border: 1px solid rgba(0, 229, 255, 0.5) !important; /* Border Cyan */ color: #ffffff !important; /* Teks Putih */ border-radius: 12px !important; padding: 10px 15px !important; display: block !important; text-align: center !important; font-weight: 700 !important; text-decoration: none !important; box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important; transition: all 0.3s ease !important; } /* Efek Hover Masterclass */ .details-button:hover { background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important; border-color: #00e5ff !important; color: #00e5ff !important; /* Teks jadi Biru Neon pas hover */ box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important; transform: translateY(-2px) !important; } /* 3. Judul Spoiler Masterclass (Akses Gratis & Eksklusif) */ .spoiler-header, .spoiler-header span { color: #00e5ff !important; /* Jadi Biru Neon */ text-shadow: 0 0 10px rgba(0, 229, 255, 0.2) !important; } /* 4. Folder Spoiler-nya sendiri */ .spoiler-folder { border: 1px solid rgba(0, 229, 255, 0.2) !important; background: rgba(0, 229, 255, 0.02) !important; } /* ================================================================== */ /* 💎 CYBER BLUE ULTIMATE PATCH (TIMPA DI PALING BAWAH CSS) 💎 */ /* ================================================================== */ /* 1. GLOBAL FONT & COLOR OVERRIDE */ @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap'); * { font-family: 'Plus Jakarta Sans', sans-serif !important; } /* 2. UBAH SEMUA WARNA HIJAU (#00ff88) JADI BIRU (#00e5ff) */ .app-title, .page-title, .sidebar-title, .sidebar-toggle, .welcome-message span, .saldo-refresh-btn, .form-group label, .control-group label, .input-section label, .slider-container output, .extend-toggle-container .cost-label strong, .fomo-popup-text strong, .spoiler-header, .modal-title, .login-form h2 { color: #00e5ff !important; text-shadow: 0 0 10px rgba(0, 229, 255, 0.3) !important; } /* 3. PERBAIKAN INPUT FIELD (BIAR LEBIH MEWAH) */ .form-input, .select-input, .prompt-input, textarea { background: #0a0a0f !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; color: #fff !important; border-radius: 12px !important; } .form-input:focus, .select-input:focus, .prompt-input:focus { border-color: #00e5ff !important; box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15) !important; } /* 4. PERBAIKAN TOMBOL LOGIN & ACTION (GRADASI BIRU) */ .login-button, .action-button, #veoGenButton, #soraGenerateButton { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; border: 1px solid rgba(0, 229, 255, 0.5) !important; color: #ffffff !important; font-weight: 700 !important; border-radius: 12px !important; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; } .login-button:hover, .action-button:hover { border-color: #00e5ff !important; box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) !important; transform: translateY(-2px); color: #fff !important; } /* 5. TOMBOL "BELUM PUNYA AKUN" JADI GELEMBUNG (BUBBLE) */ .form-footer-link a { display: inline-block !important; background: rgba(0, 229, 255, 0.1) !important; border: 1px solid rgba(0, 229, 255, 0.3) !important; border-radius: 50px !important; padding: 10px 25px !important; color: #00e5ff !important; font-weight: 600 !important; text-decoration: none !important; margin-top: 10px !important; transition: all 0.3s ease !important; } .form-footer-link a:hover { background: rgba(0, 229, 255, 0.25) !important; color: #fff !important; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important; } /* 6. UPLOAD BOX HOVER EFFECT */ .upload-box:hover { border-color: #00e5ff !important; background: rgba(0, 229, 255, 0.05) !important; } .upload-box:hover span { color: #00e5ff !important; } /* 8. MASTERCLASS BUTTON & TITLE */ .details-button { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; border: 1px solid rgba(0, 229, 255, 0.5) !important; color: #fff !important; } .details-button:hover { border-color: #00e5ff !important; box-shadow: 0 0 10px rgba(0, 229, 255, 0.4) !important; } /* 9. SIDEBAR ACTIVE & HOVER */ .menu-item.active { background: rgba(0, 229, 255, 0.1) !important; color: #00e5ff !important; border-left-color: #00e5ff !important; } .menu-item:hover { color: #00e5ff !important; } /* 10. SLIDER BEFORE AFTER (Garis Neon Biru) */ .img-after { border-right: 3px solid #00e5ff !important; } .lbl-after { color: #00e5ff !important; border-color: rgba(0, 229, 255, 0.5) !important; } /* 11. HAPUS SISA HIJAU DI LINK */ a { color: #00e5ff !important; } /* --- NEW: MODE TOGGLE (BIASA vs PRO) --- */ .mode-toggle-wrapper { background: rgba(0, 0, 0, 0.4); border: 1px solid #333; border-radius: 12px; padding: 15px; margin: 20px 0; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; } .mode-toggle-wrapper.pro-active { background: linear-gradient(90deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0) 100%); border-color: #00ff88; box-shadow: 0 0 15px rgba(0, 255, 136, 0.1); } .mode-text-group { flex: 1; padding-right: 15px; } .mode-title { font-size: 16px; font-weight: 800; color: #fff; display: block; margin-bottom: 5px; text-transform: uppercase; } .mode-badge { font-size: 10px; padding: 2px 6px; border-radius: 4px; margin-left: 8px; vertical-align: middle; font-weight: bold; } .badge-biasa { background: #444; color: #ccc; } .badge-pro { background: #00ff88; color: #000; display: none; } .mode-desc { font-size: 12px; color: #888; line-height: 1.4; } .mode-toggle-wrapper.pro-active .badge-biasa { display: none; } .mode-toggle-wrapper.pro-active .badge-pro { display: inline-block; } .mode-toggle-wrapper.pro-active .mode-title { color: #00ff88; } .mode-toggle-wrapper.pro-active .mode-desc { color: #cfc; } /* Toggle Switch Besar */ .toggle-switch-lg { position: relative; display: inline-block; width: 60px; height: 34px; flex-shrink: 0; } .toggle-switch-lg input { opacity: 0; width: 0; height: 0; } .slider-lg { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: .4s; border-radius: 34px; border: 1px solid #555; } .slider-lg:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; } input:checked + .slider-lg { background-color: #00ff88; border-color: #00ff88; } input:checked + .slider-lg:before { transform: translateX(26px); background-color: #000; } /* ================================================= */ /* 💎 FINAL FIX: TOGGLE PRO (GANTI IJO JADI BIRU) 💎 */ /* ================================================= */ /* 1. UBAH WARNA TOMBOL SWITCH (Yang tadinya Hijau #00ff88) */ input:checked + .slider-lg { background-color: #00e5ff !important; /* Jadi Biru Neon */ border-color: #00e5ff !important; /* Border Biru */ box-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important; /* Glow Biru di tombol */ } /* 2. DEFINISI ANIMASI DENYUT (PULSE) BIRU */ @keyframes proGlowPulse { 0% { box-shadow: 0 0 5px rgba(0, 229, 255, 0.1); border-color: rgba(0, 229, 255, 0.3); } 50% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.5); /* Nyala Terang */ border-color: #00e5ff; /* Border Tegas */ } 100% { box-shadow: 0 0 5px rgba(0, 229, 255, 0.1); border-color: rgba(0, 229, 255, 0.3); } } /* 3. SAAT TOGGLE PRO AKTIF (KOTAKNYA BERDENYUT) */ .mode-toggle-wrapper.pro-active { /* Background gradasi biru gelap transparan */ background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, rgba(10, 10, 20, 0.5) 100%) !important; /* Jalankan animasi denyut */ animation: proGlowPulse 2s infinite ease-in-out !important; transition: all 0.3s ease !important; } /* 4. BADGE "PRO" JADI BIRU NEON */ .mode-toggle-wrapper.pro-active .badge-pro { background: #00e5ff !important; color: #000 !important; /* Teks Hitam Kontras */ box-shadow: 0 0 15px rgba(0, 229, 255, 0.8) !important; transform: scale(1.1); /* Sedikit membesar */ } /* 5. TEKS JUDUL JADI GLOWING */ .mode-toggle-wrapper.pro-active .mode-title { color: #fff !important; text-shadow: 0 0 10px rgba(0, 229, 255, 0.8); } /* 6. TEKS DESKRIPSI JADI LEBIH TERANG */ .mode-toggle-wrapper.pro-active .mode-desc { color: #a5f3fc !important; /* Biru muda pucat */ } /* ================================================================== */ /* 🚀 PAKET UI: SCROLLBAR DESKTOP & ANIMASI HASIL (VERSI DRAMATIS) 🚀 */ /* ================================================================== */ /* --- 1. SCROLLBAR CUSTOM (Hanya untuk Laptop/PC) --- */ @media (min-width: 769px) { /* Paksa semua elemen yang punya scrollbar ikut style ini */ *::-webkit-scrollbar { width: 10px !important; height: 10px !important; } /* Jalur/Track Scrollbar (Hitam Gelap) */ *::-webkit-scrollbar-track { background: #050505 !important; } /* Batang/Thumb Scrollbar (Abu Gelap Bulat) */ *::-webkit-scrollbar-thumb { background-color: #444 !important; border-radius: 20px !important; border: 2px solid #050505 !important; /* Kasih jarak biar rapi */ } /* Saat Mouse Nempel (Hover) -> JADI BIRU NEON */ *::-webkit-scrollbar-thumb:hover { background-color: #00e5ff !important; box-shadow: 0 0 10px rgba(0, 229, 255, 0.5) !important; } } /* --- 2. DEFINISI ANIMASI "MEMBAL" (DRAMATIS & LEBIH LAMBAT) --- */ @keyframes hardPopUp { 0% { opacity: 0; /* Mulai dari JAUH di bawah (100px) & Kecil (0.8) */ transform: scale(0.8) translateY(100px); } 50% { opacity: 1; /* Membal ke atas banget (lewat batas normal) */ transform: scale(1.05) translateY(-20px); } 100% { opacity: 1; /* Mendarat santuy di posisi asli */ transform: scale(1) translateY(0); } } /* --- 3. TERAPKAN KE SEMUA JENIS HASIL (SAPU JAGAT) --- */ .result-grid-item, .result-image-wrapper, .result-video-wrapper { /* Wajib block biar bisa gerak */ display: block !important; /* Durasi 1 Detik (Biar mata sempet liat) + Delay 0.1 Detik (Jeda napas) */ animation: hardPopUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards !important; /* Sembunyikan di awal biar munculnya gak kaget (snapping) */ opacity: 0; } /* --- 4. PERBAIKAN WADAH (PENTING BUAT SINGLE IMAGE) --- */ /* Biar animasi "membal"-nya gak kepotong garis tepi kotak */ .result-area, .result-image-wrapper { overflow: visible !important; perspective: 1000px; /* Biar efek 3D scale lebih dapet */ } /* Container Utama */ #airaWidget { display: none; /* Muncul via JS setelah login */ z-index: 9999; } /* 1. Floating Trigger Button (ICON DIPERBESAR) */ .aira-floating-btn { position: fixed; bottom: 30px; right: 30px; width: 75px; /* Dulu 65px -> Naik ke 75px */ height: 75px; border-radius: 50%; background: padding-box, linear-gradient(135deg, #00e5ff, #00ff88) border-box; border: 3px solid transparent; cursor: pointer; z-index: 10000; box-shadow: 0 0 25px rgba(0, 229, 255, 0.6); /* Glow lebih terang */ display: flex; align-items: center; justify-content: center; transition: transform 0.3s; animation: floatBounce 3s ease-in-out infinite; } @keyframes floatBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .aira-floating-btn:hover { transform: scale(1.1); animation: none; } .aira-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; } /* 2. Tooltip (TEKS & UKURAN LEBIH GEDE) */ .aira-tooltip { position: fixed; bottom: 115px; /* Naik dikit menyesuaikan tombol */ right: 40px; width: 280px; /* Lebar ditambah biar muat teks gede */ background: #fff; color: #000; padding: 15px 20px; /* Padding diperlega */ border-radius: 16px; font-size: 15px; /* Font dibesarkan dari 13px */ line-height: 1.5; box-shadow: 0 5px 25px rgba(0,0,0,0.6); z-index: 9998; /* Default sembunyi */ opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; } .aira-tooltip.show { opacity: 1; transform: translateY(0); pointer-events: auto; cursor: pointer; } /* Panah Tooltip */ .aira-tooltip::after { content: ''; position: absolute; bottom: -10px; right: 25px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #fff; } .aira-tooltip strong { color: #0088cc; display: block; margin-bottom: 6px; font-size: 16px; /* Judul lebih gede */ font-weight: 800; } /* 3. Chat Window (UKURAN DESKTOP DIBESARKAN) */ .aira-chat-window { position: fixed; bottom: 110px; right: 30px; /* UKURAN DESKTOP SAYA BESARKAN LAGI DIKIT BIAR LEGA */ width: 400px; height: 600px; max-height: 80vh; background: rgba(15, 23, 42, 0.98); border: 1px solid rgba(0, 229, 255, 0.4); border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9); display: none; flex-direction: column; z-index: 10001; overflow: hidden; } /* FIX MOBILE AGAR TIDAK NUTUPIN SATU LAYAR (MODE LACI/SHEET) */ @media (max-width: 480px) { .aira-chat-window { bottom: 0 !important; right: 0 !important; left: 0 !important; width: 100% !important; height: 65dvh !important; max-height: 65dvh !important; border-radius: 25px 25px 0 0 !important; border-bottom: none; top: auto; box-shadow: 0 -10px 40px rgba(0,0,0,0.8); } } /* Header */ .aira-header { padding: 18px 25px; background: linear-gradient(90deg, rgba(0, 229, 255, 0.1), transparent); border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: space-between; z-index: 10002; } .aira-profile { display: flex; align-items: center; gap: 15px; } .aira-profile img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid #00e5ff; object-fit: cover; } .aira-info h4 { margin: 0; color: #fff; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; } .aira-info span { font-size: 12px; color: #00ff88; font-weight: 500; } /* Tombol Close */ .aira-close-btn { background: rgba(255, 255, 255, 0.1); border: none; color: #fff; font-size: 24px; cursor: pointer; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; } .aira-close-btn:hover { background: #ff4444; } /* Body Chat */ .aira-body { flex: 1; overflow-y: auto; padding: 25px; display: flex; flex-direction: column; gap: 18px; scroll-behavior: smooth; background: radial-gradient(circle at top, rgba(0, 229, 255, 0.05), transparent 70%); } .aira-msg { max-width: 85%; padding: 14px 18px; border-radius: 18px; font-size: 15px; line-height: 1.5; position: relative; word-wrap: break-word; } .aira-msg.user { align-self: flex-end; background: linear-gradient(135deg, #00e5ff 0%, #0099ff 100%); color: #050505; font-weight: 600; border-bottom-right-radius: 4px; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2); } .aira-msg.ai { align-self: flex-start; background: rgba(255, 255, 255, 0.08); color: #eee; border: 1px solid rgba(255, 255, 255, 0.1); border-top-left-radius: 4px; } /* Code Block Fix */ .aira-msg pre { background: #0a0a0a; padding: 12px; border-radius: 10px; border: 1px solid #333; margin-top: 8px; font-family: 'Courier New', monospace; font-size: 12px; color: #00e5ff; white-space: pre-wrap; word-wrap: break-word; max-width: 100%; } /* ==================== BATAS ATAS KODE PENGGANTI FINAL AIRA FOOTER ==================== */ /* Footer Input */ .aira-footer { padding: 15px 20px; background: #0f172a; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 12px; } /* Container Chips (Disusun Rapi ke Bawah/Samping - WRAPPING) */ .aira-chips-container { display: flex; gap: 8px; flex-wrap: wrap; overflow-x: visible; padding-bottom: 0; white-space: normal; } .aira-chips-container::-webkit-scrollbar { display: none; } /* Styling Tombol Chip (Kapsul Neon) */ .aira-chip { background: rgba(0, 0, 0, 0.6); border: 1px solid #00e5ff; color: #00e5ff; padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 5px rgba(0, 229, 255, 0.1); flex-shrink: 0; } /* Efek Hover (Nyala) */ .aira-chip:hover { background: #00e5ff; color: #000; box-shadow: 0 0 15px rgba(0, 229, 255, 0.6); transform: translateY(-2px); } /* FIX: Styling Input Wrapper */ .aira-footer > div:nth-child(2) { display: flex; gap: 8px; /* Jarak dirapetin dikit */ align-items: flex-end; width: 100%; } /* FIX: Textarea (Kotak Pesan STABIL) */ .aira-footer textarea { flex: 1; background: rgba(0, 0, 0, 0.4) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; border-radius: 12px !important; padding: 12px 15px !important; color: #ffffff; caret-color: #00e5ff; resize: none !important; min-height: 48px !important; max-height: 120px; font-size: 16px !important; line-height: 1.5; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; } .aira-footer textarea:focus { outline: none !important; border-color: #00e5ff !important; box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.3); } .aira-footer textarea::placeholder { color: #666; } /* FIX: Tombol Kirim (SIZE & WARNA DIPERBAIKI) */ .aira-send-btn { /* Background Tetap Biru Neon */ background: linear-gradient(135deg, #00e5ff 0%, #0099ff 100%) !important; border: none; /* TEKS JADI HITAM PEKAT BIAR JELAS */ color: #000000 !important; /* UKURAN FONT DIKECILIN */ font-size: 11px !important; font-weight: 800; letter-spacing: 0.5px; cursor: pointer; /* Ukuran Tombol */ padding: 0 15px; /* Padding samping disesuaikan */ height: 48px; /* Tinggi tetap sama dengan input */ border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3); text-shadow: none !important; /* Hapus bayangan teks biar tajam */ } .aira-send-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5); filter: brightness(1.1); } /* ==================== BATAS BAWAH KODE PENGGANTI FINAL AIRA FOOTER ==================== */ /* FIX KURSOR INPUT GAK KELIHATAN */ .aira-input-wrapper textarea { flex: 1; background: transparent; border: none; color: #ffffff; /* Pastikan teks putih */ caret-color: #00e5ff; /* Kursor warna biru neon biar kelihatan */ resize: none; height: 24px; max-height: 100px; font-size: 15px; padding: 0; line-height: 24px; font-family: inherit; } .aira-input-wrapper textarea::placeholder { color: #666; } .aira-input-wrapper textarea:focus { outline: none; } .aira-send-btn { background: none; border: none; color: #00e5ff; font-size: 22px; cursor: pointer; padding: 0; display: flex; align-items: center; } .aira-send-btn:hover { transform: translateX(2px); } /* Typing Dots */ .typing-indicator { display: flex; gap: 6px; padding: 12px 18px; background: rgba(255,255,255,0.05); border-radius: 20px; width: fit-content; margin-bottom: 10px; } .typing-dot { width: 8px; height: 8px; background: #00e5ff; border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; } .typing-dot:nth-child(1) { animation-delay: -0.32s; } .typing-dot:nth-child(2) { animation-delay: -0.16s; } @keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } } /* 4. FIX MOBILE VIEW (AGAR TIDAK MENUTUPI SEMUA) */ @media (max-width: 480px) { .aira-chat-window { /* Bikin seperti laci bawah (Bottom Sheet) */ bottom: 0 !important; right: 0 !important; left: 0 !important; width: 100% !important; /* Cuma setinggi 85% layar, jadi sisa 15% atas masih kelihatan background */ height: 85dvh !important; max-height: 85dvh !important; border-radius: 25px 25px 0 0 !important; /* Round cuma di atas */ border-bottom: none; top: auto; /* Jangan paksa top 0 */ box-shadow: 0 -10px 40px rgba(0,0,0,0.8); } .aira-header { padding-top: 20px; border-radius: 25px 25px 0 0; } /* Tombol floating tetap di bawah, tapi ketutup chat gak masalah karena ada tombol close di header */ .aira-floating-btn { bottom: 20px; right: 20px; } /* Tooltip di mobile naik dikit */ .aira-tooltip { right: 20px; bottom: 105px; width: auto; left: 20px; } } /* --- FIX: AIRA TOOLTIP MOBILE (BIAR GAK GEDE) --- */ @media (max-width: 480px) { /* Kecilin Wizard di HP */ .wizard-content { padding: 20px; width: 95%; } .wizard-title { font-size: 18px; } .wizard-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } /* 2 Kolom di HP */ .wizard-card { padding: 15px 5px; min-height: 110px; } .wizard-icon { font-size: 24px; margin-bottom: 5px; } .wizard-card-title { font-size: 11px; } .wizard-card-desc { font-size: 9px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } /* FIX AIRA TOOLTIP */ .aira-tooltip { width: auto !important; max-width: 220px !important; /* Batasi lebar */ right: 20px !important; bottom: 95px !important; /* Naik dikit dari tombol */ left: auto !important; /* Jangan stretch kiri-kanan */ padding: 10px 15px !important; font-size: 12px !important; /* Font kecilin */ border-radius: 12px !important; } .aira-tooltip strong { font-size: 13px !important; /* Judul kecilin dikit */ margin-bottom: 2px !important; } .aira-floating-btn { width: 60px !important; /* Tombol juga kecilin dikit biar proporsional */ height: 60px !important; bottom: 25px !important; right: 20px !important; } } /* --- ONBOARDING WIZARD (FINAL CYBER STYLE) --- */ .onboarding-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 99999; align-items: center; justify-content: center; animation: fadeIn 0.5s ease; } .onboarding-card { background: linear-gradient(145deg, rgba(20, 30, 48, 0.9), rgba(10, 10, 20, 0.95)); border: 1px solid rgba(0, 229, 255, 0.3); box-shadow: 0 0 40px rgba(0, 229, 255, 0.15); border-radius: 24px; padding: 40px; width: 90%; max-width: 500px; text-align: center; position: relative; overflow: hidden; } /* Efek Glow Pojok */ .onboarding-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: #00e5ff; filter: blur(80px); opacity: 0.2; pointer-events: none; } .ob-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: 0.5px; } .ob-subtitle { font-size: 14px; color: #94a3b8; margin-bottom: 30px; line-height: 1.5; } .ob-grid-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; } .ob-big-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 16px 20px; border-radius: 16px; cursor: pointer; display: flex; align-items: center; gap: 15px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-align: left; } .ob-big-btn:hover, .ob-big-btn:active { background: rgba(0, 229, 255, 0.1); border-color: #00e5ff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .ob-icon { font-size: 24px; min-width: 30px; text-align: center; } .ob-text-group h4 { color: #fff; font-size: 15px; margin: 0 0 4px 0; font-weight: 700; } .ob-text-group p { color: #888; font-size: 11px; margin: 0; line-height: 1.3; } .ob-big-btn:hover .ob-text-group h4 { color: #00e5ff; } /* Tombol Lewati (Ghost Button) */ .ob-ghost-btn { background: transparent; border: 1px solid rgba(255, 255, 255, 0.15); color: #666; padding: 10px 25px; border-radius: 50px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-block; } .ob-ghost-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); } .slide-enter { animation: slideInRight 0.4s ease forwards; } @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } /* Fix Mobile */ @media (max-width: 480px) { .onboarding-card { padding: 30px 20px; } .ob-title { font-size: 20px; } .ob-subtitle { font-size: 13px; margin-bottom: 20px; } .ob-big-btn { padding: 14px; } } /* ========================================================= */ /* 📱 MOBILE SUPER SUITE: FINAL PATCH (GRID + CLOSE BUTTON) */ /* ========================================================= */ @media (max-width: 600px) { /* 1. GRID SYSTEM UNTUK TOMBOL (View, Save, Bridge) */ .result-actions, .image-generated-container div[style*="flex"], .generated-result div[style*="flex"], .generated-result .button-group { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 8px !important; width: 100% !important; margin-top: 10px !important; justify-content: center !important; flex-wrap: wrap !important; } /* Styling Tombol biar Rapi */ .result-actions button, .result-actions a, .image-generated-container button, .generated-result button, .generated-result .btn { width: 100% !important; min-width: 0 !important; margin: 0 !important; padding: 8px 4px !important; display: flex !important; align-items: center !important; justify-content: center !important; text-align: center !important; font-size: 11px !important; } /* Tombol Ganjil (Video/Bridge) jadi Lebar Penuh di Bawah */ .result-actions > :last-child:nth-child(odd), .image-generated-container div[style*="flex"] > :last-child:nth-child(odd), .generated-result div[style*="flex"] > :last-child:nth-child(odd) { grid-column: span 2 !important; } /* 2. PROTEKSI TAMPILAN MEDIA (Gambar & Video) */ .generated-result img, .generated-result video, .image-generated-container img, .image-generated-container video { width: 100% !important; height: auto !important; object-fit: contain !important; max-height: 80vh !important; } /* 3. TOMBOL CLOSE FULLSCREEN (FIXED POSITION V3) */ /* Target ID dan Class spesifik agar tidak meleset */ /* Target ID dan Class spesifik agar tidak meleset */ #fullscreenModal .close, #fullscreenModal .close-modal, #imageOverlay .close, #imageOverlay span[onclick*="close"] { /* Posisi Mutlak di Layar HP */ position: fixed !important; top: auto !important; right: auto !important; left: 50% !important; bottom: 80px !important; /* Area aman jempol */ transform: translateX(-50%) !important; /* Desain Tombol Kapsul Mewah */ display: flex !important; align-items: center !important; justify-content: center !important; background: rgba(10, 10, 10, 0.9) !important; border: 1px solid #00e5ff !important; border-radius: 50px !important; padding: 12px 35px !important; /* Teks & Visibility */ color: #00e5ff !important; font-size: 24px !important; opacity: 1 !important; visibility: visible !important; z-index: 2147483647 !important; /* Paling atas */ box-shadow: 0 0 20px rgba(0, 229, 255, 0.5) !important; text-decoration: none !important; } /* Teks Tambahan "CLOSE" */ #fullscreenModal .close::after, #fullscreenModal .close-modal::after, #imageOverlay .close::after { content: "CLOSE" !important; font-size: 14px !important; font-weight: bold !important; margin-left: 10px !important; color: #ffffff !important; font-family: sans-serif !important; } } /* --- DASHBOARD ONBOARDING CARD (MIDNIGHT GLASS LUXURY) --- */ .onboarding-overlay-card { background: #151520; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 30px; margin: 10px 0 30px 0; animation: fadeIn 0.5s ease-out; position: relative; z-index: 10; } /* OTOMATIS SEMBUNYIKAN GRID UTAMA JIKA CARD ADA */ #onboardingCard:not([style*="display: none"]) ~ .studio-lobby-grid { display: none !important; } .onboarding-main-title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; text-align: left; line-height: 1.2; } .onboarding-sub-title { color: #888; font-size: 15px; margin-bottom: 25px; text-align: left; } .onboarding-menu-container { display: flex; flex-direction: column; gap: 12px; } .onboarding-group { border-radius: 15px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; transition: all 0.3s ease; } .onboarding-group-btn { width: 100%; padding: 20px; background: transparent; border: none; color: #fff; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; font-family: inherit; transition: all 0.3s ease; } /* ANIMASI HOVER TOMBOL UTAMA */ .onboarding-group-btn:hover { background: rgba(0, 229, 255, 0.1); padding-left: 28px; color: #00e5ff; } .onboarding-group.active { border-color: #00e5ff; background: rgba(0, 229, 255, 0.03); box-shadow: 0 0 20px rgba(0, 229, 255, 0.1); } .btn-arrow { font-size: 12px; color: #00e5ff; transition: transform 0.3s ease; } .onboarding-group.active .btn-arrow { transform: rotate(180deg); } .onboarding-group-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: rgba(0, 0, 0, 0.2); } .onboarding-group.active .onboarding-group-content { max-height: 1200px; padding-bottom: 15px; } .onboarding-sub-header { padding: 15px 20px 5px 20px; font-size: 13px; color: #00e5ff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; } .onboarding-option { padding: 14px 20px; margin: 6px 15px; background: rgba(255, 255, 255, 0.03); border-radius: 12px; cursor: pointer; font-size: 14px; transition: all 0.2s ease; border: 1px solid rgba(255, 255, 255, 0.05); color: #ccc; line-height: 1.5; } .onboarding-option:hover { background: #1a1a2e; border-color: #00e5ff; color: #fff; transform: translateX(8px); } .onboarding-skip-btn { margin-top: 30px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #777; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-size: 13px; display: block; margin: 30px auto 0 auto; transition: all 0.3s; } .onboarding-skip-btn:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, 0.1); } .onboarding-fade-out { opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; } @media (max-width: 768px) { .onboarding-overlay-card { padding: 20px; } .onboarding-main-title { font-size: 20px; } .onboarding-group-btn { padding: 15px; font-size: 15px; } .onboarding-option { font-size: 13px; margin: 5px 10px; } } /* --- MOBILE SEAMLESS KEYBOARD LOGIC (FIXED - NO RESIZING) --- */ @media (max-width: 768px) { /* 1. Reset Global: Kunci Layar Utama biar Address Bar Diem */ html, body { scroll-behavior: smooth; overflow-x: hidden; overflow-y: hidden !important; height: 100% !important; position: relative; } /* 2. KHUSUS Login & Registrasi: Tetap Fit Screen & No-Scroll (Data Lo) */ .login-container { display: flex; flex-direction: column; justify-content: space-evenly !important; height: 100dvh !important; padding: 15px 20px !important; box-sizing: border-box !important; overflow: hidden !important; position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; } /* 3. Pindahkan Scroll ke Konten: Biar fitur panjang lo tetep aman di-scroll */ .main-content { height: 100dvh !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; } /* 4. Lock Layar Belakang saat Expand Prompt kebuka */ body.modal-open .main-content { overflow: hidden !important; } /* Aturan Logo & Teks (Data Lo Tetap Utuh) */ .logo-container { margin: 0 !important; flex-shrink: 0 !important; } .logo { width: 140px !important; max-height: 18dvh !important; flex-shrink: 0 !important; } #forgotPage .logo, #invitePage .logo { max-height: 13dvh !important; width: auto !important; max-width: 110px !important; } .app-title { font-size: 18px !important; margin: 2px 0 !important; } .tagline, .sub-tagline, .credit-tagline { margin: 0 !important; line-height: 1.1 !important; font-size: 11px !important; } .login-form { margin: 0 !important; width: 100% !important; } .form-group { margin-bottom: 8px !important; } /* Penyesuaian Keyboard (Data Lo Tetap Utuh) */ @media (max-height: 600px) { .main-content { padding-top: 70px !important; } .sub-tagline, .credit-tagline, .tagline { display: none !important; } .logo { width: 110px !important; } .login-container { justify-content: flex-start !important; padding-top: 10px !important; } } /* 5. Scroll Margin: Fix biar gak nyundul kejauhan ke atas pas ngetik */ .prompt-input, .form-input, textarea, [contenteditable="true"] { scroll-margin-top: 25px !important; } } /* Nama class gue bikin unik biar gak bentrok sama tombol login */ .ai-history-hidden { display: none !important; } .history-card video, .history-card img { width: 100%; border-radius: 8px; margin-bottom: 10px; border: 1px solid rgba(0,229,255,0.2); } .album-header { display: flex; align-items: center; gap: 15px; cursor: pointer; padding: 12px; border-radius: 12px; transition: all 0.2s ease; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); } .album-header:hover { background: rgba(255,255,255,0.08); border-color: rgba(0, 229, 255, 0.3); } .album-cover-wrapper { position: relative; width: 50px; height: 50px; flex-shrink: 0; overflow: hidden; } .album-cover-img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; } .album-badge { position: absolute; bottom: -4px; right: -4px; background: #00e5ff; color: #000; font-size: 8px; font-weight: 900; padding: 2px 5px; border-radius: 4px; } .album-info { flex-grow: 1; } .album-title { font-weight: bold; font-size: 14px; color: #fff; margin-bottom: 2px; } .album-date { font-size: 10px; color: #777; } .album-arrow { color: #555; transition: transform 0.3s ease; font-size: 14px; } /* KLING 3.0 SPECIFIC STYLES - UPGRADED TO LUXURY */ .v3-shot-card, .v3-element-card { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; backdrop-filter: blur(10px); margin-bottom: 15px; padding: 20px !important; border-radius: 16px !important; position: relative; animation: hardPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; } @media (max-width: 768px) { /* Rampingkan padding total agar area ketik lebih luas */ .feature-container { padding: 15px 10px !important; } .v3-shot-card, .v3-element-card { padding: 12px 10px !important; } /* Header kartu (Adegan & Durasi) dibikin vertikal biar gak tabrakan */ .v3-shot-card div[style*="justify-content:space-between"] { flex-direction: column !important; align-items: flex-start !important; gap: 8px; } /* Kotak prompt ditinggikan biar enak ngetiknya */ .v3-shot-prompt, #klingV3_SinglePrompt { min-height: 160px !important; font-size: 14px !important; padding: 12px !important; } /* Kotak upload element jadi 2 kolom saja biar gedean */ .v3-element-card .input-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; } } /* TOMBOL SECONDARY PREMIUM (TAMBAH ADEGAN & KARAKTER) */ .v3-secondary-btn { width: 100%; padding: 14px; background: rgba(0, 229, 255, 0.05) !important; border: 1px dashed rgba(0, 229, 255, 0.4) !important; color: #00e5ff !important; border-radius: 12px !important; font-size: 13px !important; font-weight: 700 !important; cursor: pointer !important; transition: all 0.3s ease !important; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; } .v3-secondary-btn:hover { background: rgba(0, 229, 255, 0.15) !important; border-style: solid !important; box-shadow: 0 0 20px rgba(0, 229, 255, 0.3); transform: translateY(-2px); } .v3-secondary-btn:active { transform: scale(0.98); } /* Tombol Hapus Premium (Cyber Red) */ .v3-delete-btn { width: 100%; padding: 12px; background: rgba(255, 68, 68, 0.05) !important; border: 1px solid rgba(255, 68, 68, 0.3) !important; color: #ff4444 !important; border-radius: 12px; font-size: 12px; font-weight: 700; cursor: pointer; margin-top: 15px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .v3-delete-btn:hover { background: rgba(255, 68, 68, 0.15) !important; border-color: #ff4444 !important; box-shadow: 0 0 15px rgba(255, 68, 68, 0.2); } /* Memastikan Kotak Upload V3 Center */ #klingV3Tab .single-upload-container, #klingV3Tab .upload-box-wrapper { display: flex; flex-direction: column; align-items: center; margin-left: auto; margin-right: auto; } #klingV3_BaseUploads { justify-content: center; } /* Perbaikan Centering & Grid Kling V3 */ #klingV3_BaseUploads { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: flex-start; } #klingV3Tab .upload-box-wrapper { flex: 1; min-width: 250px; max-width: 300px; display: flex; flex-direction: column; align-items: center; margin: 0 auto !important; /* Paksa posisi Center */ } /* Kotak Video Element - Samakan Persis dengan Kling Motion */ .v3-element-card .element-video-input .upload-box { width: 100% !important; max-width: 300px !important; aspect-ratio: 1 / 1 !important; /* Paksa Square biar gagah */ height: auto !important; min-height: 250px !important; display: flex !important; justify-content: center !important; align-items: center !important; margin: 0 auto !important; } /* Label Kecil Info Limit */ .upload-limit-info { font-size: 10px; color: #666; margin-top: 8px; text-align: center; display: block; } /* ========================================================= */ /* 🎬 VIDEO REMIX TAB (V2V Reference + Edit) STYLES */ /* ========================================================= */ /* --- Video Upload Box --- */ .v2v-video-upload-box { border: 2px dashed rgba(0, 229, 255, 0.4); border-radius: 16px; padding: 20px; text-align: center; cursor: pointer; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.3s ease; position: relative; overflow: hidden; background: rgba(0, 229, 255, 0.02); } .v2v-video-upload-box:hover { border-color: #00e5ff; background: rgba(0, 229, 255, 0.06); box-shadow: 0 0 20px rgba(0, 229, 255, 0.15); } .v2v-video-upload-box.has-video { border-style: solid; border-color: #00e5ff; padding: 0; min-height: auto; } .v2v-video-upload-box.has-video video { width: 100%; max-height: 300px; object-fit: contain; border-radius: 14px; display: block; } .v2v-video-upload-box .upload-placeholder { color: #666; font-size: 14px; line-height: 1.6; } .v2v-video-upload-box .upload-placeholder .upload-icon { font-size: 40px; display: block; margin-bottom: 10px; } .v2v-video-upload-box .upload-actions { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; background: rgba(0,0,0,0.85); padding: 8px 12px; border-radius: 10px; opacity: 0; transition: opacity 0.3s ease; z-index: 5; } .v2v-video-upload-box.has-video:hover .upload-actions, .v2v-video-upload-box.has-video:active .upload-actions { opacity: 1; } @media (hover: none) { .v2v-video-upload-box.has-video .upload-actions { opacity: 1; } } /* Video Info Chips (durasi, ukuran) */ .v2v-video-info { display: flex; gap: 10px; justify-content: center; margin-top: 10px; flex-wrap: wrap; } .v2v-video-info .info-chip { background: rgba(0, 229, 255, 0.1); border: 1px solid rgba(0, 229, 255, 0.2); color: #00e5ff; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; } /* --- V2V Sub-Mode Toggle (Kloning Gaya vs Sulap Video) --- */ .v2v-mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; } .v2v-mode-btn { padding: 16px 12px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); cursor: pointer; transition: all 0.3s ease; text-align: center; } .v2v-mode-btn:hover { border-color: rgba(0, 229, 255, 0.3); background: rgba(0, 229, 255, 0.05); } .v2v-mode-btn.active { border-color: #00e5ff; background: rgba(0, 229, 255, 0.1); box-shadow: 0 0 20px rgba(0, 229, 255, 0.15); } .v2v-mode-btn .mode-icon { font-size: 28px; display: block; margin-bottom: 8px; } .v2v-mode-btn .mode-name { color: #fff; font-size: 14px; font-weight: 800; display: block; margin-bottom: 4px; } .v2v-mode-btn .mode-desc { color: #888; font-size: 11px; line-height: 1.4; display: block; } .v2v-mode-btn.active .mode-name { color: #00e5ff; } .v2v-mode-btn.active .mode-desc { color: #aaa; } /* --- V2V Element Card --- */ .v2v-element-card { background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; backdrop-filter: blur(10px); margin-bottom: 15px; padding: 20px !important; border-radius: 16px !important; position: relative; animation: hardPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; } /* --- V2V Pricing Card --- */ .v2v-pricing-card { background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 16px; padding: 15px; margin: 20px 0; } .v2v-pricing-card .price-row { display: flex; justify-content: space-between; font-weight: bold; color: #00e5ff; font-size: 16px; } /* --- Keep Audio Toggle --- */ .v2v-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; margin: 15px 0; } .v2v-toggle-row .toggle-label { color: #ccc; font-size: 13px; font-weight: 600; } .v2v-toggle-row .toggle-label strong { color: #fff; } /* --- Reference Image Slots --- */ .v2v-ref-images-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; } .v2v-ref-images-grid .upload-box { aspect-ratio: 1 / 1; min-height: 80px; font-size: 11px; } /* ========================================================= */ /* 📎 @ TAG MENTION SYSTEM (V2V + V3) */ /* ========================================================= */ .mention-dropdown { position: absolute; bottom: 100%; left: 0; right: 0; max-height: 240px; overflow-y: auto; background: #1a1a2e; border: 1px solid rgba(0, 229, 255, 0.4); border-radius: 12px; box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6); z-index: 999; display: none; margin-bottom: 5px; -webkit-overflow-scrolling: touch; } .mention-dropdown.show { display: block; animation: fadeIn 0.2s ease; } .mention-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; transition: background 0.15s ease; border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .mention-item:last-child { border-bottom: none; } .mention-item:hover, .mention-item.selected { background: rgba(0, 229, 255, 0.1); } .mention-item .mention-thumb { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.1); flex-shrink: 0; } .mention-item .mention-thumb-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(0, 229, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid rgba(0, 229, 255, 0.3); } .mention-item .mention-info { flex: 1; min-width: 0; } .mention-item .mention-tag { color: #00e5ff; font-weight: 800; font-size: 13px; display: block; } .mention-item .mention-label { color: #888; font-size: 11px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* Mobile Responsive */ @media (max-width: 768px) { .v2v-mode-toggle { gap: 8px; } .v2v-mode-btn { padding: 12px 8px; } .v2v-mode-btn .mode-icon { font-size: 24px; } .v2v-mode-btn .mode-name { font-size: 12px; } .v2v-mode-btn .mode-desc { font-size: 10px; } .v2v-video-upload-box { min-height: 160px; } .v2v-ref-images-grid { grid-template-columns: repeat(3, 1fr); } .v2v-element-card { padding: 12px 10px !important; } .mention-dropdown { max-height: 200px; } .mention-item { padding: 8px 10px; } .mention-item .mention-thumb, .mention-item .mention-thumb-icon { width: 30px; height: 30px; } } /* Fix V2V Video Upload Box — Samain ukuran kayak Kling Motion, posisi tengah */ .v2v-video-upload-box { max-width: 280px; min-height: 150px; margin: 0 auto; aspect-ratio: 1 / 1; } .v2v-video-upload-box.has-video { aspect-ratio: auto; max-width: 350px; } /* ====== NANO BANANA 2 BADGE ====== */ .nano-banana-badge { margin-top: 10px; padding: 10px 16px; background: linear-gradient(135deg, rgba(255,193,7,0.15), rgba(255,152,0,0.10)); border: 1px solid rgba(255,193,7,0.4); border-radius: 12px; color: #ffd54f; font-size: 13px; text-align: center; letter-spacing: 0.5px; animation: nanoBananaGlow 2s ease-in-out infinite; } @keyframes nanoBananaGlow { 0%, 100% { box-shadow: 0 0 5px rgba(255,193,7,0.1); } 50% { box-shadow: 0 0 15px rgba(255,193,7,0.3); } } /* ====== GOOGLE SEARCH TOGGLE ====== */ .google-search-toggle-wrap { margin-top: 8px; } /* ====== PRO EXTRA UPLOAD BOXES (Creative Crafter) ====== */ .pro-extra-box { display: none; } .pro-extra-box.show { display: block; } /* ====== PARTY / WHAT'S NEW MODAL ====== */ .party-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.75); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .party-modal-overlay.show { opacity: 1; pointer-events: all; } 
.party-modal-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 24px;
    max-width: 420px;
    width: 90%;
    padding: 30px 25px 20px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* FIX MOBILE: Agar bisa di-scroll & tombol gak ilang */
    max-height: 85dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #00e5ff #111;
}
.party-modal-card::-webkit-scrollbar { width: 4px; }
.party-modal-card::-webkit-scrollbar-thumb { background: #00e5ff; border-radius: 10px; }
 .party-modal-overlay.show .party-modal-card { transform: scale(1); } .party-modal-title { text-align: center; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 5px; } .party-modal-subtitle { text-align: center; color: #888; font-size: 12px; margin-bottom: 20px; } .party-feature-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; margin-bottom: 8px; background: rgba(255,255,255,0.04); border: 1px solid #333; border-radius: 14px; cursor: pointer; transition: all 0.2s ease; } .party-feature-item:hover { background: rgba(0,229,255,0.08); border-color: #00e5ff; transform: translateX(4px); } .party-feature-icon { font-size: 28px; min-width: 40px; text-align: center; } .party-feature-name { color: #fff; font-weight: 700; font-size: 13px; } .party-feature-desc { color: #888; font-size: 11px; margin-top: 2px; } 
.party-dismiss-btn { width: 100%; margin-top: 15px; padding: 12px; background: #111; border: 1px solid #444; border-radius: 12px; color: #aaa; font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.2s; position: sticky; bottom: 0; padding-top: 15px; box-shadow: 0 -8px 16px rgba(17,17,17,0.95); z-index: 10; } .party-dismiss-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
 .hide-scrollbar::-webkit-scrollbar { display: none; } .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } .payment-confirm-page { min-height:100vh; background:linear-gradient(180deg,#0a0a14 0%,#0d1020 50%,#0a0a14 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; padding:24px; position:relative; overflow:hidden; } .payment-confirm-page::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(ellipse at 30% 20%,rgba(0,229,255,0.04) 0%,transparent 50%),radial-gradient(ellipse at 70% 80%,rgba(138,43,226,0.04) 0%,transparent 50%); pointer-events:none; } .payment-confirm-card { background:rgba(18,18,30,0.95); border:1px solid rgba(255,255,255,0.08); border-radius:24px; padding:32px 24px; max-width:420px; width:100%; position:relative; z-index:1; backdrop-filter:blur(20px); } .payment-confirm-logo { width:64px; height:64px; border-radius:16px; margin:0 auto 20px; display:block; } .payment-confirm-title { color:#fff; font-size:20px; font-weight:900; text-align:center; margin:0 0 6px; } .payment-confirm-subtitle { color:#888; font-size:13px; text-align:center; margin:0 0 24px; } .payment-confirm-detail { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:20px; margin-bottom:24px; } .payment-confirm-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; } .payment-confirm-row:not(:last-child) { border-bottom:1px solid rgba(255,255,255,0.04); } .payment-confirm-label { color:#666; font-size:12px; } .payment-confirm-value { color:#e8e8f0; font-size:13px; font-weight:700; text-align:right; } .payment-confirm-total { color:#00e5ff; font-size:22px; font-weight:900; } .payment-btn-pay { width:100%; padding:16px; background:linear-gradient(135deg,#00e5ff,#0099ff); color:#000; font-weight:900; font-size:15px; border:none; border-radius:14px; cursor:pointer; margin-bottom:10px; transition:all 0.3s; letter-spacing:0.5px; } .payment-btn-pay:hover { box-shadow:0 0 30px rgba(0,229,255,0.3); transform:translateY(-1px); } .payment-btn-pay:disabled { opacity:0.5; cursor:not-allowed; } .payment-btn-back { width:100%; padding:14px; background:transparent; color:#888; font-weight:700; font-size:13px; border:1px solid rgba(255,255,255,0.1); border-radius:14px; cursor:pointer; transition:all 0.3s; } .payment-btn-back:hover { border-color:rgba(255,255,255,0.2); color:#ccc; } .payment-secure-badge { display:flex; align-items:center; justify-content:center; gap:6px; margin-top:20px; color:#555; font-size:11px; } 
.result-grid:has(.result-grid-item:only-child) { display:flex; justify-content:center; }
.result-grid .result-grid-item:only-child { max-width:500px; }
.v2v-video-upload-box{width:100% !important;max-width:280px !important;aspect-ratio:1/1 !important;height:280px !important;display:flex !important;align-items:center !important;justify-content:center !important;overflow:hidden;background:#000;margin:0 auto !important}.v2v-video-upload-box.has-video video{width:100% !important;height:100% !important;object-fit:cover !important}
/* ===== LOGINPAGE COMPACT - accommodate 2 buttons ===== */
/* ===== FORGOTPAGE - scrollable + compact ===== */
#forgotPage { overflow-y: auto !important; -webkit-overflow-scrolling: touch; }
#forgotPage .login-form { padding: 20px 30px !important; }
#loginPage .login-form { padding: 20px 30px !important; }

/* ================================================================ */
/* LOGIN PAGE UX UPGRADE - Animated BG + Icons + Glow               */
/* ================================================================ */
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,-50px) scale(1.1);} 66%{transform:translate(-25px,25px) scale(0.9);} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(-45px,35px) scale(0.9);} 66%{transform:translate(35px,-25px) scale(1.1);} }
#loginPage::before { content:''; position:absolute; width:500px; height:500px; background:radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 65%); border-radius:50%; top:-150px; left:-150px; animation:orbFloat1 14s ease-in-out infinite; pointer-events:none; z-index:0; }
#loginPage::after { content:''; position:absolute; width:400px; height:400px; background:radial-gradient(circle, rgba(138,43,226,0.07) 0%, transparent 65%); border-radius:50%; bottom:-100px; right:-100px; animation:orbFloat2 18s ease-in-out infinite; pointer-events:none; z-index:0; }
#loginPage .logo-container, #loginPage .login-form { position:relative; z-index:1; }
@keyframes logoRingGlow { 0%,100%{ filter:drop-shadow(0 0 8px rgba(0,229,255,0.2)); } 50%{ filter:drop-shadow(0 0 20px rgba(0,229,255,0.5)); } }
#loginPage .logo { animation: pulse 2.5s ease-in-out infinite, logoRingGlow 3.5s ease-in-out infinite !important; }
@keyframes loginCardEntry { from{opacity:0;transform:translateY(25px) scale(0.97);} to{opacity:1;transform:translateY(0) scale(1);} }
@keyframes formBorderGlow { 0%,100%{box-shadow:0 20px 60px rgba(0,0,0,0.4);} 50%{box-shadow:0 20px 60px rgba(0,0,0,0.5), 0 0 25px rgba(0,229,255,0.08);} }
#loginPage .login-form { animation: loginCardEntry 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards, formBorderGlow 5s ease-in-out 0.7s infinite !important; }
.input-icon-wrap { position:relative; }
.input-icon-wrap .field-ico { position:absolute; left:14px; top:50%; transform:translateY(-50%); font-size:15px; pointer-events:none; z-index:3; opacity:0.5; transition:opacity 0.3s ease; line-height:1; }
.input-icon-wrap .form-input { padding-left:42px !important; }
.input-icon-wrap:focus-within .field-ico { opacity:0.9; }
.login-social-proof { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:10px; flex-wrap:wrap; }
.login-social-proof .prf-item { display:flex; align-items:center; gap:5px; font-size:10.5px; color:#555; font-weight:600; letter-spacing:0.3px; }
.prf-dot { width:5px; height:5px; border-radius:50%; background:#00e5ff; animation:pulse 2s ease-in-out infinite; flex-shrink:0; }
@media (max-height:700px) { .login-social-proof{display:none !important;} }
#loginPage .app-title { animation:fadeIn 0.8s ease 0.2s both; }
#loginPage .tagline, #loginPage .sub-tagline { animation:fadeIn 0.8s ease 0.35s both; }
#loginPage .credit-tagline { animation:fadeIn 0.8s ease 0.45s both; }
#loginPage .login-social-proof { animation:fadeIn 0.8s ease 0.55s both; }
/* END LOGIN UX UPGRADE */

/* ================================================================ */
/* ✨ DASHBOARD CARDS HOVER HIGHLIGHT ANIMATION                      */
/* Target: Akses Cepat chips, Fitur Populer grid, Zona Foto AI strip */
/* Hanya yang punya onclick tapi TIDAK punya onmouseover (biar gak  */
/* conflict dengan card besar yang udah punya handler sendiri)       */
/* ================================================================ */

/* Base transition untuk SEMUA div clickable di dashboard */
#dashboardPage div[onclick] {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.22s ease,
              border-color 0.22s ease,
              filter 0.22s ease !important;
}

/* Hover effect: Cards yang TIDAK punya onmouseover (belum ada handler) */
#dashboardPage div[onclick]:not([onmouseover]):hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-color: rgba(0,229,255,0.45) !important;
  box-shadow: 0 8px 24px rgba(0,229,255,0.12), 0 0 0 1px rgba(0,229,255,0.08) !important;
  filter: brightness(1.1) !important;
  cursor: pointer;
}

/* Active/press feedback */
#dashboardPage div[onclick]:not([onmouseover]):active {
  transform: translateY(-1px) scale(0.99) !important;
  filter: brightness(0.95) !important;
  transition: all 0.08s ease !important;
}

/* Akses Cepat chips - sedikit berbeda (lebih compact, lebih bright) */
#dashboardPage .hide-scrollbar div[onclick]:not([onmouseover]):hover {
  transform: translateY(-3px) scale(1.05) !important;
  border-color: rgba(0,229,255,0.55) !important;
  box-shadow: 0 6px 18px rgba(0,229,255,0.18), 0 0 0 1px rgba(0,229,255,0.12) !important;
  filter: brightness(1.15) !important;
  color: #fff !important;
}

/* Zona Foto AI strip (120px items) */
#dashboardPage div[style*="flex-shrink:0"][onclick]:not([onmouseover]):hover,
#dashboardPage div[style*="width:120px"][onclick]:not([onmouseover]):hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 8px 20px rgba(0,229,255,0.15), 0 0 0 1px rgba(0,229,255,0.1) !important;
  border-color: rgba(0,229,255,0.5) !important;
}

/* Disable hover pada elemen yang bukan untuk di-hover */
#dashboardPage div[style*="pointer-events:none"]:hover { transform: none !important; }
/* END DASHBOARD HOVER */
/* ===== DRAG AND DROP ===== */
.upload-box.drag-over, .v2v-video-upload-box.drag-over {
    border-color: #00e5ff !important;
    background: rgba(0, 229, 255, 0.12) !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3) !important;
    transform: scale(1.02);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    outline: 2px dashed #00e5ff !important;
    outline-offset: -4px;
}
/* ===== LUPA PASSWORD ===== */
.otp-reset-input{text-align:center!important;font-size:24px!important;font-weight:700!important;letter-spacing:10px!important;}
.otp-countdown-bar{display:flex;align-items:center;justify-content:space-between;margin-top:6px;font-size:11px;color:#888;}
.otp-time{color:#ffaa00;font-weight:600;font-variant-numeric:tabular-nums;}
.otp-resend-btn{background:none;border:none;color:#00e5ff;cursor:pointer;font-size:11px;font-family:inherit;font-weight:500;padding:0;transition:0.2s;}
.otp-resend-btn:hover{text-decoration:underline;}
.otp-resend-btn:disabled{color:#555;cursor:not-allowed;text-decoration:none;}
.success-message{color:#00ff88;font-size:12px;margin-top:5px;text-align:center;padding:10px 12px;background:rgba(0,255,136,0.08);border:1px solid rgba(0,255,136,0.2);border-radius:8px;display:none;}
.success-message.show{display:block;}
.error-message.show{display:block;}

/* ================================================================ */
/* 🚀 AICADEMY SPLASH / INTRO SCREEN                                 */
/* ================================================================ */
#aicSplash{position:fixed;inset:0;z-index:99999999;background:#030308;display:flex;align-items:center;justify-content:center;overflow:hidden;transition:opacity 0.6s ease,transform 0.6s ease;}
#aicSplash.sp-exit{opacity:0;transform:scale(1.04);pointer-events:none;}

/* BG grid + orbs */
#aicSplash::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(0,229,255,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,255,0.025) 1px,transparent 1px);background-size:32px 32px;pointer-events:none;}
#aicSplash::after{content:'';position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(0,229,255,0.06) 0%,transparent 65%);border-radius:50%;top:-200px;left:-200px;animation:orbFloat1 12s ease-in-out infinite;pointer-events:none;}
.sp-orb2{position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(138,43,226,0.06) 0%,transparent 65%);border-radius:50%;bottom:-180px;right:-150px;animation:orbFloat2 16s ease-in-out infinite;pointer-events:none;}

/* CENTER CONTENT */
#aicSplashInner{display:flex;flex-direction:column;align-items:center;gap:0;position:relative;z-index:1;padding:20px;text-align:center;width:100%;max-width:360px;}

/* LOGO */
.sp-logo-area{position:relative;width:100px;height:100px;margin-bottom:22px;display:flex;align-items:center;justify-content:center;animation:spLogoIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;}
@keyframes spLogoIn{from{opacity:0;transform:scale(0.4);}to{opacity:1;transform:scale(1);}}
.sp-ring1{position:absolute;inset:-10px;border-radius:50%;border:2px solid transparent;border-top-color:#00e5ff;border-right-color:rgba(0,229,255,0.3);animation:spRing1 2s linear infinite,fadeIn 0.5s ease 0.2s both;}
.sp-ring2{position:absolute;inset:-18px;border-radius:50%;border:1px solid transparent;border-bottom-color:rgba(138,43,226,0.6);border-left-color:rgba(138,43,226,0.2);animation:spRing2 3s linear infinite,fadeIn 0.5s ease 0.3s both;}
.sp-ring3{position:absolute;inset:-5px;border-radius:50%;border:1px solid rgba(0,229,255,0.15);animation:fadeIn 0.5s ease 0.4s both;}
@keyframes spRing1{to{transform:rotate(360deg);}}
@keyframes spRing2{to{transform:rotate(-360deg);}}
.sp-logo-img{width:90px;height:90px;border-radius:50%;object-fit:contain;filter:drop-shadow(0 0 12px rgba(0,229,255,0.3));}

/* TITLE letter by letter */
.sp-title-row{display:flex;flex-wrap:nowrap;justify-content:center;align-items:baseline;gap:0;margin-bottom:8px;}
.sp-l{display:inline-block;opacity:0;transform:translateY(16px);animation:spLetter 0.35s ease calc(0.5s + var(--i)*0.06s) forwards;font-size:clamp(26px,7.5vw,42px);font-weight:900;color:#fff;letter-spacing:2px;line-height:1;}
@keyframes spLetter{to{opacity:1;transform:translateY(0);}}
.sp-l.sp-ai{color:#00e5ff;text-shadow:0 0 25px rgba(0,229,255,0.7),0 0 50px rgba(0,229,255,0.3);}
.sp-space{display:inline-block;width:clamp(6px,2vw,12px);}

/* TAGLINE */
.sp-sub{font-size:clamp(11px,3vw,13px);color:#556;letter-spacing:1.5px;text-transform:uppercase;font-weight:600;animation:fadeIn 0.6s ease 1.6s both;margin-bottom:20px;line-height:1.4;}

/* FEATURE CARDS 2x2 */
.sp-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;width:100%;max-width:300px;margin-bottom:22px;}
.sp-card{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:12px 10px;display:flex;flex-direction:column;align-items:center;gap:6px;opacity:0;transform:translateY(14px) scale(0.95);animation:spCard 0.45s cubic-bezier(0.34,1.56,0.64,1) var(--cd) forwards;}
@keyframes spCard{to{opacity:1;transform:translateY(0) scale(1);}}
.sp-card-ico{font-size:22px;line-height:1;}
.sp-card-txt{font-size:10px;font-weight:700;color:#aaa;text-transform:uppercase;letter-spacing:0.5px;line-height:1.2;}
.sp-card-sub{font-size:9px;color:#444;letter-spacing:0.3px;}

/* PROGRESS BAR */
.sp-prog-wrap{width:180px;height:2px;background:rgba(255,255,255,0.06);border-radius:2px;overflow:hidden;margin-bottom:14px;animation:fadeIn 0.3s ease 2.1s both;}
.sp-prog-fill{height:100%;width:0%;background:linear-gradient(90deg,#00e5ff,#7c3aed,#00e5ff);background-size:200% 100%;border-radius:2px;animation:spBar 1.8s cubic-bezier(0.4,0,0.2,1) 2.1s forwards,spBarShimmer 1.5s linear 2.1s infinite;}
@keyframes spBar{to{width:100%;}}
@keyframes spBarShimmer{0%{background-position:200% 0;}100%{background-position:-200% 0;}}

/* CREDIT + SKIP */
.sp-credit{font-size:10px;color:#2a2a35;letter-spacing:1px;animation:fadeIn 0.4s ease 2.2s both;margin-bottom:8px;}
.sp-skip{font-size:10px;color:#333;animation:fadeIn 0.4s ease 1.2s both,spSkipPulse 2s ease 1.2s infinite;}
@keyframes spSkipPulse{0%,100%{color:#333;}50%{color:#555;}}

/* Mobile tweaks */
@media(max-width:380px){
  .sp-logo-area{width:80px;height:80px;margin-bottom:16px;}
  .sp-logo-img{width:72px;height:72px;}
  .sp-grid{max-width:260px;gap:6px;}
  .sp-card{padding:10px 8px;}
  .sp-prog-wrap{width:150px;}
}
/* END SPLASH */
