:root {
    --white: #FFFFFF;
    --grey-100: #F5F5F5;
    --grey-200: #EEEEEE;
    --grey-300: #E0E0E0;
    --grey-500: #9E9E9E;
    --grey-600: #757575;
    --grey-700: #616161;
    --grey-800: #424242;
    --grey-900: #212121;
    --accent: #F9894F;
    --accent-dark: #E06B2E;
    --danger: #F44336;
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Ensure pointer events are enabled by default */
    pointer-events: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background: red;
    /* DEBUG: Extreme background change */
    color: var(--grey-800);
    line-height: 1.6;
    cursor: help !important;
    /* DEBUG: Verify CSS is applying */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(249, 137, 79, 0.4);
    transform: translateY(-1px);
}