        body {
            background-color: #000;
            color: #fff;
            margin: 0;
            overflow-x: hidden; /* Prevents horizontal scroll on sidebar toggle */
        }

        /* Hero Section */
        .hero-section {
            min-height: 85vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        /* Categories Section */
        .card-category {
            background-color: #000 !important;
            color: #fff !important;
            border: 1px solid #222 !important;
            transition: transform 0.2s;
            border-radius: 8px;
        }

        .card-category:hover {
            transform: translateY(-5px);
        }

        /* Text and logo colors */
        .text-white {
            font-family: 'Orbitron';
            color: #fff !important;
        }

        .text-white-50 {
            color: rgba(255, 255, 255, 0.5) !important;
        } 
        

        /* Side Navigation for Mobile */
        .sidebar {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            background-color: black;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
            font-family: 'Orbitron';
        }
        
        .sidebar-brand {
            padding: 15px 32px;
            font-size: 25px;
            font-weight: bold;
            color: white;
            display: block;
        }

        .sidebar a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 16px; /* Adjusted font size */
            color: #ccc; /* Adjusted link color */
            display: block;
            transition: 0.3s;
        }
        
        .sidebar a:hover {
            color: #f1f1f1;
        }
        
        .sidebar .closebtn {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 36px;
            color: #fff;
            text-decoration: none;
        }

        .sidebar .btn {
            margin: 20px 32px;
            font-size: 18px;
            padding: 10px 20px;
        }
        
        .openbtn {
            font-size: 20px;
            cursor: pointer;
            background-color: transparent;
            color: white;
            border: none;
        }

        @media (min-width: 992px) {
            .hero-section {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
        }
