* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Archivo Black', sans-serif;
        }
        .modal-title {
            font-family: 'Rubik Mono One', sans-serif;
            margin-bottom: 20px;
            text-shadow:
            2px 2px 0 #b90808,
            4px 4px 0 #000,
            0 8px 20px rgba(0,0,0,0.5);
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #c31212, #000000);
            color: #fff;
            text-align: center;
        }

        .container {
            background: rgba(0, 0, 0, 0.5);
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 15px;
            text-shadow:
            2px 2px 0 #b90808,
            4px 4px 0 #000,
            0 8px 20px rgba(0,0,0,0.5);
        }

        p {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-shadow:
            2px 2px 0 #b90808,
            4px 4px 0 #000,
            0 8px 20px rgba(0,0,0,0.5);
        }

        .btn {
            background-color: #fff;
            color: #b90808;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            background-color: #000000;
            color: #ffffff;
            transform: scale(1.1);
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }

            .btn {
                padding: 10px 20px;
            }
        }