:root {
    --bg-dark: #070F1E;
    --bg-card: #0F1C2E;
    --bg-card-hover: #162740;
    --bg-modal: #0D1829;
    --border-color: #1E3452;
    --border-focus: #38BDF8;
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-sub: #64748B;

    --primary: #38BDF8;
    --primary-hover: #0EA5E9;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --python-yellow: #F7D046;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(56, 189, 248, 0.25);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    padding: 24px;
    line-height: 1.5;
}

/* Container & Header */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38BDF8, #6366F1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFF;
    box-shadow: var(--glow-primary);
}

.brand-text h1 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.brand-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Panels */
.card-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 160px);
    overflow: hidden;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 28, 46, 0.6);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    font-size: 20px;
}

.panel-title h2 {
    font-size: 16px;
    font-weight: 700;
}

.panel-title h2 span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.color-python { color: var(--python-yellow); }
.color-video { color: var(--primary); }
.color-primary { color: var(--primary); }

.panel-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* Badges & Buttons */
.badge {
    background: #1E293B;
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-success {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.3);
}

.badge-ai {
    background: rgba(99, 102, 241, 0.2);
    color: #818CF8;
    border: 1px solid rgba(129, 140, 248, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    color: #FFF;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #38BDF8, #1D4ED8);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--text-muted);
}

.btn-success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFF;
}

.btn-cookie-status {
    background: rgba(245, 158, 11, 0.12);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-cookie-status:hover {
    background: rgba(245, 158, 11, 0.2);
}

.btn-close-studio {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: #FFF;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-close-studio:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: var(--danger);
}

/* Scripts & Videos Grids */
.scripts-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.script-card {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all 0.2s ease;
}

.script-card:hover {
    border-color: var(--primary);
}

.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.script-name {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.script-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.class-tag {
    display: inline-block;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    font-size: 11px;
    font-family: var(--font-mono);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.script-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.render-options {
    display: flex;
    gap: 8px;
}

/* Videos List */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.video-card {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-preview video {
    width: 100%;
    max-height: 240px;
    background: #000;
    display: block;
}

.video-info {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

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

.video-actions {
    display: flex;
    gap: 8px;
}

/* Modals General */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: var(--bg-modal);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 28, 46, 0.8);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 28, 46, 0.8);
}

/* ==================== STUDIO EDITOR FULLSCREEN WORKSPACE ==================== */
.studio-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    z-index: 1500;
    display: flex;
    flex-direction: column;
}

.studio-workspace {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.studio-topbar {
    height: 60px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.studio-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon-sm {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #38BDF8, #6366F1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FFF;
}

#studio-file-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
}

.knowledge-tag {
    font-size: 11px;
    color: var(--primary);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 2px 8px;
    border-radius: 12px;
}

.studio-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-status-pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cookie-status-pill.offline {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.3);
}

/* 3-Pane Body Grid */
.studio-body-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    height: calc(100vh - 60px);
    overflow: hidden;
}

/* PANE 1: LEFT AI CHAT */
.studio-pane-left {
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.pane-header {
    padding: 12px 18px;
    background: rgba(4, 10, 20, 0.6);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pane-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pane-title h4 {
    font-size: 14px;
    font-weight: 700;
}

.chat-history {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(7, 15, 30, 0.4);
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    line-height: 1.5;
    max-width: 95%;
    word-break: break-word;
}

.chat-bubble-ai {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #F1F5F9;
    align-self: flex-start;
}

.chat-bubble-user {
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    color: #FFF;
    align-self: flex-end;
}

.chat-bubble-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #FCA5A5;
    align-self: flex-start;
}

.bubble-header {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-code-block {
    background: #040A14;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #38BDF8;
    overflow-x: auto;
}

.btn-apply-code {
    margin-top: 8px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.4);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.prompt-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(4, 10, 20, 0.6);
    border-top: 1px solid var(--border-color);
}

.prompt-shortcuts button {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--primary);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.prompt-shortcuts button:hover {
    background: rgba(56, 189, 248, 0.2);
}

.chat-input-container {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.chat-input-container textarea {
    flex: 1;
    background: #040A14;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    color: #FFF;
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    resize: none;
}

.chat-input-container textarea:focus {
    border-color: var(--primary);
}

.btn-send {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* RIGHT CONTAINER (PANES 2 & 3) */
.studio-pane-right-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* PANE 2: TOP RIGHT CODE EDITOR */
.studio-pane-top-right {
    flex: 1.2;
    background: #040A14;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.editor-toolbar {
    background: var(--bg-card);
}

.select-sm {
    background: #040A14;
    border: 1px solid var(--border-color);
    color: #FFF;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    outline: none;
}

.code-editor-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* CODEMIRROR SYNTAX HIGHLIGHTING CUSTOM STYLES */
.CodeMirror {
    height: 100% !important;
    font-family: var(--font-mono) !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    background: #040A14 !important;
    color: #F1F5F9 !important;
}

.CodeMirror-gutters {
    background: #0B1728 !important;
    border-right: 1px solid var(--border-color) !important;
}

.CodeMirror-linenumber {
    color: #64748B !important;
    padding: 0 8px 0 5px !important;
}

.CodeMirror-cursor {
    border-left: 2px solid var(--primary) !important;
}

/* PANE 3: BOTTOM RIGHT RENDER & PREVIEW */
.studio-pane-bottom-right {
    flex: 1;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-toolbar {
    background: rgba(4, 10, 20, 0.6);
}

.preview-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-header {
    display: flex;
    background: rgba(4, 10, 20, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
}

.tab-btn {
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(56, 189, 248, 0.06);
}

.tab-content {
    flex: 1;
    display: none;
    overflow: hidden;
    padding: 12px;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

.video-preview-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-preview-wrapper video {
    max-width: 100%;
    max-height: 100%;
}

.video-empty-state {
    text-align: center;
    color: var(--text-muted);
}

.video-empty-state i {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Cookie Info Modal Box */
.cookie-info-box {
    background: #040A14;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== HUB LAUNCHER & MULTI-APP STYLES ==================== */

.app-view {
    display: block;
    width: 100%;
    transition: opacity 0.2s ease-in-out;
}

.view-hidden {
    display: none !important;
}

/* Header Adjustments */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-hub-back {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-hub-back:hover {
    background: var(--primary);
    color: #000;
    box-shadow: var(--glow-primary);
}

.hub-header {
    background: linear-gradient(135deg, rgba(15, 28, 46, 0.95), rgba(22, 39, 64, 0.95));
    border-bottom: 2px solid var(--border-color);
}

.hub-brand-icon {
    background: linear-gradient(135deg, #8B5CF6, #38BDF8) !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.shared-ai-status-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Hub Main Container */
.hub-main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Hero Banner */
.hub-hero-banner {
    background: linear-gradient(135deg, rgba(30, 52, 82, 0.6), rgba(15, 28, 46, 0.9));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hub-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.hub-hero-banner h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFF, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hub-hero-banner p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.hero-stats-row {
    display: flex;
    gap: 20px;
}

.hero-stat-item {
    background: rgba(7, 15, 30, 0.6);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-sub);
    margin-top: 4px;
}

/* Hub Apps Section */
.hub-apps-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.section-title-box h2 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

.shared-cookie-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* Apps Grid */
.hub-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px -10px rgba(56, 189, 248, 0.25);
    background: var(--bg-card-hover);
}

.app-card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.app-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.app-badges-group {
    display: flex;
    gap: 6px;
    align-items: center;
}

.app-category-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-sub);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

.app-badge-active {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.app-badge-soon {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.app-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.app-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.app-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.app-features-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-features-list li i {
    color: var(--primary);
    font-size: 12px;
}

.app-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
}

.btn-launch {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

