/* Core Styling & True-Black Architecture Optimization */

body {
    font-family: 'Outfit', sans-serif;
}

/* Elite Signature Typography Rule */
.font-signature {
    font-family: 'Berkshire Swash', cursive;
}

/* Premium Jet-Black Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.005);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Elegant High-Contrast Hover Rules */
.glass-card:hover {
    border-color: rgba(0, 229, 255, 0.25); /* Exact Cyber Cyan Match */
    box-shadow: 0 30px 60px -20px rgba(0, 229, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

/* Hardware Accelerated Crisp Logo Rendering for Ecosystem Products */
.app-logo {
    image-rendering: auto; 
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

/* Global Transitions Layout */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-duration: 250ms;
}