/* Variables et reset partages par toutes les pages publiques */
:root {
    --primary-dark: #0a0e17;
    --secondary-dark: #121a2b;
    --tertiary-dark: #1a2540;
    --accent-blue: #0077FF;
    --accent-blue-hover: #0066dd;
    --accent-cyan: #00d4ff;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --text-gray-light: #cbd5e0;
    --border-color: #2d3748;
    --success-green: #48bb78;
    --warning-orange: #ed8936;
    --error-red: #e53e3e;
    --card-bg: #162033;
    --card-bg-hover: #1e2d47;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
