/* Header Styles */
        .header {
            background: linear-gradient(135deg, #fce7f3, #f9a8d4);
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 30;
        }

        .hamburger-btn {
            padding: 8px;
            border: none;
            background: transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .hamburger-btn:hover {
            background-color: rgba(249, 168, 212, 0.5);
        }

        .header-title {
            font-size: 18px;
            font-weight: 600;
            color: #374151;
            text-align: center;
            flex: 1;
        }

        .spacer {
            width: 32px;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 40;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Slide Menu */
        .slide-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 320px;
            height: 100vh;
            max-height: 100vh;
            background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 50%, #ffffff 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 50;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .slide-menu.active {
            transform: translateX(0);
        }

        /* Menu Header */
        .menu-header {
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #fbcfe8;
        }

        .menu-title {
            font-size: 18px;
            font-weight: 600;
            color: #be185d;
            text-align: center;
            flex: 1;
        }

        .close-btn {
            padding: 4px;
            border: none;
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .close-btn:hover {
            background-color: rgba(249, 168, 212, 0.5);
        }

        /* Profile Section */
        .profile-section {
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-bottom: 1px solid #fbcfe8;
        }

        .profile-avatar {
            position: relative;
            margin-bottom: 12px;
        }

        .avatar-circle {
            width: 64px;
            height: 64px;
            background-color: #d1d5db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-icon {
            width: 32px;
            height: 32px;
            color: #6b7280;
        }

        .online-indicator {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 16px;
            height: 16px;
            background-color: #10b981;
            border-radius: 50%;
            border: 2px solid white;
        }

        .profile-name {
            font-weight: 600;
            color: #374151;
        }

        /* Toggle Section */
        .toggle-section {
            padding: 16px;
            border-bottom: 1px solid #fbcfe8;
        }

        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fdf2f8;
            border-radius: 25px;
            padding: 4px;
        }

        .toggle-btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-btn.active {
            background-color: #f472b6;
            color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .toggle-btn.inactive {
            background: transparent;
            color: #db2777;
        }

        /* .toggle-btn.inactive:hover {
            background-color: #fbcfe8;
        } */

        /* Menu Items */
        .menu-items {
            /* flex: 1; */
            padding: 8px 0;
            overflow-y: auto;
            max-height: calc(100vh - 320px);
        }

        /* Custom scrollbar for webkit browsers */
        .menu-items::-webkit-scrollbar {
            width: 4px;
        }

        .menu-items::-webkit-scrollbar-track {
            background: transparent;
        }

        .menu-items::-webkit-scrollbar-thumb {
            background: rgba(249, 168, 212, 0.5);
            border-radius: 2px;
        }

        .menu-items::-webkit-scrollbar-thumb:hover {
            background: rgba(249, 168, 212, 0.8);
        }

        .menu-item {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border: none;
            background: transparent;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .menu-item:hover {
            background-color: rgba(255, 255, 255, 0.6);
        }

        .menu-icon {
            width: 20px;
            height: 20px;
            color: #6b7280;
            margin-right: 12px;
        }

        .menu-label {
            color: #374151;
            font-weight: 500;
            flex: 1;
        }

        .dropdown-arrow {
            width: 16px;
            height: 16px;
            color: #6b7280;
            transition: transform 0.3s;
        }

        .menu-item:hover .dropdown-arrow {
            transform: rotate(90deg);
        }

        /* Footer Section */
        .footer-section {
            padding: 16px;
            flex-shrink: 0;
        }

        .footer-text {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
        }

        .app-download-btn {
            width: 100%;
            background-color: #000;
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 12px;
        }

        .app-download-btn:hover {
            background-color: #374151;
        }

        .play-store-icon {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }

        .app-text {
            text-align: left;
        }

        .app-subtitle {
            font-size: 12px;
        }

        .app-title {
            font-size: 14px;
            font-weight: 600;
        }

        .telegram-btn {
            width: 100%;
            background-color: #3b82f6;
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .telegram-btn:hover {
            background-color: #2563eb;
        }

        .telegram-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        /* Main Content */
        .main-content {
            padding: 8px;
            min-height: 100vh;
            background-color: #f9fafb;
        }

        .content-title {
            font-size: 24px;
            font-weight: bold;
            color: #374151;
            margin-bottom: 16px;
        }

        .content-text {
            color: #6b7280;
            margin-bottom: 16px;
        }

        /* SVG Icons */
        .icon {
            fill: currentColor;
        }