        body {
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #00ffff;
            font-family: 'Courier New', Courier, monospace;
            overflow: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
				  max-width: 600px;
	  margin: 0 auto;
			
		
        }
	

        .matrix-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: #000;
            overflow: hidden;
        }

        .title {
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
            animation: glow 2s infinite alternate;
        }

        .donation-info {
            text-align: center;
            background: rgba(0, 255, 255, 0.1);
            padding: 20px;
            border: 1px solid #00ffff;
            border-radius: 10px;
        }

        .dana-number {
            font-size: 1.5em;
            margin: 15px 0;
            font-weight: bold;
            animation: blink 1s infinite;
        }

        .qr-code {
            margin-top: 20px;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        @keyframes glow {
            0% { text-shadow: 0 0 5px #0ff, 0 0 10px #0ff; }
            100% { text-shadow: 0 0 20px #0ff, 0 0 30px #0ff; }
        }