/* ========================================
   UTILITY CLASSES
   Tamide Data Solutions
   ======================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Text Utilities */
.text-glow {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.text-gold-glow {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Transition Utilities */
.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale:hover {
    transform: scale(1.05);
}
