

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: var(--bg);
            color: var(--accent);
            -webkit-tap-highlight-color: transparent;
        }

        
        body::before {
            content: " ";
            display: block;
            position: fixed;
            top: 0; left: 0; bottom: 0; right: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                        linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
            z-index: 2000;
            background-size: 100% 2px, 3px 100%;
            pointer-events: none;
        }

        .bento-card {
            background: #111;
            border: 1px solid #222;
            transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
            position: relative;
        }

        @media (min-width: 1024px) {
            .bento-card:hover {
                border-color: #fff;
                background: #161616;
                transform: translateY(-4px);
            }
            .bento-card:hover .arrow { transform: rotate(45deg); }
        }

        .bento-card:active { transform: scale(0.98); }

        .line {
            height: 1px;
            background: #222;
            width: 100%;
            margin: 2rem 0;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: #00ff00;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 10px #00ff00;
        }
        .read{
          background-color: #302f2f;
          padding: 20px;
          
          
        }
        .head{
            font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
        }

        details summary::-webkit-details-marker { display:none; }
        summary { list-style: none; outline: none; }