/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.glass-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Buttons */
.btn-primary {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 168, 72, 0.25);
}

/* Inputs */
.input-field {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: #0f172a;
    width: 100%;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 168, 72, 0.12);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Custom Gradients */
.text-gradient {
    background: linear-gradient(to right, #3ba848, #2d9a83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Safe Area Utilities */
.pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
}
.pt-safe {
    padding-top: env(safe-area-inset-top);
}

/* Custom Animations for Mesh Gradient */
@keyframes mesh-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.1; }
    50% { transform: scale(1.1) translate(20px, -20px); opacity: 0.15; }
}

.animate-pulse-slow {
    animation: mesh-pulse 10s ease-in-out infinite;
}

/* Global Overrides for App Feel */
body {
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: contain;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

