:root {
    --bg-dark: #07040a;
    --bg-card: rgba(10, 15, 20, 0.7);
    --primary-qlik-green: #009845;
    --primary-qlik-glow: rgba(0, 152, 69, 0.6);
    --accent-neon: #00ff6a;
    --text-white: #ffffff;
    --text-gray: #b0b5be;
    --danger-red: #ff3366;
    --warning-orange: #ffaa00;
    --alert-yellow: #ffea00;
    --border-glass: rgba(0, 255, 106, 0.15);
    --border-glow: rgba(0, 255, 106, 0.4);
    --font-main: 'Outfit', sans-serif;
    --font-headings: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Base Utility Classes used around HTML */
.ph-fill, .ph-bold, .ph-light, .ph-thin, .ph-duotone {
    display: inline-block;
}

.text-accent {
    color: var(--accent-neon);
}

/* Ensuring hover animations work */
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(0, 255, 106, 0.2);
    border-color: var(--accent-neon);
}

.icon-large {
    font-size: 4rem;
    color: var(--accent-neon);
    margin-bottom: 20px;
}