:root {
    /* Brand Colors */
    --primary-color: #F24405;
    /* Main brand color */
    --secondary-color: #8C2703;
    /* Strong secondary brand */
    --accent-color: #591902;
    /* Accent / deep emphasis */

    /* Neutral Shades */
    --white-color: #ffffff;
    --light-color: #F2F2F2;
    /* Light background or text */
    --gray-color: #cccccc;
    --dark-gray-color: #666666;
    --dark-color: #0D0D0D;
    /* Base text / background */
    --black-color: #000000;

    /* Hover & Active States */
    --hover-color: #e03e00;
    --active-color: #b03502;
    --focus-ring-color: rgba(242, 68, 5, 0.4);
    /* For outline:focus */

    /* Text Colors */
    --text-light: #ffffff;
    --text-dark: #0D0D0D;
    --text-muted: #999999;

    /* Border Colors */
    --border-light: #e6e6e6;
    --border-dark: #333333;

    /* Status Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #17a2b8;
}

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

a {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(242, 68, 5, 0.15);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.btn-primary:active {
    background-color: var(--active-color);
    transform: scale(0.98);
}

.btn-primary:focus {
    outline: 2px solid var(--focus-ring-color);
    outline-offset: 2px;
}
