     body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background: radial-gradient(circle at top left, #1e1e2e, #2e2e42);
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
        }

        .container {
            background: rgba(45, 45, 68, 0.95);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
            max-width: 600px;
            width: 90%;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h3 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #BB86FC;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        p {
            font-size: 1em;
            color: #cfd8dc;
            margin: 15px 0;
            line-height: 1.6;
        }

        .discord-link {
            color: #03dac5;
            font-size: 1.2em;
            text-decoration: none;
            cursor: pointer;
            display: inline-block;
            margin-top: 15px;
            position: relative;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .discord-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #03dac5;
            left: 0;
            bottom: -5px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .discord-link:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .discord-link:hover {
            color: #ffffff;
            transform: translateY(-3px);
        }

        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .btn {
            background: linear-gradient(145deg, #6200ee, #bb86fc);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 25px;
            cursor: pointer;
            font-size: 1em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.4s ease;
        }

        .btn:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(98, 0, 238, 0.6);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn img {
            width: 28px;
            height: 28px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .btn:hover img {
            transform: scale(1.2);
        }
