/* =====================
   BASE STYLES
   ===================== */

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Fredoka', sans-serif;
    height: 100vh;
    overflow: hidden;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    transition: background var(--transition-speed) ease;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Hidden utility */
.hidden {
    display: none;
}
