/*
Theme Name: TrafficPro
Theme URI: https://example.com/trafficpro
Author: TrafficPro Team
Author URI: https://example.com
Description: A modern WordPress theme converted from React.
Version: 1.0.0
License: Gnu General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trafficpro
*/

/* Reset & Basic Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* Assuming Inter is used or will be loaded */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar Styling (optional, to match dark theme) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Reveal Animation State */
.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}