* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

        /* === YOUR ORIGINAL FULL CSS - NOTHING REMOVED === */
        .sidebar-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100vh;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .sidebar {
            width: 250px;
            height: 100vh;
            background-color: #000;
            color: #fff;
            position: relative;
            overflow-y: hidden;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .sidebar::-webkit-scrollbar {
            display: none;
        }

        .sidebar .logo {
            padding: 15px;
            text-align: center;
        }

        .sidebar .logo img {
            width: 150px;
            transition: transform 0.3s ease;
        }

        .sidebar .logo img:hover {
            transform: scale(1.05);
        }

        .sidebar .menu {
            padding: 10px 15px;
            flex-grow: 1;
            overflow-y: hidden;
        }

        .sidebar .menu ul {
            list-style: none;
        }

        .sidebar .menu li {
            margin-bottom: 6px;
        }

        .sidebar .menu .menu-item, 
        .sidebar .menu .home-item, 
        .sidebar .menu .search-item-new {
            display: flex;
            align-items: center;
            padding: 10px;
            background: linear-gradient(90deg, #222 0%, #111 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            font-size: 14px;
        }

        .sidebar .menu .menu-item:hover, 
        .sidebar .menu .home-item:hover, 
        .sidebar .menu .search-item-new:hover {
            background: linear-gradient(90deg, #333 0%, #222 100%);
            transform: translateX(5px);
        }

        .sidebar .menu .home-item i, 
        .sidebar .menu .search-item-new i {
            margin-right: 8px;
        }

        .sidebar .submenu {
            position: absolute;
            top: 0;
            left: 250px;
            width: 250px;
            height: 100%;
            background: rgba(20, 20, 20, 0.95);
            color: #fff;
            transition: left 0.3s ease, opacity 0.3s ease;
            padding: 15px;
            opacity: 0;
            z-index: 1100;
            overflow-y: hidden;
        }

        .sidebar .submenu.active {
            left: 0;
            opacity: 1;
        }

        .sidebar .submenu a {
            display: block;
            padding: 8px;
            color: #ddd;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.2s ease, padding-left 0.2s ease;
            font-size: 14px;
        }

        .sidebar .submenu a:hover {
            background: #333;
            padding-left: 12px;
        }

        .sidebar .submenu .back {
            padding: 8px;
            background: #222;
            color: #fff;
            cursor: pointer;
            margin-bottom: 10px;
            border-radius: 4px;
            transition: background 0.2s ease;
            font-size: 14px;
        }

        .sidebar .submenu .back:hover {
            background: #333;
        }

        .sidebar .ad {
            padding: 15px;
            text-align: center;
        }

        .sidebar .ad img {
            width: 160px;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .sidebar .ad img:hover {
            transform: scale(1.03);
        }

        .sidebar .copyright {
            position: absolute;
            bottom: 5px;
            width: 100%;
            text-align: center;
            font-size: 11px;
            color: #888;
        }

        .sidebar .copyright hr {
            border: 0;
            border-top: 1px solid #333;
            margin: 8px 15px;
        }

        .hamburger {
            position: fixed;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            z-index: 1100;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .hamburger.active {
            transform: rotate(90deg) scale(1.1);
        }

        .hamburger.active i::before {
            content: '\f00d';
        }

        .content {
            padding: 20px;
            min-height: 100vh;
            transition: margin-left 0.3s ease;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1200;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            background: #000;
            width: 90%;
            max-width: 600px;
            border-radius: 8px;
            padding: 20px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transform: translateY(-50px);
            transition: transform 0.3s ease;
        }

        .lightbox.active .lightbox-content {
            transform: translateY(0);
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .lightbox-close:hover {
            color: #000000;
            transform: scale(1.2);
        }

        /* === Google-style search improvements (added/updated only these parts) === */
        .google-search-box {
            position: relative;
            max-width: 580px;
            margin: 0 auto 24px;
        }

        .search-container {
            display: flex;
            align-items: center;
            background: #202124;
            border: 1px solid #303134;
            border-radius: 999px;
            padding: 0 16px;
            height: 44px;
            transition: all 0.2s ease;
        }

        .search-container:hover {
            background: #303134;
            border-color: #5f6368;
        }

        .search-container:focus-within {
            background: #303134;
            border-color: #1f1f1f;
            box-shadow: 0 0 0 1px #2c2c2c inset;
        }

        .search-icon {
            color: #9aa0a6;
            font-size: 18px;
            margin-right: 12px;
            pointer-events: none;
        }

        .search-container input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #e8eaed;
            font-size: 16px;
            height: 100%;
        }

        .search-container input::placeholder {
            color: #9aa0a6;
        }

        .mic-icon {
            color: #f82c2c;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            margin-left: 8px;
            border-radius: 50%;
            transition: background 0.15s;
        }

        .mic-icon:hover {
            background: rgba(138, 180, 248, 0.12);
        }

        .google-style-results {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .search-result-item {
            display: block;
            padding: 12px 0;
            text-decoration: none;
            color: #c1c5d0;
            transition: background 0.13s ease;
            border-radius: 8px;
        }

        .search-result-item:hover {
            background: rgba(95, 99, 104, 0.08);
        }

        .search-result-item .url-line {
            font-size: 14px;
            color: #f88a8a;
            margin-bottom: 4px;
        }

        .search-result-item h3 {
            font-size: 18px;
            margin: 0 0 4px;
            color: #c7c7c7;
            font-weight: normal;
        }

        .search-result-item:hover h3 {
            text-decoration: underline;
        }

        .search-result-item .description {
            font-size: 14px;
            color: #ccc;
            line-height: 1.4;
        }

        @media (max-width: 1024px) {
            .sidebar-wrapper {
                transform: translateX(-250px);
            }

            .sidebar-wrapper.active {
                transform: translateX(0);
            }

            .content {
                margin-left: 0;
                padding: 20px;
            }

            .hamburger {
                display: block;
                color: #ff0000;
            }

            .hamburger:hover {
                color: #ff3333;
            }

            .sidebar .logo img {
                width: 90px;
            }

            .sidebar .ad img {
                width: 140px;
                height: 140px;
            }

            .lightbox-content {
                width: 95%;
                padding: 15px;
            }
        }

        @media (min-width: 1025px) {
            .sidebar-wrapper {
                transform: translateX(0);
            }

            .content {
                margin-left: 250px;
            }

            .hamburger {
                display: none;
                color: #fff;
            }
        }

        .sidebar .menu a:focus, 
        .sidebar .menu .menu-item:focus, 
        .sidebar .submenu a:focus, 
        .sidebar .submenu .back:focus,
        .lightbox-close:focus,
        .search-container input:focus {
            outline: 2px solid #000000;
            outline-offset: 2px;
        }

        .sidebar .menu > ul > li > a:not(.search-item-new) {
            display: flex;
            align-items: center;
            padding: 10px;
            background: linear-gradient(90deg, #222 0%, #111 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            transition: background 0.3s ease, transform 0.2s ease;
            font-size: 14px;
        }

        .sidebar .menu > ul > li > a:not(.search-item-new):hover {
            background: linear-gradient(90deg, #333 0%, #222 100%);
            transform: translateX(5px);
        }

        .sidebar .menu > ul > li > a:not(.search-item-new) i {
            margin-right: 8px;
        }

        .mic-icon.listening {
    color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.15);
    animation: pulse-mic 1.2s infinite;
}

@keyframes pulse-mic {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}