@keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }


body {
            font-family: Arial, sans-serif;
            text-align: center;
            background: url('darkness.png') no-repeat center center fixed;
            background-size: cover;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .container {
            background: url('https://www.toptal.com/designers/subtlepatterns/uploads/leather.png'); /* Leather texture */
            background-size: cover;
            padding: 20px;
            border-radius: 10px;
            max-width: 600px;
            color: gold;
            font-weight: bold;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
        }
		
		.glitch-text {
            animation: glitch 2.5s infinite;
        }
		#petition{
			color: silver;
		}
		.no-button {
            background: red;
            color: white;
            border: none;
            padding: 10px;
            margin: 5px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }
        .no-button:hover {
            background: darkred;
        }

        #crash-report {
            background: red;
            color: white;
            padding: 20px;
            border-radius: 10px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 550px;
            display: none;
        }
        .hidden {
            display: none;
        }
		footer {
            position: fixed;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            padding: 5px;
            border-radius: 5px;
            text-align: center;
        }
        .coffee-link {
            display: inline-block;
            margin-top: 5px;
            padding: 8px 15px;
            background: gold;
            color: black;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.2s ease-in-out;
			font-weight: bold;
        }
        .coffee-link:hover {
            transform: scale(1.1) rotate(2deg);
            background: orange;
        }
		.close{
			padding-top:80px;
			
		}