/* Premium UI Stylesheet for Gemini Remover */

:root {
    --bg-color: #060709;
    --card-bg: rgba(13, 16, 23, 0.7);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.25);
    --accent: #06b6d4;
    --accent-hover: #0891b2;
    --accent-glow: rgba(6, 182, 212, 0.2);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
    --error: #f43f5e;
    --error-glow: rgba(244, 63, 94, 0.2);
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 3rem 1rem;
}

/* Background Glowing Elements */
.glow-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.03) 50%, rgba(0,0,0,0) 100%);
    top: -200px;
    left: -200px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(120px);
    animation: floatBg 25s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.1); }
}

.app-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header & Branding */
header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-icon {
    width: 12px !important;
    height: 12px !important;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 55%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(6, 182, 212, 0.1);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}

/* Segmented Tab Control (Linear/Stripe style) */
.tabs-container {
    display: flex;
    justify-content: center;
}

.tabs-nav {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.02);
    z-index: 1;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.7rem 2.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}

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

.tab-btn.active {
    color: var(--text-primary);
}

.tab-icon {
    width: 16px !important;
    height: 16px !important;
}

.tab-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: 146px; /* Dynamically updated in js, or fixed ratio */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Glassmorphism Card Container */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 28px;
}

.card {
    padding: 3rem;
    min-height: 400px;
    transition: var(--transition);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Upload Section */
.upload-section {
    border: 1.5px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.005);
}

.upload-section:hover {
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.015);
    box-shadow: inset 0 0 30px rgba(6, 182, 212, 0.03);
}

.upload-icon-container {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.upload-section:hover .upload-icon-container {
    transform: scale(1.08) translateY(-4px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.15);
}

.upload-cloud-icon {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.5;
}

.upload-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.upload-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Workspace Area */
.editor-section .workspace {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .editor-section .workspace {
        grid-template-columns: 1fr;
    }
}

.canvas-workspace-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.canvas-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 4px;
}

.tool-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.tool-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.tool-btn.active {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.08);
}

.tool-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: var(--text-muted);
}

.tool-btn:disabled:hover {
    background: transparent;
    color: var(--text-muted);
}

.toolbar-back-btn {
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.toolbar-back-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.zoom-value {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: monospace;
    padding: 0 0.5rem;
    min-width: 45px;
    text-align: center;
}

.canvas-scroll-container {
    width: 100%;
    min-height: 380px;
    max-height: 550px;
    background: #040507;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: auto;
    display: block;
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
}

/* Custom premium scrollbar for .canvas-scroll-container */
.canvas-scroll-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.canvas-scroll-container::-webkit-scrollbar-track {
    background: #040507;
    border-radius: 10px;
}

.canvas-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border: 2.5px solid #040507;
    border-radius: 10px;
}

.canvas-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.scroll-area {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-wrapper {
    position: relative;
    transform-origin: center center;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.zoom-wrapper canvas,
.zoom-wrapper video {
    display: block;
    max-width: none;
    max-height: none;
    border-radius: 12px;
}

canvas {
    cursor: crosshair;
}

.selection-overlay {
    position: absolute;
    border: 1.5px dashed var(--accent);
    background: rgba(6, 182, 212, 0.12);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
    display: none;
    pointer-events: none;
    z-index: 10;
    border-radius: 4px;
}

/* Bounding Box Viewfinder Corners (Premium UX touch) */
.selection-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent);
}
.selection-corner.top-left { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.selection-corner.top-right { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.selection-corner.bottom-left { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.selection-corner.bottom-right { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Controls Sidebar */
.controls-sidebar {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    padding: 1.8rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.sidebar-icon {
    width: 18px !important;
    height: 18px !important;
    color: var(--accent);
}

.controls-sidebar h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.sidebar-info {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Premium OS Style Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    outline: none;
    margin: 8px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.1s ease, background 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--accent);
}

.btn-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Segmented Mode Selector Inside Sidebar */
.mode-select-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mode-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    text-align: left;
}

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

.mode-btn.active {
    color: var(--text-primary);
    background: rgba(6, 182, 212, 0.08);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
}

.mode-icon {
    width: 16px !important;
    height: 16px !important;
}

.separator {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin: 0.4rem 0;
}

/* Stats / Coordinates badge */
.selection-stats {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.9rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.coords-label {
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stats-icon {
    width: 14px !important;
    height: 14px !important;
}

#val-coords {
    color: var(--accent);
    font-weight: 600;
    font-family: monospace;
}

/* Premium Styling for Buttons */
.btn {
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.4rem;
    font-family: var(--font-family);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-icon {
    width: 16px !important;
    height: 16px !important;
}

.btn-icon-pulsing {
    width: 16px !important;
    height: 16px !important;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px var(--primary-glow);
}

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

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

.btn-accent {
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.btn-accent:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.btn-success {
    background: var(--success);
    color: #fff;
    box-shadow: 0 4px 15px var(--success-glow);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-success:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 20px var(--success-glow);
}

.btn-large {
    padding: 1rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

/* Image Comparison Slider (Split View) */
.result-section {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.4s ease forwards;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.success-icon {
    width: 24px !important;
    height: 24px !important;
    color: var(--success);
}

.result-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.comparison-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.img-compare-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    user-select: none;
    -webkit-user-select: none;
}

.img-compare-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

#image-result-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

#image-result-after-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

/* Premium Split Slider Handle */
.slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.slider-button {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
    pointer-events: none;
    transition: transform 0.15s ease;
}

.slider-divider:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-arrow-icon {
    width: 16px !important;
    height: 16px !important;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

/* Video Results Layout */
.video-compare-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 750px) {
    .video-compare-wrapper {
        grid-template-columns: 1fr;
    }
}

.video-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.video-column h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.column-icon {
    width: 16px !important;
    height: 16px !important;
    color: var(--accent);
}

.video-column video {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* Custom Blurred Overlay Loader (Premium Linear/Stripe style) */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 5, 7, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.loader-spinner-ring {
    width: 64px;
    height: 64px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(6, 182, 212, 0.15);
    border-radius: 50%;
    animation: rotateDashed 6s linear infinite;
}

.loader-circle {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--primary);
    border-radius: 50%;
    animation: spinCircle 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

@keyframes spinCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateDashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.loader-subtext {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(13, 16, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 1rem 2.2rem;
    border-radius: 16px;
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    opacity: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    pointer-events: none;
    gap: 0.6rem;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 3px solid var(--success);
    color: var(--text-primary);
}

.toast.error {
    border-left: 3px solid var(--error);
    color: var(--text-primary);
}

.toast-icon {
    width: 16px !important;
    height: 16px !important;
}

.toast.success .toast-icon {
    color: var(--success);
}

.toast.error .toast-icon {
    color: var(--error);
}

/* Footer Styles */
.app-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-label {
    color: var(--text-muted);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
}

.footer-link:hover {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.05);
    border-color: rgba(6, 182, 212, 0.15);
    transform: translateY(-1px);
}

.footer-icon {
    width: 14px !important;
    height: 14px !important;
    transition: var(--transition);
}

.footer-link:hover .footer-icon {
    transform: rotate(10deg);
}

.footer-dot {
    color: var(--text-muted);
    font-weight: 300;
}
