* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Ghost Banner Styles */
        .ghost-banner {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ff3b30;
            color: white;
            text-align: center;
            padding: 25px 40px;
            font-weight: bold;
            z-index: 10000;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(255, 59, 48, 0.8);
            display: none;
            min-width: 400px;
            flex-direction: column;
            align-items: center;
        }
        
        .ghost-banner .main-message {
            font-size: 22px;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .ghost-banner .ip-address {
            font-size: 18px;
            font-family: 'Courier New', monospace;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 15px;
            border-radius: 6px;
            margin: 8px 0;
            width: 100%;
            text-align: center;
        }
        
        .ghost-banner .ip-details {
            width: 100%;
            margin-top: 10px;
            text-align: left;
            font-size: 16px;
            font-family: 'Courier New', monospace;
            background: rgba(0, 0, 0, 0.2);
            padding: 10px;
            border-radius: 6px;
        }
        
        .ghost-banner .ip-details div {
            margin: 5px 0;
            padding: 3px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .ghost-banner .ip-details div:last-child {
            border-bottom: none;
        }
        
        /* Very Slow Vibration Animation */
        @keyframes vibrate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            20% { transform: translate(-50.5%, -49.5%) rotate(-0.3deg); }
            40% { transform: translate(-49.5%, -50.5%) rotate(0.3deg); }
            60% { transform: translate(-50.3%, -49.7%) rotate(-0.2deg); }
            80% { transform: translate(-49.7%, -50.3%) rotate(0.2deg); }
            100% { transform: translate(-50%, -50%) rotate(0deg); }
        }
        
        .vibrate {
            animation: vibrate 4s infinite ease-in-out; /* Very slow vibration - 4 seconds */
        }
        
        /* Zig Zag Animation */
        @keyframes zigzag {
            0% { left: 50%; }
            25% { left: 49.5%; }
            50% { left: 50.5%; }
            75% { left: 49%; }
            100% { left: 50%; }
        }
        
        .zigzag {
            animation: zigzag 3s infinite ease-in-out; /* Slower zigzag */
            position: fixed;
        }
        
        /* Toast notification */
        .toast-container {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }
        
        .toast {
            background-color: #333;
            color: white;
            padding: 12px 20px;
            border-radius: 4px;
            margin-top: 10px;
            opacity: 0;
            transition: opacity 0.3s;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }