   @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

        body {
            background-color: black;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            font-family: 'Orbitron', sans-serif;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
        }

        body::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid rgba(0, 255, 255, 0.6);
            border-radius: 15px;
            box-shadow: 
                0 0 15px rgba(0, 255, 255, 0.4),
                0 0 30px rgba(0, 255, 255, 0.3);
            pointer-events: none;
            z-index: -1;
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background-color: rgba(0, 0, 0, 0.9);
            border: 2px solid cyan;
            border-radius: 10px;
            padding: 25px;
            max-width: 500px;
            width: 90%;
            box-shadow: 
                0 0 15px cyan,
                0 0 30px rgba(0, 255, 255, 0.7);
            position: relative;
            color: white;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: cyan;
            font-size: 20px;
            cursor: pointer;
        }

        .modal-title {
            color: cyan;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 0 0 10px cyan;
        }

        .modal-list {
            padding-left: 20px;
        }

        .modal-list li {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .main-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            width: 100%;
            max-width: 500px;
        }

        .outer-container {
            background-color: rgb(87 57 215 / 70%);
            border: 17px solid #000000;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 
                0 0 10px rgba(0, 69, 255, 0.5), 
                0 0 20px rgba(0, 10, 255, 0.3);
            width: 100%;
        }

        .notification {
            width: 100%;
            padding: 20px;
            text-align: center;
            background: rgba(0, 0, 0, 0.85);
            border-radius: 10px;
            box-shadow: 
                0 0 15px rgb(0, 255, 240), 
                0 0 40px rgba(0, 255, 255, 0.8), 
                0 0 80px rgba(52, 15, 255, 0.6);
            border: 2px solid rgba(0, 78, 255, 0.9);
            position: relative;
            box-sizing: border-box;
        }

        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 18px;
            color: #00efff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .icon-box {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid cyan;
            box-shadow: 0 0 10px cyan, 0 0 20px rgba(0, 255, 255, 0.8);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .icon-box i {
            font-size: 20px;
            color: cyan;
            text-shadow: 0 0 10px cyan;
        }

        .content {
            margin-top: 10px;
        }

        .content p, .content h1 {
            color: white;
            text-shadow: 0 0 10px #007bff, 0 0 20px rgba(0, 255, 255, 0.7);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        h1 {
            font-size: 28px;
            margin: 10px 0;
        }

        .editable-text {
            cursor: text;
            border: none;
            outline: none;
            background: transparent;
            display: inline-block;
            width: 100%;
        }

        .screenshot-btn {
            background: rgba(87, 57, 215, 0.7);
            color: cyan;
            border: 2px solid cyan;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 0 10px cyan, 0 0 20px rgba(0, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            width: auto;
            margin-top: 10px;
            font-family: 'Orbitron', sans-serif;
        }

        .screenshot-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px cyan, 0 0 30px rgba(0, 255, 255, 0.9);
        }

        @media (max-width: 600px) {
            .outer-container {
                padding: 10px;
                border-width: 10px;
            }
            
            .notification {
                padding: 15px;
            }
            
            .header {
                font-size: 16px;
                gap: 8px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            .icon-box {
                width: 28px;
                height: 28px;
            }
            
            .icon-box i {
                font-size: 18px;
            }

            .screenshot-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            .modal-content {
                padding: 20px 15px;
            }
        }

        @media (max-width: 400px) {
            .outer-container {
                padding: 8px;
                border-width: 8px;
            }
            
            .notification {
                padding: 12px;
            }
            
            .header {
                font-size: 14px;
                letter-spacing: 1px;
            }
            
            h1 {
                font-size: 20px;
            }
            
            .icon-box {
                width: 24px;
                height: 24px;
            }
            
            .icon-box i {
                font-size: 16px;
            }
            
            body {
                padding: 10px;
            }

            .screenshot-btn {
                padding: 6px 12px;
                font-size: 13px;
            }

            .modal-list {
                padding-left: 15px;
                font-size: 14px;
            }
        }
