/* ==========================================================================
   HASHIM IMAGE GENERATOR - Ultra-Modern Glassmorphism Theme
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #070913;
    --bg-secondary: #0c1022;
    --bg-card: rgba(16, 22, 47, 0.7);
    --bg-card-hover: rgba(24, 33, 70, 0.85);
    --bg-input: rgba(9, 13, 28, 0.85);
    
    /* Neon & Accent Colors */
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #9b51e0;
    --accent-pink: #ff007f;
    --accent-emerald: #00f5a0;
    --accent-amber: #f6d365;
    
    /* Gradient Accents */
    --grad-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #9b51e0 100%);
    --grad-banana: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --grad-purple: linear-gradient(135deg, #c471ed 0%, #f64f59 100%);
    --grad-cyan: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
    --grad-dark: linear-gradient(180deg, rgba(20, 28, 58, 0.8) 0%, rgba(10, 14, 30, 0.95) 100%);
    
    /* Text Colors */
    --text-primary: #f0f4fc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-highlight: #38bdf8;
    
    /* Borders & Glass */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(0, 242, 254, 0.5);
    --glass-blur: blur(20px);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(0, 242, 254, 0.05);
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.35);
    
    /* Transitions & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Ambient Background Lights */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    animation: floatGlow 14s infinite alternate ease-in-out;
}
.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00f2fe, transparent 70%);
    top: -100px;
    left: -100px;
}
.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #9b51e0, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}
.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f5a0, transparent 70%);
    top: 40%;
    left: 45%;
    opacity: 0.12;
    animation-delay: -9s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Layout Container */
.app-container {
    position: relative;
    z-index: 1;
    max-width: 1560px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100vh;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-glow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.logo-icon {
    font-size: 24px;
    color: #ffffff;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Header Badges */
.header-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-badge, .engine-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.security-badge {
    color: var(--accent-emerald);
    border-color: rgba(0, 245, 160, 0.2);
}

.engine-badge {
    color: var(--accent-cyan);
    border-color: rgba(0, 242, 254, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-dot.green { background: var(--accent-emerald); box-shadow: 0 0 10px var(--accent-emerald); }
.pulse-dot.cyan { background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.icon-btn:hover {
    background: var(--accent-cyan);
    color: #070913;
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

/* Main Studio Layout Grid */
.studio-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 24px;
    flex: 1;
    align-items: start;
}

@media (max-width: 1200px) {
    .studio-layout {
        grid-template-columns: 1fr;
    }
}

/* Studio Panels */
.studio-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mode Tabs */
.mode-tabs {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.mode-tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.mode-tab.active {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

/* Section Groups */
.section-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-model-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

/* Model Cards Grid */
.model-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.model-card {
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.model-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.model-card.active {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.model-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-cyan);
}

.model-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-icon-box {
    font-size: 20px;
}

.model-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background: rgba(246, 211, 101, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(246, 211, 101, 0.3);
}
.badge-purple { background: rgba(155, 81, 224, 0.15); color: var(--accent-purple); border-color: rgba(155, 81, 224, 0.3); }
.badge-cyan { background: rgba(0, 245, 160, 0.15); color: var(--accent-emerald); border-color: rgba(0, 245, 160, 0.3); }
.badge-amber { background: rgba(246, 211, 101, 0.15); color: var(--accent-amber); border-color: rgba(246, 211, 101, 0.3); }
.badge-red { background: rgba(255, 0, 127, 0.15); color: var(--accent-pink); border-color: rgba(255, 0, 127, 0.3); }

.model-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.model-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Prompt Box */
.prompt-tools {
    display: flex;
    gap: 8px;
}

.tool-link-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}
.tool-link-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}
.tool-link-btn.highlight {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
}
.tool-link-btn.highlight:hover {
    background: var(--accent-cyan);
    color: #070913;
}

.prompt-box-wrapper {
    position: relative;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: var(--transition-normal);
}
.prompt-box-wrapper:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

#promptInput {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    min-height: 90px;
}

.prompt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.char-count {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.clear-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition-fast);
}
.clear-btn:hover {
    color: var(--accent-pink);
}

/* Style Preset Pills */
.style-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.style-pill {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.style-pill:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}
.style-pill.active {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 242, 254, 0.3);
}

/* Aspect Ratio Buttons */
.aspect-ratio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.ar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}
.ar-btn:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.3);
}
.ar-btn.active {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-cyan);
}

.ar-visual {
    border: 1.5px solid var(--text-muted);
    border-radius: 2px;
}
.ar-btn.active .ar-visual {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.2);
}
.ar-visual.square { width: 18px; height: 18px; }
.ar-visual.landscape { width: 22px; height: 13px; }
.ar-visual.portrait { width: 13px; height: 22px; }
.ar-visual.classic { width: 20px; height: 15px; }
.ar-visual.photo { width: 21px; height: 14px; }

.ar-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}
.ar-sub {
    font-size: 9px;
    color: var(--text-muted);
}

/* Advanced Accordion */
.advanced-accordion {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.accordion-header:hover {
    color: var(--text-primary);
}
.accordion-icon {
    transition: transform var(--transition-normal);
}
.advanced-accordion.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--border-glass);
    flex-direction: column;
    gap: 14px;
}
.advanced-accordion.open .accordion-content {
    display: flex;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-item label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}
.form-item input, .form-item select {
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
}
.form-item input:focus, .form-item select:focus {
    border-color: var(--accent-cyan);
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Generate Button */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.generate-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.4);
    transition: var(--transition-normal);
}
.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(0, 242, 254, 0.6);
}
.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shineEffect 4s infinite;
}
@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.security-footer-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.security-footer-note i {
    color: var(--accent-emerald);
}

/* Right Viewport Panel */
.viewport-panel {
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.canvas-wrapper {
    flex: 1;
    min-height: 480px;
    background: rgba(5, 7, 18, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-state {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Empty State */
.empty-state-card {
    text-align: center;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hologram-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.08);
    border: 1px dashed rgba(0, 242, 254, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-cyan);
    animation: pulseCircle 3s infinite alternate;
}
@keyframes pulseCircle {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 242, 254, 0); }
    100% { transform: scale(1.08); box-shadow: 0 0 30px rgba(0, 242, 254, 0.3); }
}

.empty-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.empty-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.highlight-text {
    color: var(--accent-cyan);
    font-weight: 600;
}

.sample-prompt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.chip {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.chip:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Loading State */
.loading-visual {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.radar-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-cyan);
    border-right-color: var(--accent-purple);
    animation: spinRadar 1.5s linear infinite;
}
@keyframes spinRadar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.laser-scanner {
    position: absolute;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f2fe, transparent);
    box-shadow: 0 0 10px #00f2fe;
    animation: scanVertical 2.2s ease-in-out infinite;
}
@keyframes scanVertical {
    0%, 100% { top: 0%; opacity: 0.2; }
    50% { top: 100%; opacity: 1; }
}

.loading-icon-center {
    font-size: 36px;
    color: var(--accent-cyan);
}

.loading-info {
    text-align: center;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loading-stage-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.loading-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 8px 0;
}

.progress-bar-fill {
    height: 100%;
    width: 15%;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.step-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}
.step-badge.active {
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Result State */
.result-media-container {
    width: 100%;
    max-height: 480px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.result-img, .result-video {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.media-overlay-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.result-media-container:hover .media-overlay-controls {
    opacity: 1;
}

.overlay-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(7, 9, 19, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.overlay-btn:hover {
    background: var(--accent-cyan);
    color: #070913;
    transform: scale(1.1);
}

.result-toolbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-glass);
}

.result-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.meta-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

.meta-time {
    font-size: 11px;
    color: var(--accent-emerald);
    font-family: 'JetBrains Mono', monospace;
}

.result-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    border: none;
}
.action-btn.primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}
.action-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* History Section */
.history-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-count {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.clear-history-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}
.clear-history-btn:hover {
    color: var(--accent-pink);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.history-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition-fast);
    background: #000;
}
.history-item:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.04);
}
.history-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.history-item-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 9px;
    padding: 2px 5px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    color: #fff;
}

.no-history-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 12px;
}

/* Modals */
.modal-backdrop, .lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-glass);
}
.modal-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-icon {
    font-size: 20px;
    color: var(--accent-emerald);
}
.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #fff;
}

.modal-close, .lightbox-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover, .lightbox-close:hover {
    color: #fff;
}

.modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-status-box {
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}
.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-active {
    color: var(--accent-emerald);
    font-weight: 600;
}

.info-alert {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-primary);
}
.info-alert i {
    font-size: 18px;
    color: var(--accent-cyan);
    margin-top: 2px;
}
.info-alert pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-emerald);
    overflow-x: auto;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
}

/* Lightbox */
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    color: #ffffff;
    z-index: 1010;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

/* Toasts */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-card);
    animation: slideUpToast 0.3s ease;
}
.toast.success {
    background: rgba(0, 245, 160, 0.15);
    border: 1px solid rgba(0, 245, 160, 0.4);
    color: var(--accent-emerald);
}
.toast.error {
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid rgba(255, 0, 127, 0.4);
    color: var(--accent-pink);
}
.toast.info {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: var(--accent-cyan);
}
@keyframes slideUpToast {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Utility Helpers */
.hidden {
    display: none !important;
}

/* ==========================================================================
   NANO AI - Mode Navigation Bar
   ========================================================================== */
.mode-navigation-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 24px 0;
    padding: 6px;
    background: rgba(16, 22, 47, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    backdrop-filter: var(--glass-blur);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.nav-mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-mode-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-mode-btn.active {
    background: var(--grad-primary);
    color: #030712;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
}

/* Specific Model Themes */
.max-theme {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.4));
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
}
.badge-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 800;
}

.pro-theme {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(126, 34, 206, 0.4));
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #c084fc;
}

.mini-theme {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(194, 65, 12, 0.4));
    border: 1px solid rgba(234, 88, 12, 0.5);
    color: #fb923c;
}

.light-theme {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(2, 132, 199, 0.4));
    border: 1px solid rgba(14, 165, 233, 0.5);
    color: #38bdf8;
}

/* ==========================================================================
   NANO AI - Chat & Code Studio Layout
   ========================================================================== */
.chat-layout {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.chat-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    height: 720px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.chat-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(9, 13, 28, 0.6);
}

.chat-model-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chat-avatar-glow {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: #030712;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.chat-bot-title {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.chat-bot-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

.chat-model-switcher {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
}

.chat-plan-btn {
    padding: 6px 14px;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-plan-btn:hover {
    color: var(--text-primary);
}

.chat-plan-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.chat-messages-container {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-message {
    display: flex;
    gap: 14px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

.chat-message.assistant {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.chat-message.user .msg-avatar {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
}

.msg-bubble {
    background: rgba(20, 28, 58, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.chat-message.user .msg-bubble {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(155, 81, 224, 0.25));
    border-color: rgba(79, 172, 254, 0.4);
}

.msg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.msg-sender {
    font-weight: 700;
    font-size: 12px;
    color: var(--accent-cyan);
}

.msg-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.msg-content pre {
    background: #04060d;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin: 8px 0;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-row {
    padding: 16px 24px;
    background: rgba(9, 13, 28, 0.8);
    border-top: 1px solid var(--border-glass);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px 10px 6px 20px;
    transition: all var(--transition-fast);
}

.chat-input-wrapper:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.chat-input-wrapper textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    max-height: 120px;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: none;
    color: #030712;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.chat-send-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* ==========================================================================
   NANO AI MAX - Heavy Features & Modern Enterprise UI
   ========================================================================== */

/* Brand & Header Badges */
.power-tag {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.whatsapp-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: var(--radius-full);
    color: #25d366;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.whatsapp-badge-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.live-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 10px #25d366;
    animation: pulseDot 1.8s infinite ease-in-out;
}

.coming-soon-pill {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flagship Master Card */
.nano-max-flagship-card {
    background: linear-gradient(135deg, rgba(20, 28, 58, 0.85) 0%, rgba(12, 17, 38, 0.95) 100%);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.08);
    position: relative;
    overflow: hidden;
}

.nano-max-flagship-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
}

.max-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.max-flagship-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
    flex-shrink: 0;
}

.max-flagship-info {
    flex: 1;
}

.max-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.max-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.master-pro-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.3));
    border: 1px solid rgba(0, 242, 254, 0.5);
    color: var(--accent-cyan);
}

.max-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Feature Pills (Camera Optics & Lighting Atmosphere) */
.feature-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-pill {
    background: rgba(16, 22, 47, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.feature-pill:hover {
    color: #fff;
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(24, 33, 70, 0.85);
}

.feature-pill.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.25));
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
}

/* Aspect Ratio Ultrawide Visual */
.ar-visual.ultrawide {
    width: 26px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

/* Negative Prompt Quick Chips */
.neg-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.neg-chip {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: var(--accent-pink);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.neg-chip:hover {
    background: rgba(255, 0, 127, 0.25);
    border-color: var(--accent-pink);
}

/* Master 8K Toggle Switch */
.switch-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    margin-top: 6px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glass);
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(0, 242, 254, 0.4);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: var(--accent-cyan);
}

/* Download Action Animation */
.download-action-btn {
    position: relative;
    overflow: hidden;
}

.download-action-btn.downloading {
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%) !important;
    color: #030712 !important;
    transform: scale(0.98);
}

/* Chat Header WhatsApp */
.chat-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: var(--radius-full);
    color: #25d366;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.chat-header-whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    color: #fff;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   COMING SOON VIDEO STUDIO
   ========================================================================== */
.coming-soon-container {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.coming-soon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.coming-soon-glow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(155, 81, 224, 0.3));
    border: 1px solid rgba(255, 0, 127, 0.5);
    color: #ff007f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 35px rgba(255, 0, 127, 0.35);
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.coming-soon-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.coming-soon-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.coming-soon-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.feature-bullets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
    text-align: left;
}

.bullet-card {
    background: rgba(9, 13, 28, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all var(--transition-fast);
}

.bullet-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.bullet-card i {
    font-size: 20px;
    color: var(--accent-cyan);
}

.bullet-card strong {
    font-size: 14px;
    color: #fff;
}

.bullet-card span {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.coming-soon-action-box {
    padding-top: 15px;
    border-top: 1px solid var(--border-glass);
}

.coming-soon-subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: #030712;
    font-size: 15px;
    font-weight: 800;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.45);
    transition: all var(--transition-fast);
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
    background: #22bf5b;
}

/* ==========================================================================
   APP FOOTER
   ========================================================================== */
.app-footer {
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-powered strong {
    color: var(--accent-cyan);
}

.footer-wa-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.footer-wa-link:hover {
    color: #fff;
    text-shadow: 0 0 10px #25d366;
}


