:root {
    --primary-color: #ffffff;
    --secondary-color: #D56828;
    --secondary-color-dark: #b8551e;
    --text-color: #333;
    --background-color: #ffffff;
    --font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar - Cyberpunk Style */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    border-left: 1px solid rgba(124, 151, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7c97ff 0%, #5a75dd 50%, #7c97ff 100%);
    border-radius: 6px;
    border: 2px solid #0a0a0f;
    box-shadow: 
        0 0 10px rgba(124, 151, 255, 0.5),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9bb0ff 0%, #7c97ff 50%, #9bb0ff 100%);
    box-shadow: 
        0 0 20px rgba(124, 151, 255, 0.8),
        0 0 40px rgba(124, 151, 255, 0.4),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #ff6b6b 0%, #7c97ff 50%, #ff6b6b 100%);
    box-shadow: 
        0 0 25px rgba(255, 107, 107, 0.6),
        0 0 50px rgba(124, 151, 255, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #7c97ff #0a0a0f;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
    position: relative;
}

/* Common Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #c45c1e;
    transform: scale(1.05);
}