/* Specific Styles for Token Page */
        .token-hero {
            background: linear-gradient(135deg, #b90e0e, #000);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .token-btn {
            background: #ffcc00;
            color: #000;
            padding: 15px 30px;
            font-size: 20px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }
